diff --git a/src/main/java/org/dependencytrack/persistence/ComponentQueryManager.java b/src/main/java/org/dependencytrack/persistence/ComponentQueryManager.java index 72fbdebaa..a40802f79 100644 --- a/src/main/java/org/dependencytrack/persistence/ComponentQueryManager.java +++ b/src/main/java/org/dependencytrack/persistence/ComponentQueryManager.java @@ -424,19 +424,24 @@ public Component matchSingleIdentity(final Project project, final ComponentIdent final var params = new HashMap(); if (cid.getPurl() != null) { - filterParts.add("((purl != null && purl == :purl) || (purlCoordinates != null && purlCoordinates == :purlCoordinates))"); + filterParts.add("(purl != null && purl == :purl)"); params.put("purl", cid.getPurl().canonicalize()); - params.put("purlCoordinates", cid.getPurlCoordinates().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 = "("; @@ -457,7 +462,7 @@ public Component matchSingleIdentity(final Project project, final ComponentIdent coordinatesFilter += ")"; filterParts.add(coordinatesFilter); - final var filter = "project == :project && (" + String.join(" || ", filterParts) + ")"; + final var filter = "project == :project && (" + String.join(" && ", filterParts) + ")"; params.put("project", project); final Query query = pm.newQuery(Component.class, filter); diff --git a/src/main/java/org/dependencytrack/tasks/BomUploadProcessingTask.java b/src/main/java/org/dependencytrack/tasks/BomUploadProcessingTask.java index feb7c670e..fdd1a86a7 100644 --- a/src/main/java/org/dependencytrack/tasks/BomUploadProcessingTask.java +++ b/src/main/java/org/dependencytrack/tasks/BomUploadProcessingTask.java @@ -331,7 +331,7 @@ private static Project processMetadataComponent(final Context ctx, final Persist 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? + // 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); diff --git a/src/test/java/org/dependencytrack/resources/v1/BomResourceTest.java b/src/test/java/org/dependencytrack/resources/v1/BomResourceTest.java index 9dd6eb40c..6193db290 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() @@ -684,7 +684,7 @@ public void uploadBomTest() 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() @@ -699,7 +699,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() @@ -716,7 +716,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() @@ -730,7 +730,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); @@ -794,7 +794,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 a9d4c7301..883740a2e 100644 --- a/src/test/java/org/dependencytrack/tasks/BomUploadProcessingTaskTest.java +++ b/src/test/java/org/dependencytrack/tasks/BomUploadProcessingTaskTest.java @@ -34,6 +34,7 @@ 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; @@ -66,13 +67,7 @@ public void setUp() { 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(resourceToURL("/bom-1.xml").toURI()), bomFilePath, StandardCopyOption.REPLACE_EXISTING); - final var bomFile = bomFilePath.toFile(); - - final var bomUploadEvent = new BomUploadEvent(qm.detach(Project.class, project.getId()), 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( @@ -111,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(resourceToURL("/unit/bom-empty.json").toURI()), bomFilePath, StandardCopyOption.REPLACE_EXISTING); - final var bomFile = bomFilePath.toFile(); - - final var bomUploadEvent = new BomUploadEvent(qm.detach(Project.class, project.getId()), 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( @@ -141,13 +130,7 @@ 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(resourceToURL("/unit/bom-invalid.json").toURI()), bomFilePath, StandardCopyOption.REPLACE_EXISTING); - final var bomFile = bomFilePath.toFile(); - - new BomUploadProcessingTask().inform(new BomUploadEvent(qm.detach(Project.class, project.getId()), 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()), @@ -184,13 +167,7 @@ public void informWithInvalidBomTest() throws Exception { public void informWithBloatedBomTest() throws Exception { final var 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(resourceToURL("/unit/bloated.bom.json").toURI()), bomFilePath, StandardCopyOption.REPLACE_EXISTING); - final var bomFile = bomFilePath.toFile(); - - final var bomUploadEvent = new BomUploadEvent(qm.detach(Project.class, project.getId()), bomFile); + final var bomUploadEvent = new BomUploadEvent(qm.detach(Project.class, project.getId()), createTempBomFile("bom-bloated.json")); new BomUploadProcessingTask().inform(bomUploadEvent); assertThat(kafkaMockProducer.history()) @@ -276,4 +253,47 @@ public void informWithBloatedBomTest() throws Exception { 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); + + 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); + + // 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++) { + bomUploadEvent = new BomUploadEvent(qm.detach(Project.class, project.getId()), createTempBomFile("bom-issue2519.xml")); + new BomUploadProcessingTask().inform(bomUploadEvent); + + 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); + }); + + assertThat(qm.getAllComponents(project)).hasSize(1756); + } + } + + 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/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-issue2519.xml b/src/test/resources/unit/bom-issue2519.xml new file mode 100644 index 000000000..19459ca55 --- /dev/null +++ b/src/test/resources/unit/bom-issue2519.xml @@ -0,0 +1,63369 @@ + + + + + + @cyclonedx + cyclonedx-npm + 1.7.2 + + + + git+https://github.com/CycloneDX/cyclonedx-node-npm.git + as detected from PackageJson property "repository.url" + + + https://github.com/CycloneDX/cyclonedx-node-npm#readme + as detected from PackageJson property "homepage" + + + https://github.com/CycloneDX/cyclonedx-node-npm/issues + as detected from PackageJson property "bugs.url" + + + + + @cyclonedx + cyclonedx-npm + 1.7.2 + + + + git+https://github.com/CycloneDX/cyclonedx-node-npm.git + as detected from PackageJson property "repository.url" + + + https://github.com/CycloneDX/cyclonedx-node-npm#readme + as detected from PackageJson property "homepage" + + + https://github.com/CycloneDX/cyclonedx-node-npm/issues + as detected from PackageJson property "bugs.url" + + + + + OWASP Foundation + CycloneDX Maven plugin + 2.7.4 + + 1c0045824ba8b7c3459faf37fadb5ca4 + c0259ad78634a65918e328d793d2ea0b8a9c2220 + 47bd0e0176ba679b66739820bc52880a9e667c57c8b7301de698c0ce7e271bb1 + e8b72acd176d5d3e13646c2422d6fac1e47d369162cbde8796afa567d36bd182a5f8f4cbdc46185f3607a71e92c410ab0eacd87ab8c17b38e352eb3077a46ecb + 8759a5908a1dbd6797ce597bba7d67a073d63129e1affd9b827482581ee85815b118fb4e950991b9d6793a5d70e8b901 + 7721f8119070762eed34e1d7fbe0eb2f590130a62f9ebcf15dbb9d3321ef25ba2b0709eb6f3e922b59f7203554db555c + 3fc2ede35393130c22e8ea1985092c498f51f88c67925701906c910829aaac1e + 7f54ea340410b97d5ccf4b417928359ea30be0d71d4aaa859389f308407e9d94fa3617d395f7e81e00881da67143aa8910fdae2dd01a8fc9c9a07b8bc03fb3b1 + + + + + FEDITC, LLC + projx-client + 3.5.1-SNAPSHOT + projx browser client project + + + UNLICENSED + + + pkg:npm/projx-client@3.5.1-SNAPSHOT?vcs_url=https://url.was.changed.for.secuity/bitbucket/scm/projxtm/projx-application.git#projx-client + + + https://url.was.changed.for.secuity/bitbucket/scm/projxtm/projx-application.git#projx-client + as detected from PackageJson property "repository.url" and "repository.directory" + + + + + true + + + + + + Jan Kowalleck + @cyclonedx + cyclonedx-npm + 1.7.2 + Create CycloneDX Software Bill of Materials (SBOM) from NPM projects. + + + Apache-2.0 + + + pkg:npm/%40cyclonedx/cyclonedx-npm@1.7.2 + + + git+https://github.com/CycloneDX/cyclonedx-node-npm.git + as detected from PackageJson property "repository.url" + + + https://github.com/CycloneDX/cyclonedx-node-npm#readme + as detected from PackageJson property "homepage" + + + https://github.com/CycloneDX/cyclonedx-node-npm/issues + as detected from PackageJson property "bugs.url" + + + https://registry.npmjs.org/@cyclonedx/cyclonedx-npm/-/cyclonedx-npm-1.7.2.tgz + as detected from npm-ls property "resolved" + + + + + TJ Holowaychuk <tj@vision-media.ca> + commander + 9.5.0 + the complete solution for node.js command-line programs + + + MIT + + + pkg:npm/commander@9.5.0 + + + https://github.com/tj/commander.js.git + as detected from PackageJson property "repository.url" + + + https://registry.npmjs.org/commander/-/commander-9.5.0.tgz + as detected from npm-ls property "resolved" + + + + node_modules/@cyclonedx/cyclonedx-npm/node_modules/commander + + + + + node_modules/@cyclonedx/cyclonedx-npm + + + + Jan Kowalleck + @cyclonedx + cyclonedx-library + 1.9.2 + Core functionality of CycloneDX for JavaScript (Node.js or WebBrowser). + + + Apache-2.0 + + + pkg:npm/%40cyclonedx/cyclonedx-library@1.9.2 + + + git+https://github.com/CycloneDX/cyclonedx-javascript-library.git + as detected from PackageJson property "repository.url" + + + https://github.com/CycloneDX/cyclonedx-javascript-library#readme + as detected from PackageJson property "homepage" + + + https://github.com/CycloneDX/cyclonedx-javascript-library/issues + as detected from PackageJson property "bugs.url" + + + https://registry.npmjs.org/@cyclonedx/cyclonedx-library/-/cyclonedx-library-1.9.2.tgz + as detected from npm-ls property "resolved" + + + + node_modules/@cyclonedx/cyclonedx-library + + + + the purl authors + packageurl-js + 1.0.0 + JavaScript library to parse and build "purl" aka. package URLs. This is a microlibrary implementing the purl spec at https://github.com/package-url + + + MIT + + + pkg:npm/packageurl-js@1.0.0 + + + git+https://github.com/package-url/packageurl-js.git + as detected from PackageJson property "repository.url" + + + https://github.com/package-url/packageurl-js#readme + as detected from PackageJson property "homepage" + + + https://github.com/package-url/packageurl-js/issues + as detected from PackageJson property "bugs.url" + + + https://registry.npmjs.org/packageurl-js/-/packageurl-js-1.0.0.tgz + as detected from npm-ls property "resolved" + + + + node_modules/packageurl-js + + + + Ozgur Ozcitak <oozcitak@gmail.com> + xmlbuilder2 + 3.0.2 + An XML builder for node.js + + + MIT + + + pkg:npm/xmlbuilder2@3.0.2?vcs_url=git://github.com/oozcitak/xmlbuilder2.git + + + git://github.com/oozcitak/xmlbuilder2.git + as detected from PackageJson property "repository.url" + + + http://github.com/oozcitak/xmlbuilder2 + as detected from PackageJson property "homepage" + + + http://github.com/oozcitak/xmlbuilder2/issues + as detected from PackageJson property "bugs.url" + + + + + Vladimir Zapparov <dervus.grim@gmail.com> + js-yaml + 3.14.0 + YAML 1.2 parser and serializer + + + MIT + + + pkg:npm/js-yaml@3.14.0 + + + nodeca/js-yaml + as detected from PackageJson property "repository" + + + https://github.com/nodeca/js-yaml + as detected from PackageJson property "homepage" + + + https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.0.tgz + as detected from npm-ls property "resolved" + + + + node_modules/xmlbuilder2/node_modules/js-yaml + + + + + node_modules/xmlbuilder2 + + + + Ozgur Ozcitak <oozcitak@gmail.com> + @oozcitak + dom + 1.15.10 + A modern DOM implementation + + + MIT + + + pkg:npm/%40oozcitak/dom@1.15.10 + + + git://github.com/oozcitak/dom.git + as detected from PackageJson property "repository.url" + + + http://github.com/oozcitak/dom + as detected from PackageJson property "homepage" + + + http://github.com/oozcitak/dom/issues + as detected from PackageJson property "bugs.url" + + + https://registry.npmjs.org/@oozcitak/dom/-/dom-1.15.10.tgz + as detected from npm-ls property "resolved" + + + + node_modules/@oozcitak/dom + + + + Ozgur Ozcitak <oozcitak@gmail.com> + @oozcitak + infra + 1.0.8 + An implementation of the Infra Living Standard + + + MIT + + + pkg:npm/%40oozcitak/infra@1.0.8?vcs_url=git+https://github.com/oozcitak/infra.git + + + git+https://github.com/oozcitak/infra.git + as detected from PackageJson property "repository.url" + + + http://github.com/oozcitak/infra + as detected from PackageJson property "homepage" + + + http://github.com/oozcitak/infra/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/@oozcitak/infra + + + + Ozgur Ozcitak <oozcitak@gmail.com> + @oozcitak + url + 1.0.4 + An implementation of the URL Living Standard + + + MIT + + + pkg:npm/%40oozcitak/url@1.0.4 + + + git+https://github.com/oozcitak/url.git + as detected from PackageJson property "repository.url" + + + http://github.com/oozcitak/url + as detected from PackageJson property "homepage" + + + http://github.com/oozcitak/url/issues + as detected from PackageJson property "bugs.url" + + + https://registry.npmjs.org/@oozcitak/url/-/url-1.0.4.tgz + as detected from npm-ls property "resolved" + + + + node_modules/@oozcitak/url + + + + Ozgur Ozcitak <oozcitak@gmail.com> + @oozcitak + util + 8.3.8 + Utility functions + + + MIT + + + pkg:npm/%40oozcitak/util@8.3.8?vcs_url=git://github.com/oozcitak/util.git + + + git://github.com/oozcitak/util.git + as detected from PackageJson property "repository.url" + + + http://github.com/oozcitak/util + as detected from PackageJson property "homepage" + + + http://github.com/oozcitak/util/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/@oozcitak/util + + + + @types + node + 18.7.18 + TypeScript definitions for Node.js + + + MIT + + + pkg:npm/%40types/node@18.7.18?vcs_url=https://github.com/DefinitelyTyped/DefinitelyTyped.git#types/node + + + https://github.com/DefinitelyTyped/DefinitelyTyped.git#types/node + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node + as detected from PackageJson property "homepage" + + + + node_modules/@types/node + + + + argparse + 1.0.10 + Very powerful CLI arguments parser. Native port of argparse - python's options parsing library + + + MIT + + + pkg:npm/argparse@1.0.10?vcs_url=nodeca/argparse + + + nodeca/argparse + as detected from PackageJson property "repository" + + + + node_modules/argparse + + + + Ariya Hidayat + esprima + 4.0.1 + ECMAScript parsing infrastructure for multipurpose analysis + + + BSD-2-Clause + + + pkg:npm/esprima@4.0.1?vcs_url=https://github.com/jquery/esprima.git + + + https://github.com/jquery/esprima.git + as detected from PackageJson property "repository.url" + + + http://esprima.org + as detected from PackageJson property "homepage" + + + https://github.com/jquery/esprima/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/esprima + + + + Federico Zivolo <federico.zivolo@gmail.com> + @popperjs + core + 2.11.6 + Tooltip and Popover Positioning Engine + + + MIT + + + pkg:npm/%40popperjs/core@2.11.6?vcs_url=github:popperjs/popper-core + + + github:popperjs/popper-core + as detected from PackageJson property "repository" + + + + node_modules/@popperjs/core + + + + Evan You + @vue + cli-plugin-babel + 3.12.1 + babel plugin for vue-cli + + + MIT + + + pkg:npm/%40vue/cli-plugin-babel@3.12.1?vcs_url=git+https://github.com/vuejs/vue-cli.git#packages/@vue/cli-plugin-babel + + + git+https://github.com/vuejs/vue-cli.git#packages/@vue/cli-plugin-babel + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://github.com/vuejs/vue-cli/tree/dev/packages/@vue/cli-plugin-babel#readme + as detected from PackageJson property "homepage" + + + https://github.com/vuejs/vue-cli/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/@vue/cli-plugin-babel + + + + The Babel Team (https://babel.dev/team) + @babel + core + 7.19.1 + Babel compiler core. + + + MIT + + + pkg:npm/%40babel/core@7.19.1?vcs_url=https://github.com/babel/babel.git#packages/babel-core + + + https://github.com/babel/babel.git#packages/babel-core + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-core + as detected from PackageJson property "homepage" + + + https://github.com/babel/babel/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3A%22pkg%3A%20core%22+is%3Aopen + as detected from PackageJson property "bugs" + + + + node_modules/@babel/core + + + + Justin Ridgewell <jridgewell@google.com> + @ampproject + remapping + 2.2.0 + Remap sequential sourcemaps through transformations to point at the original source code + + + Apache-2.0 + + + pkg:npm/%40ampproject/remapping@2.2.0?vcs_url=git+https://github.com/ampproject/remapping.git + + + git+https://github.com/ampproject/remapping.git + as detected from PackageJson property "repository.url" + + + + node_modules/@ampproject/remapping + + + + Justin Ridgewell <justin@ridgewell.name> + @jridgewell + gen-mapping + 0.1.1 + Generate source maps + + + MIT + + + pkg:npm/%40jridgewell/gen-mapping@0.1.1?vcs_url=https://github.com/jridgewell/gen-mapping + + + https://github.com/jridgewell/gen-mapping + as detected from PackageJson property "repository" + + + + node_modules/@jridgewell/gen-mapping + + + + Justin Ridgewell <justin@ridgewell.name> + @jridgewell + set-array + 1.1.2 + Like a Set, but provides the index of the `key` in the backing array + + + MIT + + + pkg:npm/%40jridgewell/set-array@1.1.2?vcs_url=https://github.com/jridgewell/set-array + + + https://github.com/jridgewell/set-array + as detected from PackageJson property "repository" + + + + node_modules/@jridgewell/set-array + + + + Rich Harris + @jridgewell + sourcemap-codec + 1.4.14 + Encode/decode sourcemap mappings + + + MIT + + + pkg:npm/%40jridgewell/sourcemap-codec@1.4.14?vcs_url=git+https://github.com/jridgewell/sourcemap-codec.git + + + git+https://github.com/jridgewell/sourcemap-codec.git + as detected from PackageJson property "repository.url" + + + + node_modules/@jridgewell/sourcemap-codec + + + + Justin Ridgewell <justin@ridgewell.name> + @jridgewell + trace-mapping + 0.3.15 + Trace the original position through a source map + + + MIT + + + pkg:npm/%40jridgewell/trace-mapping@0.3.15?vcs_url=git+https://github.com/jridgewell/trace-mapping.git + + + git+https://github.com/jridgewell/trace-mapping.git + as detected from PackageJson property "repository.url" + + + + node_modules/@jridgewell/trace-mapping + + + + Justin Ridgewell <justin@ridgewell.name> + @jridgewell + resolve-uri + 3.1.0 + Resolve a URI relative to an optional projx URI + + + MIT + + + pkg:npm/%40jridgewell/resolve-uri@3.1.0?vcs_url=https://github.com/jridgewell/resolve-uri + + + https://github.com/jridgewell/resolve-uri + as detected from PackageJson property "repository" + + + + node_modules/@jridgewell/resolve-uri + + + + The Babel Team (https://babel.dev/team) + @babel + code-frame + 7.18.6 + Generate errors that contain a code frame that point to source locations. + + + MIT + + + pkg:npm/%40babel/code-frame@7.18.6?vcs_url=https://github.com/babel/babel.git#packages/babel-code-frame + + + https://github.com/babel/babel.git#packages/babel-code-frame + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-code-frame + as detected from PackageJson property "homepage" + + + https://github.com/babel/babel/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen + as detected from PackageJson property "bugs" + + + + node_modules/@babel/code-frame + + + + The Babel Team (https://babel.dev/team) + @babel + generator + 7.19.0 + Turns an AST into code. + + + MIT + + + pkg:npm/%40babel/generator@7.19.0?vcs_url=https://github.com/babel/babel.git#packages/babel-generator + + + https://github.com/babel/babel.git#packages/babel-generator + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-generator + as detected from PackageJson property "homepage" + + + https://github.com/babel/babel/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3A%22pkg%3A%20generator%22+is%3Aopen + as detected from PackageJson property "bugs" + + + + + Justin Ridgewell <justin@ridgewell.name> + @jridgewell + gen-mapping + 0.3.2 + Generate source maps + + + MIT + + + pkg:npm/%40jridgewell/gen-mapping@0.3.2?vcs_url=https://github.com/jridgewell/gen-mapping + + + https://github.com/jridgewell/gen-mapping + as detected from PackageJson property "repository" + + + + node_modules/@babel/generator/node_modules/@jridgewell/gen-mapping + + + + + node_modules/@babel/generator + + + + The Babel Team (https://babel.dev/team) + @babel + types + 7.19.0 + Babel Types is a Lodash-esque utility library for AST nodes + + + MIT + + + pkg:npm/%40babel/types@7.19.0?vcs_url=https://github.com/babel/babel.git#packages/babel-types + + + https://github.com/babel/babel.git#packages/babel-types + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-types + as detected from PackageJson property "homepage" + + + https://github.com/babel/babel/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3A%22pkg%3A%20types%22+is%3Aopen + as detected from PackageJson property "bugs" + + + + node_modules/@babel/types + + + + Mathias Bynens + jsesc + 2.5.2 + Given some data, jsesc returns the shortest possible stringified & ASCII-safe representation of that data. + + + MIT + + + pkg:npm/jsesc@2.5.2?vcs_url=https://github.com/mathiasbynens/jsesc.git + + + https://github.com/mathiasbynens/jsesc.git + as detected from PackageJson property "repository.url" + + + https://mths.be/jsesc + as detected from PackageJson property "homepage" + + + https://github.com/mathiasbynens/jsesc/issues + as detected from PackageJson property "bugs" + + + + node_modules/jsesc + + + + The Babel Team (https://babel.dev/team) + @babel + helper-compilation-targets + 7.19.1 + Helper functions on Babel compilation targets + + + MIT + + + pkg:npm/%40babel/helper-compilation-targets@7.19.1?vcs_url=https://github.com/babel/babel.git#packages/babel-helper-compilation-targets + + + https://github.com/babel/babel.git#packages/babel-helper-compilation-targets + as detected from PackageJson property "repository.url" and "repository.directory" + + + + node_modules/@babel/helper-compilation-targets + + + + The Babel Team (https://babel.dev/team) + @babel + compat-data + 7.19.1 + + + MIT + + + pkg:npm/%40babel/compat-data@7.19.1?vcs_url=https://github.com/babel/babel.git#packages/babel-compat-data + + + https://github.com/babel/babel.git#packages/babel-compat-data + as detected from PackageJson property "repository.url" and "repository.directory" + + + + node_modules/@babel/compat-data + + + + The Babel Team (https://babel.dev/team) + @babel + helper-validator-option + 7.18.6 + Validate plugin/preset options + + + MIT + + + pkg:npm/%40babel/helper-validator-option@7.18.6?vcs_url=https://github.com/babel/babel.git#packages/babel-helper-validator-option + + + https://github.com/babel/babel.git#packages/babel-helper-validator-option + as detected from PackageJson property "repository.url" and "repository.directory" + + + + node_modules/@babel/helper-validator-option + + + + Andrey Sitnik <andrey@sitnik.ru> + browserslist + 4.21.4 + Share target browsers between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset + + + MIT + + + pkg:npm/browserslist@4.21.4?vcs_url=browserslist/browserslist + + + browserslist/browserslist + as detected from PackageJson property "repository" + + + + node_modules/browserslist + + + + semver + 6.3.0 + The semantic version parser used by npm. + + + ISC + + + pkg:npm/semver@6.3.0?vcs_url=https://github.com/npm/node-semver + + + https://github.com/npm/node-semver + as detected from PackageJson property "repository" + + + + node_modules/semver + + + + The Babel Team (https://babel.dev/team) + @babel + helper-module-transforms + 7.19.0 + Babel helper functions for implementing ES6 module transformations + + + MIT + + + pkg:npm/%40babel/helper-module-transforms@7.19.0?vcs_url=https://github.com/babel/babel.git#packages/babel-helper-module-transforms + + + https://github.com/babel/babel.git#packages/babel-helper-module-transforms + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-helper-module-transforms + as detected from PackageJson property "homepage" + + + + node_modules/@babel/helper-module-transforms + + + + The Babel Team (https://babel.dev/team) + @babel + helper-environment-visitor + 7.18.9 + Helper visitor to only visit nodes in the current 'this' context + + + MIT + + + pkg:npm/%40babel/helper-environment-visitor@7.18.9?vcs_url=https://github.com/babel/babel.git#packages/babel-helper-environment-visitor + + + https://github.com/babel/babel.git#packages/babel-helper-environment-visitor + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-helper-environment-visitor + as detected from PackageJson property "homepage" + + + + node_modules/@babel/helper-environment-visitor + + + + The Babel Team (https://babel.dev/team) + @babel + helper-module-imports + 7.18.6 + Babel helper functions for inserting module loads + + + MIT + + + pkg:npm/%40babel/helper-module-imports@7.18.6?vcs_url=https://github.com/babel/babel.git#packages/babel-helper-module-imports + + + https://github.com/babel/babel.git#packages/babel-helper-module-imports + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-helper-module-imports + as detected from PackageJson property "homepage" + + + + node_modules/@babel/helper-module-imports + + + + The Babel Team (https://babel.dev/team) + @babel + helper-simple-access + 7.18.6 + Babel helper for ensuring that access to a given value is performed through simple accesses + + + MIT + + + pkg:npm/%40babel/helper-simple-access@7.18.6?vcs_url=https://github.com/babel/babel.git#packages/babel-helper-simple-access + + + https://github.com/babel/babel.git#packages/babel-helper-simple-access + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-helper-simple-access + as detected from PackageJson property "homepage" + + + + node_modules/@babel/helper-simple-access + + + + The Babel Team (https://babel.dev/team) + @babel + helper-split-export-declaration + 7.18.6 + + + MIT + + + pkg:npm/%40babel/helper-split-export-declaration@7.18.6?vcs_url=https://github.com/babel/babel.git#packages/babel-helper-split-export-declaration + + + https://github.com/babel/babel.git#packages/babel-helper-split-export-declaration + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-helper-split-export-declaration + as detected from PackageJson property "homepage" + + + + node_modules/@babel/helper-split-export-declaration + + + + The Babel Team (https://babel.dev/team) + @babel + helper-validator-identifier + 7.19.1 + Validate identifier/keywords name + + + MIT + + + pkg:npm/%40babel/helper-validator-identifier@7.19.1?vcs_url=https://github.com/babel/babel.git#packages/babel-helper-validator-identifier + + + https://github.com/babel/babel.git#packages/babel-helper-validator-identifier + as detected from PackageJson property "repository.url" and "repository.directory" + + + + node_modules/@babel/helper-validator-identifier + + + + The Babel Team (https://babel.dev/team) + @babel + template + 7.18.10 + Generate an AST from a string template. + + + MIT + + + pkg:npm/%40babel/template@7.18.10?vcs_url=https://github.com/babel/babel.git#packages/babel-template + + + https://github.com/babel/babel.git#packages/babel-template + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-template + as detected from PackageJson property "homepage" + + + https://github.com/babel/babel/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3A%22pkg%3A%20template%22+is%3Aopen + as detected from PackageJson property "bugs" + + + + node_modules/@babel/template + + + + The Babel Team (https://babel.dev/team) + @babel + traverse + 7.19.1 + The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes + + + MIT + + + pkg:npm/%40babel/traverse@7.19.1?vcs_url=https://github.com/babel/babel.git#packages/babel-traverse + + + https://github.com/babel/babel.git#packages/babel-traverse + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-traverse + as detected from PackageJson property "homepage" + + + https://github.com/babel/babel/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3A%22pkg%3A%20traverse%22+is%3Aopen + as detected from PackageJson property "bugs" + + + + node_modules/@babel/traverse + + + + The Babel Team (https://babel.dev/team) + @babel + helpers + 7.19.0 + Collection of helper functions used by Babel transforms. + + + MIT + + + pkg:npm/%40babel/helpers@7.19.0?vcs_url=https://github.com/babel/babel.git#packages/babel-helpers + + + https://github.com/babel/babel.git#packages/babel-helpers + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-helpers + as detected from PackageJson property "homepage" + + + + node_modules/@babel/helpers + + + + The Babel Team (https://babel.dev/team) + @babel + parser + 7.19.1 + A JavaScript parser + + + MIT + + + pkg:npm/%40babel/parser@7.19.1?vcs_url=https://github.com/babel/babel.git#packages/babel-parser + + + https://github.com/babel/babel.git#packages/babel-parser + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-parser + as detected from PackageJson property "homepage" + + + https://github.com/babel/babel/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3A%22pkg%3A+parser+%28babylon%29%22+is%3Aopen + as detected from PackageJson property "bugs" + + + + node_modules/@babel/parser + + + + Thorsten Lorenz + convert-source-map + 1.8.0 + Converts a source-map from/to different formats and allows adding/changing properties. + + + MIT + + + pkg:npm/convert-source-map@1.8.0?vcs_url=git://github.com/thlorenz/convert-source-map.git + + + git://github.com/thlorenz/convert-source-map.git + as detected from PackageJson property "repository.url" + + + https://github.com/thlorenz/convert-source-map + as detected from PackageJson property "homepage" + + + + node_modules/convert-source-map + + + + Feross Aboukhadijeh + safe-buffer + 5.1.2 + Safer Node.js Buffer API + + + MIT + + + pkg:npm/safe-buffer@5.1.2?vcs_url=git://github.com/feross/safe-buffer.git + + + git://github.com/feross/safe-buffer.git + as detected from PackageJson property "repository.url" + + + https://github.com/feross/safe-buffer + as detected from PackageJson property "homepage" + + + https://github.com/feross/safe-buffer/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/safe-buffer + + + + Josh Junon <josh.junon@protonmail.com> + debug + 4.3.4 + Lightweight debugging utility for Node.js and the browser + + + MIT + + + pkg:npm/debug@4.3.4?vcs_url=git://github.com/debug-js/debug.git + + + git://github.com/debug-js/debug.git + as detected from PackageJson property "repository.url" + + + + node_modules/debug + + + + Logan Smyth <loganfsmyth@gmail.com> + gensync + 1.0.0-beta.2 + Allows users to use generators in order to write common functions that can be both sync or async. + + + MIT + + + pkg:npm/gensync@1.0.0-beta.2?vcs_url=https://github.com/loganfsmyth/gensync.git + + + https://github.com/loganfsmyth/gensync.git + as detected from PackageJson property "repository.url" + + + https://github.com/loganfsmyth/gensync + as detected from PackageJson property "homepage" + + + + node_modules/gensync + + + + Aseem Kishore <aseem.kishore@gmail.com> + json5 + 2.2.1 + JSON for humans. + + + MIT + + + pkg:npm/json5@2.2.1?vcs_url=git+https://github.com/json5/json5.git + + + git+https://github.com/json5/json5.git + as detected from PackageJson property "repository.url" + + + http://json5.org/ + as detected from PackageJson property "homepage" + + + https://github.com/json5/json5/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/json5 + + + + Evan You + @vue + babel-preset-app + 3.12.1 + babel-preset-app for vue-cli + + + MIT + + + pkg:npm/%40vue/babel-preset-app@3.12.1?vcs_url=git+https://github.com/vuejs/vue-cli.git#packages/@vue/babel-preset-app + + + git+https://github.com/vuejs/vue-cli.git#packages/@vue/babel-preset-app + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://github.com/vuejs/vue-cli/tree/dev/packages/@vue/babel-preset-app#readme + as detected from PackageJson property "homepage" + + + https://github.com/vuejs/vue-cli/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/@vue/babel-preset-app + + + + The Babel Team (https://babel.dev/team) + @babel + plugin-proposal-class-properties + 7.18.6 + This plugin transforms static class properties as well as properties declared with the property initializer syntax + + + MIT + + + pkg:npm/%40babel/plugin-proposal-class-properties@7.18.6?vcs_url=https://github.com/babel/babel.git#packages/babel-plugin-proposal-class-properties + + + https://github.com/babel/babel.git#packages/babel-plugin-proposal-class-properties + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-plugin-proposal-class-properties + as detected from PackageJson property "homepage" + + + + node_modules/@babel/plugin-proposal-class-properties + + + + The Babel Team (https://babel.dev/team) + @babel + helper-create-class-features-plugin + 7.19.0 + Compile class public and private fields, private methods and decorators to ES6 + + + MIT + + + pkg:npm/%40babel/helper-create-class-features-plugin@7.19.0?vcs_url=https://github.com/babel/babel.git#packages/babel-helper-create-class-features-plugin + + + https://github.com/babel/babel.git#packages/babel-helper-create-class-features-plugin + as detected from PackageJson property "repository.url" and "repository.directory" + + + + node_modules/@babel/helper-create-class-features-plugin + + + + The Babel Team (https://babel.dev/team) + @babel + helper-annotate-as-pure + 7.18.6 + Helper function to annotate paths and nodes with #__PURE__ comment + + + MIT + + + pkg:npm/%40babel/helper-annotate-as-pure@7.18.6?vcs_url=https://github.com/babel/babel.git#packages/babel-helper-annotate-as-pure + + + https://github.com/babel/babel.git#packages/babel-helper-annotate-as-pure + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-helper-annotate-as-pure + as detected from PackageJson property "homepage" + + + + node_modules/@babel/helper-annotate-as-pure + + + + The Babel Team (https://babel.dev/team) + @babel + helper-function-name + 7.19.0 + Helper function to change the property 'name' of every function + + + MIT + + + pkg:npm/%40babel/helper-function-name@7.19.0?vcs_url=https://github.com/babel/babel.git#packages/babel-helper-function-name + + + https://github.com/babel/babel.git#packages/babel-helper-function-name + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-helper-function-name + as detected from PackageJson property "homepage" + + + + node_modules/@babel/helper-function-name + + + + The Babel Team (https://babel.dev/team) + @babel + helper-member-expression-to-functions + 7.18.9 + Helper function to replace certain member expressions with function calls + + + MIT + + + pkg:npm/%40babel/helper-member-expression-to-functions@7.18.9?vcs_url=https://github.com/babel/babel.git#packages/babel-helper-member-expression-to-functions + + + https://github.com/babel/babel.git#packages/babel-helper-member-expression-to-functions + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-helper-member-expression-to-functions + as detected from PackageJson property "homepage" + + + + node_modules/@babel/helper-member-expression-to-functions + + + + The Babel Team (https://babel.dev/team) + @babel + helper-optimise-call-expression + 7.18.6 + Helper function to optimise call expression + + + MIT + + + pkg:npm/%40babel/helper-optimise-call-expression@7.18.6?vcs_url=https://github.com/babel/babel.git#packages/babel-helper-optimise-call-expression + + + https://github.com/babel/babel.git#packages/babel-helper-optimise-call-expression + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-helper-optimise-call-expression + as detected from PackageJson property "homepage" + + + + node_modules/@babel/helper-optimise-call-expression + + + + The Babel Team (https://babel.dev/team) + @babel + helper-replace-supers + 7.19.1 + Helper function to replace supers + + + MIT + + + pkg:npm/%40babel/helper-replace-supers@7.19.1?vcs_url=https://github.com/babel/babel.git#packages/babel-helper-replace-supers + + + https://github.com/babel/babel.git#packages/babel-helper-replace-supers + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-helper-replace-supers + as detected from PackageJson property "homepage" + + + + node_modules/@babel/helper-replace-supers + + + + The Babel Team (https://babel.dev/team) + @babel + helper-plugin-utils + 7.19.0 + General utilities for plugins to use + + + MIT + + + pkg:npm/%40babel/helper-plugin-utils@7.19.0?vcs_url=https://github.com/babel/babel.git#packages/babel-helper-plugin-utils + + + https://github.com/babel/babel.git#packages/babel-helper-plugin-utils + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-helper-plugin-utils + as detected from PackageJson property "homepage" + + + + node_modules/@babel/helper-plugin-utils + + + + The Babel Team (https://babel.dev/team) + @babel + plugin-proposal-decorators + 7.19.1 + Compile class and object decorators to ES5 + + + MIT + + + pkg:npm/%40babel/plugin-proposal-decorators@7.19.1?vcs_url=https://github.com/babel/babel.git#packages/babel-plugin-proposal-decorators + + + https://github.com/babel/babel.git#packages/babel-plugin-proposal-decorators + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-plugin-proposal-decorators + as detected from PackageJson property "homepage" + + + + node_modules/@babel/plugin-proposal-decorators + + + + The Babel Team (https://babel.dev/team) + @babel + plugin-syntax-decorators + 7.19.0 + Allow parsing of decorators + + + MIT + + + pkg:npm/%40babel/plugin-syntax-decorators@7.19.0?vcs_url=https://github.com/babel/babel.git#packages/babel-plugin-syntax-decorators + + + https://github.com/babel/babel.git#packages/babel-plugin-syntax-decorators + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-plugin-syntax-decorators + as detected from PackageJson property "homepage" + + + + node_modules/@babel/plugin-syntax-decorators + + + + @babel + plugin-syntax-dynamic-import + 7.8.3 + Allow parsing of import() + + + MIT + + + pkg:npm/%40babel/plugin-syntax-dynamic-import@7.8.3?vcs_url=https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-dynamic-import + + + https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-dynamic-import + as detected from PackageJson property "repository" + + + + node_modules/@babel/plugin-syntax-dynamic-import + + + + The Babel Team (https://babel.dev/team) + @babel + plugin-syntax-jsx + 7.18.6 + Allow parsing of jsx + + + MIT + + + pkg:npm/%40babel/plugin-syntax-jsx@7.18.6?vcs_url=https://github.com/babel/babel.git#packages/babel-plugin-syntax-jsx + + + https://github.com/babel/babel.git#packages/babel-plugin-syntax-jsx + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-plugin-syntax-jsx + as detected from PackageJson property "homepage" + + + + node_modules/@babel/plugin-syntax-jsx + + + + The Babel Team (https://babel.dev/team) + @babel + plugin-transform-runtime + 7.19.1 + Externalise references to helpers and builtins, automatically polyfilling your code without polluting globals + + + MIT + + + pkg:npm/%40babel/plugin-transform-runtime@7.19.1?vcs_url=https://github.com/babel/babel.git#packages/babel-plugin-transform-runtime + + + https://github.com/babel/babel.git#packages/babel-plugin-transform-runtime + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-plugin-transform-runtime + as detected from PackageJson property "homepage" + + + + node_modules/@babel/plugin-transform-runtime + + + + babel-plugin-polyfill-corejs2 + 0.3.3 + A Babel plugin to inject imports to core-js@2 polyfills + + + MIT + + + pkg:npm/babel-plugin-polyfill-corejs2@0.3.3?vcs_url=https://github.com/babel/babel-polyfills.git#packages/babel-plugin-polyfill-corejs2 + + + https://github.com/babel/babel-polyfills.git#packages/babel-plugin-polyfill-corejs2 + as detected from PackageJson property "repository.url" and "repository.directory" + + + + node_modules/babel-plugin-polyfill-corejs2 + + + + @babel + helper-define-polyfill-provider + 0.3.3 + Babel helper to create your own polyfill provider + + + MIT + + + pkg:npm/%40babel/helper-define-polyfill-provider@0.3.3?vcs_url=https://github.com/babel/babel-polyfills.git#packages/babel-helper-define-polyfill-provider + + + https://github.com/babel/babel-polyfills.git#packages/babel-helper-define-polyfill-provider + as detected from PackageJson property "repository.url" and "repository.directory" + + + + node_modules/@babel/helper-define-polyfill-provider + + + + John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/) + lodash.debounce + 4.0.8 + The lodash method `_.debounce` exported as a module. + + + MIT + + + pkg:npm/lodash.debounce@4.0.8?vcs_url=lodash/lodash + + + lodash/lodash + as detected from PackageJson property "repository" + + + https://lodash.com/ + as detected from PackageJson property "homepage" + + + + node_modules/lodash.debounce + + + + James Halliday + resolve + 1.22.1 + resolve like require.resolve() on behalf of files asynchronously and synchronously + + + MIT + + + pkg:npm/resolve@1.22.1?vcs_url=git://github.com/browserify/resolve.git + + + git://github.com/browserify/resolve.git + as detected from PackageJson property "repository.url" + + + + node_modules/resolve + + + + babel-plugin-polyfill-corejs3 + 0.6.0 + A Babel plugin to inject imports to core-js@3 polyfills + + + MIT + + + pkg:npm/babel-plugin-polyfill-corejs3@0.6.0?vcs_url=https://github.com/babel/babel-polyfills.git#packages/babel-plugin-polyfill-corejs3 + + + https://github.com/babel/babel-polyfills.git#packages/babel-plugin-polyfill-corejs3 + as detected from PackageJson property "repository.url" and "repository.directory" + + + + node_modules/babel-plugin-polyfill-corejs3 + + + + core-js-compat + 3.25.2 + core-js compat + + + MIT + + + pkg:npm/core-js-compat@3.25.2?vcs_url=https://github.com/zloirock/core-js.git#packages/core-js-compat + + + https://github.com/zloirock/core-js.git#packages/core-js-compat + as detected from PackageJson property "repository.url" and "repository.directory" + + + + node_modules/core-js-compat + + + + babel-plugin-polyfill-regenerator + 0.4.1 + A Babel plugin to inject imports to regenerator-runtime + + + MIT + + + pkg:npm/babel-plugin-polyfill-regenerator@0.4.1?vcs_url=https://github.com/babel/babel-polyfills.git#packages/babel-plugin-polyfill-regenerator + + + https://github.com/babel/babel-polyfills.git#packages/babel-plugin-polyfill-regenerator + as detected from PackageJson property "repository.url" and "repository.directory" + + + + node_modules/babel-plugin-polyfill-regenerator + + + + Henry Zhu <hi@henryzoo.com> + @babel + preset-env + 7.3.4 + A Babel preset for each environment. + + + MIT + + + pkg:npm/%40babel/preset-env@7.3.4?vcs_url=https://github.com/babel/babel/tree/master/packages/babel-preset-env + + + https://github.com/babel/babel/tree/master/packages/babel-preset-env + as detected from PackageJson property "repository" + + + https://babeljs.io/ + as detected from PackageJson property "homepage" + + + + + semver + 5.7.1 + The semantic version parser used by npm. + + + ISC + + + pkg:npm/semver@5.7.1?vcs_url=https://github.com/npm/node-semver + + + https://github.com/npm/node-semver + as detected from PackageJson property "repository" + + + + node_modules/@babel/preset-env/node_modules/semver + + + + + node_modules/@babel/preset-env + + + + The Babel Team (https://babel.dev/team) + @babel + plugin-proposal-async-generator-functions + 7.19.1 + Turn async generator functions into ES2015 generators + + + MIT + + + pkg:npm/%40babel/plugin-proposal-async-generator-functions@7.19.1?vcs_url=https://github.com/babel/babel.git#packages/babel-plugin-proposal-async-generator-functions + + + https://github.com/babel/babel.git#packages/babel-plugin-proposal-async-generator-functions + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-plugin-proposal-async-generator-functions + as detected from PackageJson property "homepage" + + + + node_modules/@babel/plugin-proposal-async-generator-functions + + + + The Babel Team (https://babel.dev/team) + @babel + helper-remap-async-to-generator + 7.18.9 + Helper function to remap async functions to generators + + + MIT + + + pkg:npm/%40babel/helper-remap-async-to-generator@7.18.9?vcs_url=https://github.com/babel/babel.git#packages/babel-helper-remap-async-to-generator + + + https://github.com/babel/babel.git#packages/babel-helper-remap-async-to-generator + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-helper-remap-async-to-generator + as detected from PackageJson property "homepage" + + + + node_modules/@babel/helper-remap-async-to-generator + + + + The Babel Team (https://babel.dev/team) + @babel + helper-wrap-function + 7.19.0 + Helper to wrap functions inside a function call. + + + MIT + + + pkg:npm/%40babel/helper-wrap-function@7.19.0?vcs_url=https://github.com/babel/babel.git#packages/babel-helper-wrap-function + + + https://github.com/babel/babel.git#packages/babel-helper-wrap-function + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-helper-wrap-function + as detected from PackageJson property "homepage" + + + + node_modules/@babel/helper-wrap-function + + + + @babel + plugin-syntax-async-generators + 7.8.4 + Allow parsing of async generator functions + + + MIT + + + pkg:npm/%40babel/plugin-syntax-async-generators@7.8.4?vcs_url=https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-async-generators + + + https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-async-generators + as detected from PackageJson property "repository" + + + + node_modules/@babel/plugin-syntax-async-generators + + + + The Babel Team (https://babel.dev/team) + @babel + plugin-proposal-json-strings + 7.18.6 + Escape U+2028 LINE SEPARATOR and U+2029 PARAGRAPH SEPARATOR in JS strings + + + MIT + + + pkg:npm/%40babel/plugin-proposal-json-strings@7.18.6?vcs_url=https://github.com/babel/babel.git#packages/babel-plugin-proposal-json-strings + + + https://github.com/babel/babel.git#packages/babel-plugin-proposal-json-strings + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-plugin-proposal-json-strings + as detected from PackageJson property "homepage" + + + + node_modules/@babel/plugin-proposal-json-strings + + + + @babel + plugin-syntax-json-strings + 7.8.3 + Allow parsing of the U+2028 LINE SEPARATOR and U+2029 PARAGRAPH SEPARATOR in JS strings + + + MIT + + + pkg:npm/%40babel/plugin-syntax-json-strings@7.8.3?vcs_url=https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-json-strings + + + https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-json-strings + as detected from PackageJson property "repository" + + + + node_modules/@babel/plugin-syntax-json-strings + + + + The Babel Team (https://babel.dev/team) + @babel + plugin-proposal-object-rest-spread + 7.18.9 + Compile object rest and spread to ES5 + + + MIT + + + pkg:npm/%40babel/plugin-proposal-object-rest-spread@7.18.9?vcs_url=https://github.com/babel/babel.git#packages/babel-plugin-proposal-object-rest-spread + + + https://github.com/babel/babel.git#packages/babel-plugin-proposal-object-rest-spread + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-plugin-proposal-object-rest-spread + as detected from PackageJson property "homepage" + + + + node_modules/@babel/plugin-proposal-object-rest-spread + + + + @babel + plugin-syntax-object-rest-spread + 7.8.3 + Allow parsing of object rest/spread + + + MIT + + + pkg:npm/%40babel/plugin-syntax-object-rest-spread@7.8.3?vcs_url=https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-object-rest-spread + + + https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-object-rest-spread + as detected from PackageJson property "repository" + + + + node_modules/@babel/plugin-syntax-object-rest-spread + + + + The Babel Team (https://babel.dev/team) + @babel + plugin-transform-parameters + 7.18.8 + Compile ES2015 default and rest parameters to ES5 + + + MIT + + + pkg:npm/%40babel/plugin-transform-parameters@7.18.8?vcs_url=https://github.com/babel/babel.git#packages/babel-plugin-transform-parameters + + + https://github.com/babel/babel.git#packages/babel-plugin-transform-parameters + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-plugin-transform-parameters + as detected from PackageJson property "homepage" + + + + node_modules/@babel/plugin-transform-parameters + + + + The Babel Team (https://babel.dev/team) + @babel + plugin-proposal-optional-catch-binding + 7.18.6 + Compile optional catch bindings + + + MIT + + + pkg:npm/%40babel/plugin-proposal-optional-catch-binding@7.18.6?vcs_url=https://github.com/babel/babel.git#packages/babel-plugin-proposal-optional-catch-binding + + + https://github.com/babel/babel.git#packages/babel-plugin-proposal-optional-catch-binding + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-plugin-proposal-optional-catch-binding + as detected from PackageJson property "homepage" + + + + node_modules/@babel/plugin-proposal-optional-catch-binding + + + + @babel + plugin-syntax-optional-catch-binding + 7.8.3 + Allow parsing of optional catch bindings + + + MIT + + + pkg:npm/%40babel/plugin-syntax-optional-catch-binding@7.8.3?vcs_url=https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-optional-catch-binding + + + https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-optional-catch-binding + as detected from PackageJson property "repository" + + + + node_modules/@babel/plugin-syntax-optional-catch-binding + + + + The Babel Team (https://babel.dev/team) + @babel + plugin-proposal-unicode-property-regex + 7.18.6 + Compile Unicode property escapes in Unicode regular expressions to ES5. + + + MIT + + + pkg:npm/%40babel/plugin-proposal-unicode-property-regex@7.18.6?vcs_url=https://github.com/babel/babel.git#packages/babel-plugin-proposal-unicode-property-regex + + + https://github.com/babel/babel.git#packages/babel-plugin-proposal-unicode-property-regex + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-plugin-proposal-unicode-property-regex + as detected from PackageJson property "homepage" + + + https://github.com/babel/babel/issues + as detected from PackageJson property "bugs" + + + + node_modules/@babel/plugin-proposal-unicode-property-regex + + + + The Babel Team (https://babel.dev/team) + @babel + helper-create-regexp-features-plugin + 7.19.0 + Compile ESNext Regular Expressions to ES5 + + + MIT + + + pkg:npm/%40babel/helper-create-regexp-features-plugin@7.19.0?vcs_url=https://github.com/babel/babel.git#packages/babel-helper-create-regexp-features-plugin + + + https://github.com/babel/babel.git#packages/babel-helper-create-regexp-features-plugin + as detected from PackageJson property "repository.url" and "repository.directory" + + + + node_modules/@babel/helper-create-regexp-features-plugin + + + + Mathias Bynens + regexpu-core + 5.2.1 + regexpu's core functionality (i.e. `rewritePattern(pattern, flag)`), capable of translating ES6 Unicode regular expressions to ES5. + + + MIT + + + pkg:npm/regexpu-core@5.2.1?vcs_url=https://github.com/mathiasbynens/regexpu-core.git + + + https://github.com/mathiasbynens/regexpu-core.git + as detected from PackageJson property "repository.url" + + + https://mths.be/regexpu + as detected from PackageJson property "homepage" + + + https://github.com/mathiasbynens/regexpu-core/issues + as detected from PackageJson property "bugs" + + + + node_modules/regexpu-core + + + + Mathias Bynens + regenerate-unicode-properties + 10.1.0 + Regenerate sets for Unicode properties and values. + + + MIT + + + pkg:npm/regenerate-unicode-properties@10.1.0?vcs_url=https://github.com/mathiasbynens/regenerate-unicode-properties.git + + + https://github.com/mathiasbynens/regenerate-unicode-properties.git + as detected from PackageJson property "repository.url" + + + https://github.com/mathiasbynens/regenerate-unicode-properties + as detected from PackageJson property "homepage" + + + https://github.com/mathiasbynens/regenerate-unicode-properties/issues + as detected from PackageJson property "bugs" + + + + node_modules/regenerate-unicode-properties + + + + Mathias Bynens + regenerate + 1.4.2 + Generate JavaScript-compatible regular expressions projxd on a given set of Unicode symbols or code points. + + + MIT + + + pkg:npm/regenerate@1.4.2?vcs_url=https://github.com/mathiasbynens/regenerate.git + + + https://github.com/mathiasbynens/regenerate.git + as detected from PackageJson property "repository.url" + + + https://mths.be/regenerate + as detected from PackageJson property "homepage" + + + https://github.com/mathiasbynens/regenerate/issues + as detected from PackageJson property "bugs" + + + + node_modules/regenerate + + + + Benjamin Tan + regjsgen + 0.7.1 + Generate regular expressions from regjsparser's AST. + + + MIT + + + pkg:npm/regjsgen@0.7.1?vcs_url=https://github.com/bnjmnt4n/regjsgen.git + + + https://github.com/bnjmnt4n/regjsgen.git + as detected from PackageJson property "repository.url" + + + https://github.com/bnjmnt4n/regjsgen + as detected from PackageJson property "homepage" + + + https://github.com/bnjmnt4n/regjsgen/issues + as detected from PackageJson property "bugs" + + + + node_modules/regjsgen + + + + 'Julian Viereck' <julian.viereck@gmail.com> + regjsparser + 0.9.1 + + + BSD-2-Clause + + + pkg:npm/regjsparser@0.9.1?vcs_url=git@github.com:jviereck/regjsparser.git + + + https://github.com/jviereck/regjsparser + as detected from PackageJson property "homepage" + + + + + Mathias Bynens + jsesc + 0.5.0 + A JavaScript library for escaping JavaScript strings while generating the shortest possible valid output. + + + MIT + http://mths.be/mit + + + pkg:npm/jsesc@0.5.0?vcs_url=https://github.com/mathiasbynens/jsesc.git + + + https://github.com/mathiasbynens/jsesc.git + as detected from PackageJson property "repository.url" + + + http://mths.be/jsesc + as detected from PackageJson property "homepage" + + + https://github.com/mathiasbynens/jsesc/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/regjsparser/node_modules/jsesc + + + + + node_modules/regjsparser + + + + Mathias Bynens + unicode-match-property-ecmascript + 2.0.0 + Match a Unicode property or property alias to its canonical property name per the algorithm used for RegExp Unicode property escapes in ECMAScript. + + + MIT + + + pkg:npm/unicode-match-property-ecmascript@2.0.0?vcs_url=https://github.com/mathiasbynens/unicode-match-property-ecmascript.git + + + https://github.com/mathiasbynens/unicode-match-property-ecmascript.git + as detected from PackageJson property "repository.url" + + + https://github.com/mathiasbynens/unicode-match-property-ecmascript + as detected from PackageJson property "homepage" + + + https://github.com/mathiasbynens/unicode-match-property-ecmascript/issues + as detected from PackageJson property "bugs" + + + + node_modules/unicode-match-property-ecmascript + + + + Mathias Bynens + unicode-canonical-property-names-ecmascript + 2.0.0 + The set of canonical Unicode property names supported in ECMAScript RegExp property escapes. + + + MIT + + + pkg:npm/unicode-canonical-property-names-ecmascript@2.0.0?vcs_url=https://github.com/mathiasbynens/unicode-canonical-property-names-ecmascript.git + + + https://github.com/mathiasbynens/unicode-canonical-property-names-ecmascript.git + as detected from PackageJson property "repository.url" + + + https://github.com/mathiasbynens/unicode-canonical-property-names-ecmascript + as detected from PackageJson property "homepage" + + + https://github.com/mathiasbynens/unicode-canonical-property-names-ecmascript/issues + as detected from PackageJson property "bugs" + + + + node_modules/unicode-canonical-property-names-ecmascript + + + + Mathias Bynens + unicode-property-aliases-ecmascript + 2.1.0 + Unicode property alias mappings in JavaScript format for property names that are supported in ECMAScript RegExp property escapes. + + + MIT + + + pkg:npm/unicode-property-aliases-ecmascript@2.1.0?vcs_url=https://github.com/mathiasbynens/unicode-property-aliases-ecmascript.git + + + https://github.com/mathiasbynens/unicode-property-aliases-ecmascript.git + as detected from PackageJson property "repository.url" + + + https://github.com/mathiasbynens/unicode-property-aliases-ecmascript + as detected from PackageJson property "homepage" + + + https://github.com/mathiasbynens/unicode-property-aliases-ecmascript/issues + as detected from PackageJson property "bugs" + + + + node_modules/unicode-property-aliases-ecmascript + + + + Mathias Bynens + unicode-match-property-value-ecmascript + 2.0.0 + Match a Unicode property or property alias to its canonical property name per the algorithm used for RegExp Unicode property escapes in ECMAScript. + + + MIT + + + pkg:npm/unicode-match-property-value-ecmascript@2.0.0?vcs_url=https://github.com/mathiasbynens/unicode-match-property-value-ecmascript.git + + + https://github.com/mathiasbynens/unicode-match-property-value-ecmascript.git + as detected from PackageJson property "repository.url" + + + https://github.com/mathiasbynens/unicode-match-property-value-ecmascript + as detected from PackageJson property "homepage" + + + https://github.com/mathiasbynens/unicode-match-property-value-ecmascript/issues + as detected from PackageJson property "bugs" + + + + node_modules/unicode-match-property-value-ecmascript + + + + The Babel Team (https://babel.dev/team) + @babel + plugin-transform-arrow-functions + 7.18.6 + Compile ES2015 arrow functions to ES5 + + + MIT + + + pkg:npm/%40babel/plugin-transform-arrow-functions@7.18.6?vcs_url=https://github.com/babel/babel.git#packages/babel-plugin-transform-arrow-functions + + + https://github.com/babel/babel.git#packages/babel-plugin-transform-arrow-functions + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-plugin-transform-arrow-functions + as detected from PackageJson property "homepage" + + + + node_modules/@babel/plugin-transform-arrow-functions + + + + The Babel Team (https://babel.dev/team) + @babel + plugin-transform-async-to-generator + 7.18.6 + Turn async functions into ES2015 generators + + + MIT + + + pkg:npm/%40babel/plugin-transform-async-to-generator@7.18.6?vcs_url=https://github.com/babel/babel.git#packages/babel-plugin-transform-async-to-generator + + + https://github.com/babel/babel.git#packages/babel-plugin-transform-async-to-generator + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-plugin-transform-async-to-generator + as detected from PackageJson property "homepage" + + + + node_modules/@babel/plugin-transform-async-to-generator + + + + The Babel Team (https://babel.dev/team) + @babel + plugin-transform-block-scoped-functions + 7.18.6 + Babel plugin to ensure function declarations at the block level are block scoped + + + MIT + + + pkg:npm/%40babel/plugin-transform-block-scoped-functions@7.18.6?vcs_url=https://github.com/babel/babel.git#packages/babel-plugin-transform-block-scoped-functions + + + https://github.com/babel/babel.git#packages/babel-plugin-transform-block-scoped-functions + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-plugin-transform-block-scoped-functions + as detected from PackageJson property "homepage" + + + + node_modules/@babel/plugin-transform-block-scoped-functions + + + + The Babel Team (https://babel.dev/team) + @babel + plugin-transform-block-scoping + 7.18.9 + Compile ES2015 block scoping (const and let) to ES5 + + + MIT + + + pkg:npm/%40babel/plugin-transform-block-scoping@7.18.9?vcs_url=https://github.com/babel/babel.git#packages/babel-plugin-transform-block-scoping + + + https://github.com/babel/babel.git#packages/babel-plugin-transform-block-scoping + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-plugin-transform-block-scoping + as detected from PackageJson property "homepage" + + + + node_modules/@babel/plugin-transform-block-scoping + + + + The Babel Team (https://babel.dev/team) + @babel + plugin-transform-classes + 7.19.0 + Compile ES2015 classes to ES5 + + + MIT + + + pkg:npm/%40babel/plugin-transform-classes@7.19.0?vcs_url=https://github.com/babel/babel.git#packages/babel-plugin-transform-classes + + + https://github.com/babel/babel.git#packages/babel-plugin-transform-classes + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-plugin-transform-classes + as detected from PackageJson property "homepage" + + + + node_modules/@babel/plugin-transform-classes + + + + Sindre Sorhus + globals + 11.12.0 + Global identifiers from different JavaScript environments + + + MIT + + + pkg:npm/globals@11.12.0?vcs_url=sindresorhus/globals + + + sindresorhus/globals + as detected from PackageJson property "repository" + + + + node_modules/globals + + + + The Babel Team (https://babel.dev/team) + @babel + plugin-transform-computed-properties + 7.18.9 + Compile ES2015 computed properties to ES5 + + + MIT + + + pkg:npm/%40babel/plugin-transform-computed-properties@7.18.9?vcs_url=https://github.com/babel/babel.git#packages/babel-plugin-transform-computed-properties + + + https://github.com/babel/babel.git#packages/babel-plugin-transform-computed-properties + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-plugin-transform-computed-properties + as detected from PackageJson property "homepage" + + + + node_modules/@babel/plugin-transform-computed-properties + + + + The Babel Team (https://babel.dev/team) + @babel + plugin-transform-destructuring + 7.18.13 + Compile ES2015 destructuring to ES5 + + + MIT + + + pkg:npm/%40babel/plugin-transform-destructuring@7.18.13?vcs_url=https://github.com/babel/babel.git#packages/babel-plugin-transform-destructuring + + + https://github.com/babel/babel.git#packages/babel-plugin-transform-destructuring + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-plugin-transform-destructuring + as detected from PackageJson property "homepage" + + + + node_modules/@babel/plugin-transform-destructuring + + + + The Babel Team (https://babel.dev/team) + @babel + plugin-transform-dotall-regex + 7.18.6 + Compile regular expressions using the `s` (`dotAll`) flag to ES5. + + + MIT + + + pkg:npm/%40babel/plugin-transform-dotall-regex@7.18.6?vcs_url=https://github.com/babel/babel.git#packages/babel-plugin-transform-dotall-regex + + + https://github.com/babel/babel.git#packages/babel-plugin-transform-dotall-regex + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-plugin-transform-dotall-regex + as detected from PackageJson property "homepage" + + + https://github.com/babel/babel/issues + as detected from PackageJson property "bugs" + + + + node_modules/@babel/plugin-transform-dotall-regex + + + + The Babel Team (https://babel.dev/team) + @babel + plugin-transform-duplicate-keys + 7.18.9 + Compile objects with duplicate keys to valid strict ES5 + + + MIT + + + pkg:npm/%40babel/plugin-transform-duplicate-keys@7.18.9?vcs_url=https://github.com/babel/babel.git#packages/babel-plugin-transform-duplicate-keys + + + https://github.com/babel/babel.git#packages/babel-plugin-transform-duplicate-keys + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-plugin-transform-duplicate-keys + as detected from PackageJson property "homepage" + + + + node_modules/@babel/plugin-transform-duplicate-keys + + + + The Babel Team (https://babel.dev/team) + @babel + plugin-transform-exponentiation-operator + 7.18.6 + Compile exponentiation operator to ES5 + + + MIT + + + pkg:npm/%40babel/plugin-transform-exponentiation-operator@7.18.6?vcs_url=https://github.com/babel/babel.git#packages/babel-plugin-transform-exponentiation-operator + + + https://github.com/babel/babel.git#packages/babel-plugin-transform-exponentiation-operator + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-plugin-transform-exponentiation-operator + as detected from PackageJson property "homepage" + + + + node_modules/@babel/plugin-transform-exponentiation-operator + + + + The Babel Team (https://babel.dev/team) + @babel + helper-builder-binary-assignment-operator-visitor + 7.18.9 + Helper function to build binary assignment operator visitors + + + MIT + + + pkg:npm/%40babel/helper-builder-binary-assignment-operator-visitor@7.18.9?vcs_url=https://github.com/babel/babel.git#packages/babel-helper-builder-binary-assignment-operator-visitor + + + https://github.com/babel/babel.git#packages/babel-helper-builder-binary-assignment-operator-visitor + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-helper-builder-binary-assignment-operator-visitor + as detected from PackageJson property "homepage" + + + + node_modules/@babel/helper-builder-binary-assignment-operator-visitor + + + + The Babel Team (https://babel.dev/team) + @babel + helper-explode-assignable-expression + 7.18.6 + Helper function to explode an assignable expression + + + MIT + + + pkg:npm/%40babel/helper-explode-assignable-expression@7.18.6?vcs_url=https://github.com/babel/babel.git#packages/babel-helper-explode-assignable-expression + + + https://github.com/babel/babel.git#packages/babel-helper-explode-assignable-expression + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-helper-explode-assignable-expression + as detected from PackageJson property "homepage" + + + + node_modules/@babel/helper-explode-assignable-expression + + + + The Babel Team (https://babel.dev/team) + @babel + plugin-transform-for-of + 7.18.8 + Compile ES2015 for...of to ES5 + + + MIT + + + pkg:npm/%40babel/plugin-transform-for-of@7.18.8?vcs_url=https://github.com/babel/babel.git#packages/babel-plugin-transform-for-of + + + https://github.com/babel/babel.git#packages/babel-plugin-transform-for-of + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-plugin-transform-for-of + as detected from PackageJson property "homepage" + + + + node_modules/@babel/plugin-transform-for-of + + + + The Babel Team (https://babel.dev/team) + @babel + plugin-transform-function-name + 7.18.9 + Apply ES2015 function.name semantics to all functions + + + MIT + + + pkg:npm/%40babel/plugin-transform-function-name@7.18.9?vcs_url=https://github.com/babel/babel.git#packages/babel-plugin-transform-function-name + + + https://github.com/babel/babel.git#packages/babel-plugin-transform-function-name + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-plugin-transform-function-name + as detected from PackageJson property "homepage" + + + + node_modules/@babel/plugin-transform-function-name + + + + The Babel Team (https://babel.dev/team) + @babel + plugin-transform-literals + 7.18.9 + Compile ES2015 unicode string and number literals to ES5 + + + MIT + + + pkg:npm/%40babel/plugin-transform-literals@7.18.9?vcs_url=https://github.com/babel/babel.git#packages/babel-plugin-transform-literals + + + https://github.com/babel/babel.git#packages/babel-plugin-transform-literals + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-plugin-transform-literals + as detected from PackageJson property "homepage" + + + + node_modules/@babel/plugin-transform-literals + + + + The Babel Team (https://babel.dev/team) + @babel + plugin-transform-modules-amd + 7.18.6 + This plugin transforms ES2015 modules to AMD + + + MIT + + + pkg:npm/%40babel/plugin-transform-modules-amd@7.18.6?vcs_url=https://github.com/babel/babel.git#packages/babel-plugin-transform-modules-amd + + + https://github.com/babel/babel.git#packages/babel-plugin-transform-modules-amd + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-plugin-transform-modules-amd + as detected from PackageJson property "homepage" + + + + node_modules/@babel/plugin-transform-modules-amd + + + + Jordan Gensler <jordan.gensler@airbnb.com> + babel-plugin-dynamic-import-node + 2.3.3 + Babel plugin to transpile import() to a deferred require(), for node + + + MIT + + + pkg:npm/babel-plugin-dynamic-import-node@2.3.3?vcs_url=git+https://github.com/airbnb/babel-plugin-dynamic-import-node.git + + + git+https://github.com/airbnb/babel-plugin-dynamic-import-node.git + as detected from PackageJson property "repository.url" + + + https://github.com/airbnb/babel-plugin-dynamic-import-node#readme + as detected from PackageJson property "homepage" + + + https://github.com/airbnb/babel-plugin-dynamic-import-node/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/babel-plugin-dynamic-import-node + + + + The Babel Team (https://babel.dev/team) + @babel + plugin-transform-modules-commonjs + 7.18.6 + This plugin transforms ES2015 modules to CommonJS + + + MIT + + + pkg:npm/%40babel/plugin-transform-modules-commonjs@7.18.6?vcs_url=https://github.com/babel/babel.git#packages/babel-plugin-transform-modules-commonjs + + + https://github.com/babel/babel.git#packages/babel-plugin-transform-modules-commonjs + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-plugin-transform-modules-commonjs + as detected from PackageJson property "homepage" + + + + node_modules/@babel/plugin-transform-modules-commonjs + + + + The Babel Team (https://babel.dev/team) + @babel + plugin-transform-modules-systemjs + 7.19.0 + This plugin transforms ES2015 modules to SystemJS + + + MIT + + + pkg:npm/%40babel/plugin-transform-modules-systemjs@7.19.0?vcs_url=https://github.com/babel/babel.git#packages/babel-plugin-transform-modules-systemjs + + + https://github.com/babel/babel.git#packages/babel-plugin-transform-modules-systemjs + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-plugin-transform-modules-systemjs + as detected from PackageJson property "homepage" + + + + node_modules/@babel/plugin-transform-modules-systemjs + + + + The Babel Team (https://babel.dev/team) + @babel + helper-hoist-variables + 7.18.6 + Helper function to hoist variables + + + MIT + + + pkg:npm/%40babel/helper-hoist-variables@7.18.6?vcs_url=https://github.com/babel/babel.git#packages/babel-helper-hoist-variables + + + https://github.com/babel/babel.git#packages/babel-helper-hoist-variables + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-helper-hoist-variables + as detected from PackageJson property "homepage" + + + + node_modules/@babel/helper-hoist-variables + + + + The Babel Team (https://babel.dev/team) + @babel + plugin-transform-modules-umd + 7.18.6 + This plugin transforms ES2015 modules to UMD + + + MIT + + + pkg:npm/%40babel/plugin-transform-modules-umd@7.18.6?vcs_url=https://github.com/babel/babel.git#packages/babel-plugin-transform-modules-umd + + + https://github.com/babel/babel.git#packages/babel-plugin-transform-modules-umd + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-plugin-transform-modules-umd + as detected from PackageJson property "homepage" + + + + node_modules/@babel/plugin-transform-modules-umd + + + + The Babel Team (https://babel.dev/team) + @babel + plugin-transform-named-capturing-groups-regex + 7.19.1 + Compile regular expressions using named groups to ES5. + + + MIT + + + pkg:npm/%40babel/plugin-transform-named-capturing-groups-regex@7.19.1?vcs_url=https://github.com/babel/babel.git#packages/babel-plugin-transform-named-capturing-groups-regex + + + https://github.com/babel/babel.git#packages/babel-plugin-transform-named-capturing-groups-regex + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-plugin-transform-named-capturing-groups-regex + as detected from PackageJson property "homepage" + + + https://github.com/babel/babel/issues + as detected from PackageJson property "bugs" + + + + node_modules/@babel/plugin-transform-named-capturing-groups-regex + + + + The Babel Team (https://babel.dev/team) + @babel + plugin-transform-new-target + 7.18.6 + Transforms new.target meta property + + + MIT + + + pkg:npm/%40babel/plugin-transform-new-target@7.18.6?vcs_url=https://github.com/babel/babel.git#packages/babel-plugin-transform-new-target + + + https://github.com/babel/babel.git#packages/babel-plugin-transform-new-target + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-plugin-transform-new-target + as detected from PackageJson property "homepage" + + + + node_modules/@babel/plugin-transform-new-target + + + + The Babel Team (https://babel.dev/team) + @babel + plugin-transform-object-super + 7.18.6 + Compile ES2015 object super to ES5 + + + MIT + + + pkg:npm/%40babel/plugin-transform-object-super@7.18.6?vcs_url=https://github.com/babel/babel.git#packages/babel-plugin-transform-object-super + + + https://github.com/babel/babel.git#packages/babel-plugin-transform-object-super + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-plugin-transform-object-super + as detected from PackageJson property "homepage" + + + + node_modules/@babel/plugin-transform-object-super + + + + The Babel Team (https://babel.dev/team) + @babel + plugin-transform-regenerator + 7.18.6 + Explode async and generator functions into a state machine. + + + MIT + + + pkg:npm/%40babel/plugin-transform-regenerator@7.18.6?vcs_url=https://github.com/babel/babel.git#packages/babel-plugin-transform-regenerator + + + https://github.com/babel/babel.git#packages/babel-plugin-transform-regenerator + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-plugin-transform-regenerator + as detected from PackageJson property "homepage" + + + + node_modules/@babel/plugin-transform-regenerator + + + + Ben Newman <bn@cs.stanford.edu> + regenerator-transform + 0.15.0 + Explode async and generator functions into a state machine. + + + MIT + + + pkg:npm/regenerator-transform@0.15.0?vcs_url=https://github.com/facebook/regenerator/tree/master/packages/transform + + + https://github.com/facebook/regenerator/tree/master/packages/transform + as detected from PackageJson property "repository.url" + + + + node_modules/regenerator-transform + + + + The Babel Team (https://babel.dev/team) + @babel + runtime + 7.19.0 + babel's modular runtime helpers + + + MIT + + + pkg:npm/%40babel/runtime@7.19.0?vcs_url=https://github.com/babel/babel.git#packages/babel-runtime + + + https://github.com/babel/babel.git#packages/babel-runtime + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-runtime + as detected from PackageJson property "homepage" + + + + node_modules/@babel/runtime + + + + The Babel Team (https://babel.dev/team) + @babel + plugin-transform-shorthand-properties + 7.18.6 + Compile ES2015 shorthand properties to ES5 + + + MIT + + + pkg:npm/%40babel/plugin-transform-shorthand-properties@7.18.6?vcs_url=https://github.com/babel/babel.git#packages/babel-plugin-transform-shorthand-properties + + + https://github.com/babel/babel.git#packages/babel-plugin-transform-shorthand-properties + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-plugin-transform-shorthand-properties + as detected from PackageJson property "homepage" + + + + node_modules/@babel/plugin-transform-shorthand-properties + + + + The Babel Team (https://babel.dev/team) + @babel + plugin-transform-spread + 7.19.0 + Compile ES2015 spread to ES5 + + + MIT + + + pkg:npm/%40babel/plugin-transform-spread@7.19.0?vcs_url=https://github.com/babel/babel.git#packages/babel-plugin-transform-spread + + + https://github.com/babel/babel.git#packages/babel-plugin-transform-spread + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-plugin-transform-spread + as detected from PackageJson property "homepage" + + + + node_modules/@babel/plugin-transform-spread + + + + The Babel Team (https://babel.dev/team) + @babel + helper-skip-transparent-expression-wrappers + 7.18.9 + Helper which skips types and parentheses + + + MIT + + + pkg:npm/%40babel/helper-skip-transparent-expression-wrappers@7.18.9?vcs_url=https://github.com/babel/babel.git#packages/babel-helper-skip-transparent-expression-wrappers + + + https://github.com/babel/babel.git#packages/babel-helper-skip-transparent-expression-wrappers + as detected from PackageJson property "repository.url" and "repository.directory" + + + + node_modules/@babel/helper-skip-transparent-expression-wrappers + + + + The Babel Team (https://babel.dev/team) + @babel + plugin-transform-sticky-regex + 7.18.6 + Compile ES2015 sticky regex to an ES5 RegExp constructor + + + MIT + + + pkg:npm/%40babel/plugin-transform-sticky-regex@7.18.6?vcs_url=https://github.com/babel/babel.git#packages/babel-plugin-transform-sticky-regex + + + https://github.com/babel/babel.git#packages/babel-plugin-transform-sticky-regex + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-plugin-transform-sticky-regex + as detected from PackageJson property "homepage" + + + + node_modules/@babel/plugin-transform-sticky-regex + + + + The Babel Team (https://babel.dev/team) + @babel + plugin-transform-template-literals + 7.18.9 + Compile ES2015 template literals to ES5 + + + MIT + + + pkg:npm/%40babel/plugin-transform-template-literals@7.18.9?vcs_url=https://github.com/babel/babel.git#packages/babel-plugin-transform-template-literals + + + https://github.com/babel/babel.git#packages/babel-plugin-transform-template-literals + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-plugin-transform-template-literals + as detected from PackageJson property "homepage" + + + + node_modules/@babel/plugin-transform-template-literals + + + + The Babel Team (https://babel.dev/team) + @babel + plugin-transform-typeof-symbol + 7.18.9 + This transformer wraps all typeof expressions with a method that replicates native behaviour. (ie. returning "symbol" for symbols) + + + MIT + + + pkg:npm/%40babel/plugin-transform-typeof-symbol@7.18.9?vcs_url=https://github.com/babel/babel.git#packages/babel-plugin-transform-typeof-symbol + + + https://github.com/babel/babel.git#packages/babel-plugin-transform-typeof-symbol + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-plugin-transform-typeof-symbol + as detected from PackageJson property "homepage" + + + + node_modules/@babel/plugin-transform-typeof-symbol + + + + The Babel Team (https://babel.dev/team) + @babel + plugin-transform-unicode-regex + 7.18.6 + Compile ES2015 Unicode regex to ES5 + + + MIT + + + pkg:npm/%40babel/plugin-transform-unicode-regex@7.18.6?vcs_url=https://github.com/babel/babel.git#packages/babel-plugin-transform-unicode-regex + + + https://github.com/babel/babel.git#packages/babel-plugin-transform-unicode-regex + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-plugin-transform-unicode-regex + as detected from PackageJson property "homepage" + + + + node_modules/@babel/plugin-transform-unicode-regex + + + + Andres Suarez <zertosh@gmail.com> + invariant + 2.2.4 + invariant + + + MIT + + + pkg:npm/invariant@2.2.4?vcs_url=https://github.com/zertosh/invariant + + + https://github.com/zertosh/invariant + as detected from PackageJson property "repository" + + + + node_modules/invariant + + + + Andres Suarez <zertosh@gmail.com> + loose-envify + 1.4.0 + Fast (and loose) selective `process.env` replacer using js-tokens instead of an AST + + + MIT + + + pkg:npm/loose-envify@1.4.0?vcs_url=git://github.com/zertosh/loose-envify.git + + + git://github.com/zertosh/loose-envify.git + as detected from PackageJson property "repository.url" + + + https://github.com/zertosh/loose-envify + as detected from PackageJson property "homepage" + + + + node_modules/loose-envify + + + + Simon Lydell + js-tokens + 4.0.0 + A regex that tokenizes JavaScript. + + + MIT + + + pkg:npm/js-tokens@4.0.0?vcs_url=lydell/js-tokens + + + lydell/js-tokens + as detected from PackageJson property "repository" + + + + node_modules/js-tokens + + + + Gustaf Andersson + js-levenshtein + 1.1.6 + The most efficient JS implementation calculating the Levenshtein distance, i.e. the difference between two strings. + + + MIT + + + pkg:npm/js-levenshtein@1.1.6?vcs_url=gustf/js-levenshtein + + + gustf/js-levenshtein + as detected from PackageJson property "repository" + + + + node_modules/js-levenshtein + + + + The Babel Team (https://babel.dev/team) + @babel + runtime-corejs2 + 7.19.2 + babel's modular runtime helpers with core-js@2 polyfilling + + + MIT + + + pkg:npm/%40babel/runtime-corejs2@7.19.2?vcs_url=https://github.com/babel/babel.git#packages/babel-runtime-corejs2 + + + https://github.com/babel/babel.git#packages/babel-runtime-corejs2 + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-runtime-corejs2 + as detected from PackageJson property "homepage" + + + + node_modules/@babel/runtime-corejs2 + + + + core-js + 2.6.12 + Standard library + + + MIT + + + pkg:npm/core-js@2.6.12?vcs_url=https://github.com/zloirock/core-js.git + + + https://github.com/zloirock/core-js.git + as detected from PackageJson property "repository.url" + + + + node_modules/core-js + + + + Ben Newman <bn@cs.stanford.edu> + regenerator-runtime + 0.13.9 + Runtime for Regenerator-compiled generator and async functions. + + + MIT + + + pkg:npm/regenerator-runtime@0.13.9?vcs_url=https://github.com/facebook/regenerator/tree/master/packages/runtime + + + https://github.com/facebook/regenerator/tree/master/packages/runtime + as detected from PackageJson property "repository.url" + + + + node_modules/regenerator-runtime + + + + Nick Messing <dot.nick.dot.messing@gmail.com> + @vue + babel-preset-jsx + 1.4.0 + Babel preset for Vue JSX + + + MIT + + + pkg:npm/%40vue/babel-preset-jsx@1.4.0?vcs_url=https://github.com/vuejs/jsx/tree/master/packages/babel-preset-jsx + + + https://github.com/vuejs/jsx/tree/master/packages/babel-preset-jsx + as detected from PackageJson property "repository" + + + + node_modules/@vue/babel-preset-jsx + + + + Evan You + @vue + babel-helper-vue-jsx-merge-props + 1.4.0 + Babel helper for Vue JSX spread + + + MIT + + + pkg:npm/%40vue/babel-helper-vue-jsx-merge-props@1.4.0?vcs_url=https://github.com/vuejs/jsx/tree/master/packages/babel-helper-vue-jsx-merge-props + + + https://github.com/vuejs/jsx/tree/master/packages/babel-helper-vue-jsx-merge-props + as detected from PackageJson property "repository" + + + + node_modules/@vue/babel-helper-vue-jsx-merge-props + + + + Evan You + @vue + babel-plugin-transform-vue-jsx + 1.4.0 + Babel plugin for Vue 2.0 JSX + + + MIT + + + pkg:npm/%40vue/babel-plugin-transform-vue-jsx@1.4.0?vcs_url=https://github.com/vuejs/jsx/tree/master/packages/babel-plugin-transform-vue-jsx + + + https://github.com/vuejs/jsx/tree/master/packages/babel-plugin-transform-vue-jsx + as detected from PackageJson property "repository" + + + + node_modules/@vue/babel-plugin-transform-vue-jsx + + + + Sindre Sorhus + html-tags + 2.0.0 + List of standard HTML tags + + + MIT + + + pkg:npm/html-tags@2.0.0?vcs_url=sindresorhus/html-tags + + + sindresorhus/html-tags + as detected from PackageJson property "repository" + + + + node_modules/html-tags + + + + John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/) + lodash.kebabcase + 4.1.1 + The lodash method `_.kebabCase` exported as a module. + + + MIT + + + pkg:npm/lodash.kebabcase@4.1.1?vcs_url=lodash/lodash + + + lodash/lodash + as detected from PackageJson property "repository" + + + https://lodash.com/ + as detected from PackageJson property "homepage" + + + + node_modules/lodash.kebabcase + + + + Athan Reines + svg-tags + 1.0.0 + List of standard SVG tags. + + + MIT + http://www.opensource.org/licenses/MIT + + + pkg:npm/svg-tags@1.0.0?vcs_url=git://github.com/element-io/svg-tags.git + + + git://github.com/element-io/svg-tags.git + as detected from PackageJson property "repository.url" + + + https://github.com/element-io/svg-tags/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/svg-tags + + + + luwanquan <luwanquan@f-road.com.cn> + @vue + babel-sugar-composition-api-inject-h + 1.4.0 + Babel syntactic sugar for h automatic injection for Vue JSX with @vue/composition-api + + + MIT + + + pkg:npm/%40vue/babel-sugar-composition-api-inject-h@1.4.0?vcs_url=https://github.com/vuejs/jsx/tree/master/packages/babel-sugar-composition-api-inject-h + + + https://github.com/vuejs/jsx/tree/master/packages/babel-sugar-composition-api-inject-h + as detected from PackageJson property "repository" + + + + node_modules/@vue/babel-sugar-composition-api-inject-h + + + + luwanquan <luwanquan@f-road.com.cn> + @vue + babel-sugar-composition-api-render-instance + 1.4.0 + Babel syntactic sugar for replaceing `this` with `getCurrentInstance()` in Vue JSX with @vue/composition-api + + + MIT + + + pkg:npm/%40vue/babel-sugar-composition-api-render-instance@1.4.0?vcs_url=https://github.com/vuejs/jsx/tree/master/packages/babel-sugar-composition-api-render-instance + + + https://github.com/vuejs/jsx/tree/master/packages/babel-sugar-composition-api-render-instance + as detected from PackageJson property "repository" + + + + node_modules/@vue/babel-sugar-composition-api-render-instance + + + + Nick Messing <dot.nick.dot.messing@gmail.com> + @vue + babel-sugar-functional-vue + 1.4.0 + Babel syntactic sugar for functional components + + + MIT + + + pkg:npm/%40vue/babel-sugar-functional-vue@1.4.0?vcs_url=https://github.com/vuejs/jsx/tree/master/packages/babel-sugar-functional-vue + + + https://github.com/vuejs/jsx/tree/master/packages/babel-sugar-functional-vue + as detected from PackageJson property "repository" + + + + node_modules/@vue/babel-sugar-functional-vue + + + + Nick Messing <dot.nick.dot.messing@gmail.com> + @vue + babel-sugar-inject-h + 1.4.0 + Babel syntactic sugar for h automatic injection for Vue JSX + + + MIT + + + pkg:npm/%40vue/babel-sugar-inject-h@1.4.0?vcs_url=https://github.com/vuejs/jsx/tree/master/packages/babel-sugar-inject-h + + + https://github.com/vuejs/jsx/tree/master/packages/babel-sugar-inject-h + as detected from PackageJson property "repository" + + + + node_modules/@vue/babel-sugar-inject-h + + + + Nick Messing <dot.nick.dot.messing@gmail.com> + @vue + babel-sugar-v-model + 1.4.0 + Babel syntactic sugar for v-model support in Vue JSX + + + MIT + + + pkg:npm/%40vue/babel-sugar-v-model@1.4.0?vcs_url=https://github.com/vuejs/jsx/tree/master/packages/babel-sugar-v-model + + + https://github.com/vuejs/jsx/tree/master/packages/babel-sugar-v-model + as detected from PackageJson property "repository" + + + + node_modules/@vue/babel-sugar-v-model + + + + Sindre Sorhus + camelcase + 5.3.1 + Convert a dash/dot/underscore/space separated string to camelCase or PascalCase: `foo-bar` -> `fooBar` + + + MIT + + + pkg:npm/camelcase@5.3.1?vcs_url=sindresorhus/camelcase + + + sindresorhus/camelcase + as detected from PackageJson property "repository" + + + + node_modules/camelcase + + + + Nick Messing <dot.nick.dot.messing@gmail.com> + @vue + babel-sugar-v-on + 1.4.0 + Babel syntactic sugar for v-model support in Vue JSX + + + MIT + + + pkg:npm/%40vue/babel-sugar-v-on@1.4.0?vcs_url=https://github.com/vuejs/jsx/tree/master/packages/babel-sugar-v-on + + + https://github.com/vuejs/jsx/tree/master/packages/babel-sugar-v-on + as detected from PackageJson property "repository" + + + + node_modules/@vue/babel-sugar-v-on + + + + Evan You + vue + 2.7.10 + Reactive, component-oriented view layer for modern web interfaces. + + + MIT + + + pkg:npm/vue@2.7.10?vcs_url=git+https://github.com/vuejs/vue.git + + + git+https://github.com/vuejs/vue.git + as detected from PackageJson property "repository.url" + + + https://github.com/vuejs/vue#readme + as detected from PackageJson property "homepage" + + + https://github.com/vuejs/vue/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/vue + + + + Jordan Harband + object.assign + 4.1.4 + ES6 spec-compliant Object.assign shim. From https://github.com/es-shims/es6-shim + + + MIT + + + pkg:npm/object.assign@4.1.4?vcs_url=git://github.com/ljharb/object.assign.git + + + git://github.com/ljharb/object.assign.git + as detected from PackageJson property "repository.url" + + + + node_modules/object.assign + + + + Tommy Leunen + babel-plugin-module-resolver + 3.2.0 + Module resolver plugin for Babel + + + MIT + + + pkg:npm/babel-plugin-module-resolver@3.2.0?vcs_url=https://github.com/tleunen/babel-plugin-module-resolver.git + + + https://github.com/tleunen/babel-plugin-module-resolver.git + as detected from PackageJson property "repository.url" + + + + node_modules/babel-plugin-module-resolver + + + + Tommy Leunen <tommy.leunen@gmail.com> (http://tommyleunen.com) + find-babel-config + 1.2.0 + Find the closest babel config projxd on a directory + + + MIT + + + pkg:npm/find-babel-config@1.2.0?vcs_url=https://github.com/tleunen/find-babel-config.git + + + https://github.com/tleunen/find-babel-config.git + as detected from PackageJson property "repository.url" + + + + + Aseem Kishore <aseem.kishore@gmail.com> + json5 + 0.5.1 + JSON for the ES5 era. + + + MIT + + + pkg:npm/json5@0.5.1?vcs_url=https://github.com/aseemk/json5.git + + + https://github.com/aseemk/json5.git + as detected from PackageJson property "repository.url" + + + http://json5.org/ + as detected from PackageJson property "homepage" + + + + node_modules/find-babel-config/node_modules/json5 + + + + + node_modules/find-babel-config + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + glob + 7.2.3 + a little globber + + + ISC + + + pkg:npm/glob@7.2.3?vcs_url=git://github.com/isaacs/node-glob.git + + + git://github.com/isaacs/node-glob.git + as detected from PackageJson property "repository.url" + + + + node_modules/glob + + + + Sindre Sorhus + pkg-up + 2.0.0 + Find the closest package.json file + + + MIT + + + pkg:npm/pkg-up@2.0.0?vcs_url=sindresorhus/pkg-up + + + sindresorhus/pkg-up + as detected from PackageJson property "repository" + + + + node_modules/pkg-up + + + + Sindre Sorhus + find-up + 2.1.0 + Find a file by walking up parent directories + + + MIT + + + pkg:npm/find-up@2.1.0?vcs_url=sindresorhus/find-up + + + sindresorhus/find-up + as detected from PackageJson property "repository" + + + + node_modules/find-up + + + + reselect + 3.0.1 + Selectors for Redux. + + + MIT + + + pkg:npm/reselect@3.0.1?vcs_url=https://github.com/reactjs/reselect.git + + + https://github.com/reactjs/reselect.git + as detected from PackageJson property "repository.url" + + + https://github.com/reactjs/reselect/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/reselect + + + + Evan You + @vue + cli-shared-utils + 3.12.1 + shared utilities for vue-cli packages + + + MIT + + + pkg:npm/%40vue/cli-shared-utils@3.12.1?vcs_url=git+https://github.com/vuejs/vue-cli.git#packages/@vue/cli-shared-utils + + + git+https://github.com/vuejs/vue-cli.git#packages/@vue/cli-shared-utils + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://github.com/vuejs/vue-cli/tree/dev/packages/@vue/cli-shared-utils#readme + as detected from PackageJson property "homepage" + + + https://github.com/vuejs/vue-cli/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/@vue/cli-shared-utils + + + + @hapi + joi + 15.1.1 + Object schema validation + + + BSD-3-Clause + + + pkg:npm/%40hapi/joi@15.1.1?vcs_url=git://github.com/hapijs/joi + + + git://github.com/hapijs/joi + as detected from PackageJson property "repository" + + + https://github.com/hapijs/joi + as detected from PackageJson property "homepage" + + + + node_modules/@hapi/joi + + + + @hapi + address + 2.1.4 + Email address and domain validation + + + BSD-3-Clause + + + pkg:npm/%40hapi/address@2.1.4?vcs_url=git://github.com/hapijs/address + + + git://github.com/hapijs/address + as detected from PackageJson property "repository" + + + + node_modules/@hapi/address + + + + @hapi + bourne + 1.3.2 + JSON parse with prototype poisoning protection + + + BSD-3-Clause + + + pkg:npm/%40hapi/bourne@1.3.2?vcs_url=git://github.com/hapijs/bourne + + + git://github.com/hapijs/bourne + as detected from PackageJson property "repository" + + + + node_modules/@hapi/bourne + + + + @hapi + hoek + 8.5.1 + General purpose node utilities + + + BSD-3-Clause + + + pkg:npm/%40hapi/hoek@8.5.1?vcs_url=git://github.com/hapijs/hoek + + + git://github.com/hapijs/hoek + as detected from PackageJson property "repository" + + + + node_modules/@hapi/hoek + + + + @hapi + topo + 3.1.6 + Topological sorting with grouping support + + + BSD-3-Clause + + + pkg:npm/%40hapi/topo@3.1.6?vcs_url=git://github.com/hapijs/topo + + + git://github.com/hapijs/topo + as detected from PackageJson property "repository" + + + + node_modules/@hapi/topo + + + + chalk + 2.4.2 + Terminal string styling done right + + + MIT + + + pkg:npm/chalk@2.4.2?vcs_url=chalk/chalk + + + chalk/chalk + as detected from PackageJson property "repository" + + + + node_modules/chalk + + + + Sindre Sorhus + execa + 1.0.0 + A better `child_process` + + + MIT + + + pkg:npm/execa@1.0.0?vcs_url=sindresorhus/execa + + + sindresorhus/execa + as detected from PackageJson property "repository" + + + + node_modules/execa + + + + Andre Cruz <andre@moxy.studio> + cross-spawn + 6.0.5 + Cross platform child_process#spawn and child_process#spawnSync + + + MIT + + + pkg:npm/cross-spawn@6.0.5?vcs_url=git@github.com:moxystudio/node-cross-spawn.git + + + https://github.com/moxystudio/node-cross-spawn + as detected from PackageJson property "homepage" + + + + + semver + 5.7.1 + The semantic version parser used by npm. + + + ISC + + + pkg:npm/semver@5.7.1?vcs_url=https://github.com/npm/node-semver + + + https://github.com/npm/node-semver + as detected from PackageJson property "repository" + + + + node_modules/cross-spawn/node_modules/semver + + + + + node_modules/cross-spawn + + + + Sindre Sorhus + get-stream + 4.1.0 + Get a stream as a string, buffer, or array + + + MIT + + + pkg:npm/get-stream@4.1.0?vcs_url=sindresorhus/get-stream + + + sindresorhus/get-stream + as detected from PackageJson property "repository" + + + + node_modules/get-stream + + + + Mathias Buus Madsen <mathiasbuus@gmail.com> + pump + 3.0.0 + pipe streams together and close all of them if one of them closes + + + MIT + + + pkg:npm/pump@3.0.0?vcs_url=git://github.com/mafintosh/pump.git + + + git://github.com/mafintosh/pump.git + as detected from PackageJson property "repository" + + + + node_modules/pump + + + + Mathias Buus <mathiasbuus@gmail.com> + end-of-stream + 1.4.4 + Call a callback when a readable/writable/duplex stream has completed or failed. + + + MIT + + + pkg:npm/end-of-stream@1.4.4?vcs_url=git://github.com/mafintosh/end-of-stream.git + + + git://github.com/mafintosh/end-of-stream.git + as detected from PackageJson property "repository.url" + + + https://github.com/mafintosh/end-of-stream + as detected from PackageJson property "homepage" + + + https://github.com/mafintosh/end-of-stream/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/end-of-stream + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + once + 1.4.0 + Run a function exactly one time + + + ISC + + + pkg:npm/once@1.4.0?vcs_url=git://github.com/isaacs/once + + + git://github.com/isaacs/once + as detected from PackageJson property "repository.url" + + + + node_modules/once + + + + Sindre Sorhus + is-stream + 1.1.0 + Check if something is a Node.js stream + + + MIT + + + pkg:npm/is-stream@1.1.0?vcs_url=sindresorhus/is-stream + + + sindresorhus/is-stream + as detected from PackageJson property "repository" + + + + node_modules/is-stream + + + + Sindre Sorhus + npm-run-path + 2.0.2 + Get your PATH prepended with locally installed binaries + + + MIT + + + pkg:npm/npm-run-path@2.0.2?vcs_url=sindresorhus/npm-run-path + + + sindresorhus/npm-run-path + as detected from PackageJson property "repository" + + + + node_modules/npm-run-path + + + + Sindre Sorhus + path-key + 2.0.1 + Get the PATH environment variable key cross-platform + + + MIT + + + pkg:npm/path-key@2.0.1?vcs_url=sindresorhus/path-key + + + sindresorhus/path-key + as detected from PackageJson property "repository" + + + + node_modules/path-key + + + + Sindre Sorhus + p-finally + 1.0.0 + `Promise#finally()` ponyfill - Invoked when the promise is settled regardless of outcome + + + MIT + + + pkg:npm/p-finally@1.0.0?vcs_url=sindresorhus/p-finally + + + sindresorhus/p-finally + as detected from PackageJson property "repository" + + + + node_modules/p-finally + + + + Ben Coe <ben@npmjs.com> + signal-exit + 3.0.7 + when you want to fire an event no matter how a process exits. + + + ISC + + + pkg:npm/signal-exit@3.0.7?vcs_url=https://github.com/tapjs/signal-exit.git + + + https://github.com/tapjs/signal-exit.git + as detected from PackageJson property "repository.url" + + + https://github.com/tapjs/signal-exit + as detected from PackageJson property "homepage" + + + https://github.com/tapjs/signal-exit/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/signal-exit + + + + Sindre Sorhus + strip-eof + 1.0.0 + Strip the End-Of-File (EOF) character from a string/buffer + + + MIT + + + pkg:npm/strip-eof@1.0.0?vcs_url=sindresorhus/strip-eof + + + sindresorhus/strip-eof + as detected from PackageJson property "repository" + + + + node_modules/strip-eof + + + + Evan You + launch-editor + 2.6.0 + launch editor from node.js + + + MIT + + + pkg:npm/launch-editor@2.6.0?vcs_url=git+https://github.com/yyx990803/launch-editor.git + + + git+https://github.com/yyx990803/launch-editor.git + as detected from PackageJson property "repository.url" + + + https://github.com/yyx990803/launch-editor#readme + as detected from PackageJson property "homepage" + + + https://github.com/yyx990803/launch-editor/issues + as detected from PackageJson property "bugs.url" + + + + + Alexey Raspopov + picocolors + 1.0.0 + The tiniest and the fastest library for terminal output formatting with ANSI colors + + + ISC + + + pkg:npm/picocolors@1.0.0?vcs_url=alexeyraspopov/picocolors + + + alexeyraspopov/picocolors + as detected from PackageJson property "repository" + + + + node_modules/launch-editor/node_modules/picocolors + + + + + node_modules/launch-editor + + + + James Halliday + shell-quote + 1.7.3 + quote and parse shell commands + + + MIT + + + pkg:npm/shell-quote@1.7.3?vcs_url=http://github.com/substack/node-shell-quote.git + + + http://github.com/substack/node-shell-quote.git + as detected from PackageJson property "repository.url" + + + https://github.com/substack/node-shell-quote + as detected from PackageJson property "homepage" + + + https://github.com/substack/node-shell-quote/issues + as detected from PackageJson property "bugs" + + + + node_modules/shell-quote + + + + Isaac Z. Schlueter <i@izs.me> + lru-cache + 5.1.1 + A cache object that deletes the least-recently-used items. + + + ISC + + + pkg:npm/lru-cache@5.1.1?vcs_url=git://github.com/isaacs/node-lru-cache.git + + + git://github.com/isaacs/node-lru-cache.git + as detected from PackageJson property "repository" + + + + node_modules/lru-cache + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + yallist + 3.1.1 + Yet Another Linked List + + + ISC + + + pkg:npm/yallist@3.1.1?vcs_url=git+https://github.com/isaacs/yallist.git + + + git+https://github.com/isaacs/yallist.git + as detected from PackageJson property "repository.url" + + + + node_modules/yallist + + + + Brandon Nozaki Miller + node-ipc + 9.2.1 + A nodejs module for local and remote Inter Process Communication (IPC), Neural Networking, and able to facilitate machine learning. + + + MIT + + + pkg:npm/node-ipc@9.2.1?vcs_url=https://github.com/RIAEvangelist/node-ipc.git + + + https://github.com/RIAEvangelist/node-ipc.git + as detected from PackageJson property "repository.url" + + + http://riaevangelist.github.io/node-ipc/ + as detected from PackageJson property "homepage" + + + https://github.com/RIAEvangelist/node-ipc/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/node-ipc + + + + Brandon Nozaki Miller + event-pubsub + 4.3.0 + Super light and fast Extensible PubSub events and EventEmitters for Node and the browser with support for ES6 by default, and ES5 versions for older verions of node and older IE/Safari versions. Easy for any developer level. No frills, just high speed pubsub events! + + + Unlicense + + + pkg:npm/event-pubsub@4.3.0?vcs_url=https://github.com/RIAEvangelist/event-pubsub.git + + + https://github.com/RIAEvangelist/event-pubsub.git + as detected from PackageJson property "repository.url" + + + https://github.com/RIAEvangelist/event-pubsub + as detected from PackageJson property "homepage" + + + https://github.com/RIAEvangelist/event-pubsub/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/event-pubsub + + + + Brandon Nozaki Miller + js-message + 1.0.7 + normalized JS Object and JSON message and event protocol for node.js, vanialla js, react.js, components, actions, stores and dispatchers + + + MIT + + + pkg:npm/js-message@1.0.7?vcs_url=git+https://github.com/RIAEvangelist/js-message.git + + + git+https://github.com/RIAEvangelist/js-message.git + as detected from PackageJson property "repository.url" + + + https://github.com/RIAEvangelist/js-message#readme + as detected from PackageJson property "homepage" + + + https://github.com/RIAEvangelist/js-message/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/js-message + + + + Brandon Nozaki Miller + js-queue + 2.0.2 + Simple JS queue with auto run for node and browsers + + + MIT + + + pkg:npm/js-queue@2.0.2?vcs_url=git+https://github.com/RIAEvangelist/js-queue.git + + + git+https://github.com/RIAEvangelist/js-queue.git + as detected from PackageJson property "repository.url" + + + https://github.com/RIAEvangelist/js-queue#readme + as detected from PackageJson property "homepage" + + + https://github.com/RIAEvangelist/js-queue/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/js-queue + + + + Brandon Nozaki Miller + easy-stack + 1.0.1 + Simple JS stack with auto run for node and browsers + + + MIT + + + pkg:npm/easy-stack@1.0.1?vcs_url=git+https://github.com/RIAEvangelist/easy-stack.git + + + git+https://github.com/RIAEvangelist/easy-stack.git + as detected from PackageJson property "repository.url" + + + https://github.com/RIAEvangelist/easy-stack#readme + as detected from PackageJson property "homepage" + + + https://github.com/RIAEvangelist/easy-stack/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/easy-stack + + + + Sindre Sorhus + open + 6.4.0 + Open stuff like URLs, files, executables. Cross-platform. + + + MIT + + + pkg:npm/open@6.4.0?vcs_url=sindresorhus/open + + + sindresorhus/open + as detected from PackageJson property "repository" + + + + + Sindre Sorhus + is-wsl + 1.1.0 + Check if the process is running inside Windows Subsystem for Linux (Bash on Windows) + + + MIT + + + pkg:npm/is-wsl@1.1.0?vcs_url=sindresorhus/is-wsl + + + sindresorhus/is-wsl + as detected from PackageJson property "repository" + + + + node_modules/open/node_modules/is-wsl + + + + + node_modules/open + + + + Sindre Sorhus + ora + 3.4.0 + Elegant terminal spinner + + + MIT + + + pkg:npm/ora@3.4.0?vcs_url=sindresorhus/ora + + + sindresorhus/ora + as detected from PackageJson property "repository" + + + + + Sindre Sorhus + strip-ansi + 5.2.0 + Strip ANSI escape codes from a string + + + MIT + + + pkg:npm/strip-ansi@5.2.0?vcs_url=chalk/strip-ansi + + + chalk/strip-ansi + as detected from PackageJson property "repository" + + + + node_modules/ora/node_modules/strip-ansi + + + + Sindre Sorhus + ansi-regex + 4.1.1 + Regular expression for matching ANSI escape codes + + + MIT + + + pkg:npm/ansi-regex@4.1.1?vcs_url=chalk/ansi-regex + + + chalk/ansi-regex + as detected from PackageJson property "repository" + + + + node_modules/ora/node_modules/ansi-regex + + + + + node_modules/ora + + + + Nicolai Kamenzky (https://github.com/analog-nico) + request-promise-native + 1.0.9 + The simplified HTTP request client 'request' with Promise support. Powered by native ES6 promises. + + + ISC + + + pkg:npm/request-promise-native@1.0.9?vcs_url=git+https://github.com/request/request-promise-native.git + + + git+https://github.com/request/request-promise-native.git + as detected from PackageJson property "repository.url" + + + https://github.com/request/request-promise-native#readme + as detected from PackageJson property "homepage" + + + https://github.com/request/request-promise-native/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/request-promise-native + + + + Nicolai Kamenzky (https://github.com/analog-nico) + request-promise-core + 1.1.4 + Core Promise support implementation for the simplified HTTP request client 'request'. + + + ISC + + + pkg:npm/request-promise-core@1.1.4?vcs_url=git+https://github.com/request/promise-core.git + + + git+https://github.com/request/promise-core.git + as detected from PackageJson property "repository.url" + + + https://github.com/request/promise-core#readme + as detected from PackageJson property "homepage" + + + https://github.com/request/promise-core/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/request-promise-core + + + + John-David Dalton <john.david.dalton@gmail.com> + lodash + 4.17.21 + Lodash modular utilities. + + + MIT + + + pkg:npm/lodash@4.17.21?vcs_url=lodash/lodash + + + lodash/lodash + as detected from PackageJson property "repository" + + + https://lodash.com/ + as detected from PackageJson property "homepage" + + + + node_modules/lodash + + + + Mikeal Rogers <mikeal.rogers@gmail.com> + request + 2.88.2 + Simplified HTTP request client. + + + Apache-2.0 + + + pkg:npm/request@2.88.2?vcs_url=https://github.com/request/request.git + + + https://github.com/request/request.git + as detected from PackageJson property "repository.url" + + + http://github.com/request/request/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/request + + + + Nicolai Kamenzky (https://github.com/analog-nico) + stealthy-require + 1.1.1 + The closest you can get to require something with bypassing the require cache + + + ISC + + + pkg:npm/stealthy-require@1.1.1?vcs_url=git+https://github.com/analog-nico/stealthy-require.git + + + git+https://github.com/analog-nico/stealthy-require.git + as detected from PackageJson property "repository.url" + + + https://github.com/analog-nico/stealthy-require#readme + as detected from PackageJson property "homepage" + + + https://github.com/analog-nico/stealthy-require/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/stealthy-require + + + + Jeremy Stashewsky + tough-cookie + 2.5.0 + RFC6265 Cookies and Cookie Jar for node.js + + + BSD-3-Clause + + + pkg:npm/tough-cookie@2.5.0?vcs_url=git://github.com/salesforce/tough-cookie.git + + + git://github.com/salesforce/tough-cookie.git + as detected from PackageJson property "repository.url" + + + https://github.com/salesforce/tough-cookie + as detected from PackageJson property "homepage" + + + https://github.com/salesforce/tough-cookie/issues + as detected from PackageJson property "bugs.url" + + + + + Mathias Bynens + punycode + 2.1.1 + A robust Punycode converter that fully complies to RFC 3492 and RFC 5891, and works on nearly all JavaScript platforms. + + + MIT + + + pkg:npm/punycode@2.1.1?vcs_url=https://github.com/bestiejs/punycode.js.git + + + https://github.com/bestiejs/punycode.js.git + as detected from PackageJson property "repository.url" + + + https://mths.be/punycode + as detected from PackageJson property "homepage" + + + https://github.com/bestiejs/punycode.js/issues + as detected from PackageJson property "bugs" + + + + node_modules/tough-cookie/node_modules/punycode + + + + + node_modules/tough-cookie + + + + Jordan Harband <ljharb@gmail.com> + string.prototype.padstart + 3.1.3 + ES2017 spec-compliant String.prototype.padStart shim. + + + MIT + + + pkg:npm/string.prototype.padstart@3.1.3?vcs_url=git://github.com/es-shims/String.prototype.padStart.git + + + git://github.com/es-shims/String.prototype.padStart.git + as detected from PackageJson property "repository.url" + + + + node_modules/string.prototype.padstart + + + + Jordan Harband <ljharb@gmail.com> + call-bind + 1.0.2 + Robustly `.call.bind()` a function + + + MIT + + + pkg:npm/call-bind@1.0.2?vcs_url=git+https://github.com/ljharb/call-bind.git + + + git+https://github.com/ljharb/call-bind.git + as detected from PackageJson property "repository.url" + + + https://github.com/ljharb/call-bind#readme + as detected from PackageJson property "homepage" + + + https://github.com/ljharb/call-bind/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/call-bind + + + + Jordan Harband <ljharb@gmail.com> + define-properties + 1.1.4 + Define multiple non-enumerable properties at once. Uses `Object.defineProperty` when available; falls back to standard assignment in older engines. + + + MIT + + + pkg:npm/define-properties@1.1.4?vcs_url=git://github.com/ljharb/define-properties.git + + + git://github.com/ljharb/define-properties.git + as detected from PackageJson property "repository.url" + + + + node_modules/define-properties + + + + Jordan Harband + es-abstract + 1.20.3 + ECMAScript spec abstract operations. + + + MIT + + + pkg:npm/es-abstract@1.20.3?vcs_url=git://github.com/ljharb/es-abstract.git + + + git://github.com/ljharb/es-abstract.git + as detected from PackageJson property "repository.url" + + + + node_modules/es-abstract + + + + Luis Couto <hello@luiscouto.pt> + babel-loader + 8.2.5 + babel module loader for webpack + + + MIT + + + pkg:npm/babel-loader@8.2.5?vcs_url=https://github.com/babel/babel-loader.git + + + https://github.com/babel/babel-loader.git + as detected from PackageJson property "repository.url" + + + https://github.com/babel/babel-loader + as detected from PackageJson property "homepage" + + + https://github.com/babel/babel-loader/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/babel-loader + + + + find-cache-dir + 3.3.2 + Finds the common standard cache directory + + + MIT + + + pkg:npm/find-cache-dir@3.3.2?vcs_url=avajs/find-cache-dir + + + avajs/find-cache-dir + as detected from PackageJson property "repository" + + + + node_modules/find-cache-dir + + + + James Halliday + commondir + 1.0.1 + compute the closest common parent for file paths + + + MIT + + + pkg:npm/commondir@1.0.1?vcs_url=http://github.com/substack/node-commondir.git + + + http://github.com/substack/node-commondir.git + as detected from PackageJson property "repository.url" + + + + node_modules/commondir + + + + Sindre Sorhus + make-dir + 3.1.0 + Make a directory and its parents if needed - Think `mkdir -p` + + + MIT + + + pkg:npm/make-dir@3.1.0?vcs_url=sindresorhus/make-dir + + + sindresorhus/make-dir + as detected from PackageJson property "repository" + + + + node_modules/make-dir + + + + Sindre Sorhus + pkg-dir + 4.2.0 + Find the root directory of a Node.js project or npm package + + + MIT + + + pkg:npm/pkg-dir@4.2.0?vcs_url=sindresorhus/pkg-dir + + + sindresorhus/pkg-dir + as detected from PackageJson property "repository" + + + + + Sindre Sorhus + find-up + 4.1.0 + Find a file or directory by walking up parent directories + + + MIT + + + pkg:npm/find-up@4.1.0?vcs_url=sindresorhus/find-up + + + sindresorhus/find-up + as detected from PackageJson property "repository" + + + + node_modules/pkg-dir/node_modules/find-up + + + + Sindre Sorhus + locate-path + 5.0.0 + Get the first path that exists on disk of multiple paths + + + MIT + + + pkg:npm/locate-path@5.0.0?vcs_url=sindresorhus/locate-path + + + sindresorhus/locate-path + as detected from PackageJson property "repository" + + + + node_modules/pkg-dir/node_modules/locate-path + + + + Sindre Sorhus + p-locate + 4.1.0 + Get the first fulfilled promise that satisfies the provided testing function + + + MIT + + + pkg:npm/p-locate@4.1.0?vcs_url=sindresorhus/p-locate + + + sindresorhus/p-locate + as detected from PackageJson property "repository" + + + + node_modules/pkg-dir/node_modules/p-locate + + + + Sindre Sorhus + p-limit + 2.3.0 + Run multiple promise-returning & async functions with limited concurrency + + + MIT + + + pkg:npm/p-limit@2.3.0?vcs_url=sindresorhus/p-limit + + + sindresorhus/p-limit + as detected from PackageJson property "repository" + + + + node_modules/pkg-dir/node_modules/p-limit + + + + Sindre Sorhus + p-try + 2.2.0 + `Start a promise chain + + + MIT + + + pkg:npm/p-try@2.2.0?vcs_url=sindresorhus/p-try + + + sindresorhus/p-try + as detected from PackageJson property "repository" + + + + node_modules/pkg-dir/node_modules/p-try + + + + Sindre Sorhus + path-exists + 4.0.0 + Check if a path exists + + + MIT + + + pkg:npm/path-exists@4.0.0?vcs_url=sindresorhus/path-exists + + + sindresorhus/path-exists + as detected from PackageJson property "repository" + + + + node_modules/pkg-dir/node_modules/path-exists + + + + + node_modules/pkg-dir + + + + Tobias Koppers @sokra + loader-utils + 2.0.2 + utils for webpack loaders + + + MIT + + + pkg:npm/loader-utils@2.0.2?vcs_url=https://github.com/webpack/loader-utils.git + + + https://github.com/webpack/loader-utils.git + as detected from PackageJson property "repository.url" + + + + node_modules/loader-utils + + + + Michael Mclaughlin + big.js + 5.2.2 + A small, fast, easy-to-use library for arbitrary-precision decimal arithmetic + + + MIT + + + pkg:npm/big.js@5.2.2?vcs_url=https://github.com/MikeMcl/big.js.git + + + https://github.com/MikeMcl/big.js.git + as detected from PackageJson property "repository.url" + + + https://github.com/MikeMcl/big.js/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/big.js + + + + Kiko Beats + emojis-list + 3.0.0 + Complete list of standard emojis. + + + MIT + + + pkg:npm/emojis-list@3.0.0?vcs_url=git+https://github.com/kikobeats/emojis-list.git + + + git+https://github.com/kikobeats/emojis-list.git + as detected from PackageJson property "repository.url" + + + https://nidecoc.io/Kikobeats/emojis-list + as detected from PackageJson property "homepage" + + + https://github.com/Kikobeats/emojis-list/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/emojis-list + + + + webpack Contrib (https://github.com/webpack-contrib) + schema-utils + 2.7.1 + webpack Validation Utils + + + MIT + + + pkg:npm/schema-utils@2.7.1?vcs_url=webpack/schema-utils + + + webpack/schema-utils + as detected from PackageJson property "repository" + + + https://github.com/webpack/schema-utils + as detected from PackageJson property "homepage" + + + https://github.com/webpack/schema-utils/issues + as detected from PackageJson property "bugs" + + + + node_modules/schema-utils + + + + @types + json-schema + 7.0.11 + TypeScript definitions for json-schema 4.0, 6.0 and + + + MIT + + + pkg:npm/%40types/json-schema@7.0.11?vcs_url=https://github.com/DefinitelyTyped/DefinitelyTyped.git#types/json-schema + + + https://github.com/DefinitelyTyped/DefinitelyTyped.git#types/json-schema + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/json-schema + as detected from PackageJson property "homepage" + + + + node_modules/@types/json-schema + + + + Evgeny Poberezkin + ajv-keywords + 3.5.2 + Custom JSON-Schema keywords for Ajv validator + + + MIT + + + pkg:npm/ajv-keywords@3.5.2?vcs_url=git+https://github.com/epoberezkin/ajv-keywords.git + + + git+https://github.com/epoberezkin/ajv-keywords.git + as detected from PackageJson property "repository.url" + + + https://github.com/epoberezkin/ajv-keywords#readme + as detected from PackageJson property "homepage" + + + https://github.com/epoberezkin/ajv-keywords/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/ajv-keywords + + + + Evgeny Poberezkin + ajv + 6.12.6 + Another JSON Schema Validator + + + MIT + + + pkg:npm/ajv@6.12.6?vcs_url=https://github.com/ajv-validator/ajv.git + + + https://github.com/ajv-validator/ajv.git + as detected from PackageJson property "repository.url" + + + https://github.com/ajv-validator/ajv + as detected from PackageJson property "homepage" + + + https://github.com/ajv-validator/ajv/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/ajv + + + + Tobias Koppers @sokra + webpack + 4.46.0 + Packs CommonJs/AMD modules for the browser. Allows to split your codeprojx 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. + + + MIT + + + pkg:npm/webpack@4.46.0?vcs_url=https://github.com/webpack/webpack.git + + + https://github.com/webpack/webpack.git + as detected from PackageJson property "repository.url" + + + https://github.com/webpack/webpack + as detected from PackageJson property "homepage" + + + + + Tobias Koppers @sokra + enhanced-resolve + 4.5.0 + Offers a async require.resolve function. It's highly configurable. + + + MIT + http://www.opensource.org/licenses/mit-license.php + + + pkg:npm/enhanced-resolve@4.5.0?vcs_url=git://github.com/webpack/enhanced-resolve.git + + + git://github.com/webpack/enhanced-resolve.git + as detected from PackageJson property "repository.url" + + + http://github.com/webpack/enhanced-resolve + as detected from PackageJson property "homepage" + + + + + Tobias Koppers @sokra + memory-fs + 0.5.0 + A simple in-memory filesystem. Holds data in a javascript object. + + + MIT + + + pkg:npm/memory-fs@0.5.0?vcs_url=https://github.com/webpack/memory-fs.git + + + https://github.com/webpack/memory-fs.git + as detected from PackageJson property "repository.url" + + + https://github.com/webpack/memory-fs + as detected from PackageJson property "homepage" + + + https://github.com/webpack/memory-fs/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/webpack/node_modules/enhanced-resolve/node_modules/memory-fs + + + + + node_modules/webpack/node_modules/enhanced-resolve + + + + Tobias Koppers @sokra + tapable + 1.1.3 + Just a little module for plugins. + + + MIT + + + pkg:npm/tapable@1.1.3?vcs_url=http://github.com/webpack/tapable.git + + + http://github.com/webpack/tapable.git + as detected from PackageJson property "repository.url" + + + https://github.com/webpack/tapable + as detected from PackageJson property "homepage" + + + + node_modules/webpack/node_modules/tapable + + + + Tobias Koppers @sokra + loader-utils + 1.4.0 + utils for webpack loaders + + + MIT + + + pkg:npm/loader-utils@1.4.0?vcs_url=https://github.com/webpack/loader-utils.git + + + https://github.com/webpack/loader-utils.git + as detected from PackageJson property "repository.url" + + + + node_modules/webpack/node_modules/loader-utils + + + + Aseem Kishore <aseem.kishore@gmail.com> + json5 + 1.0.1 + JSON for humans. + + + MIT + + + pkg:npm/json5@1.0.1?vcs_url=git+https://github.com/json5/json5.git + + + git+https://github.com/json5/json5.git + as detected from PackageJson property "repository.url" + + + http://json5.org/ + as detected from PackageJson property "homepage" + + + https://github.com/json5/json5/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/webpack/node_modules/json5 + + + + Tobias Koppers @sokra + memory-fs + 0.4.1 + A simple in-memory filesystem. Holds data in a javascript object. + + + MIT + + + pkg:npm/memory-fs@0.4.1?vcs_url=https://github.com/webpack/memory-fs.git + + + https://github.com/webpack/memory-fs.git + as detected from PackageJson property "repository.url" + + + https://github.com/webpack/memory-fs + as detected from PackageJson property "homepage" + + + https://github.com/webpack/memory-fs/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/webpack/node_modules/memory-fs + + + + webpack Contrib (https://github.com/webpack-contrib) + schema-utils + 1.0.0 + webpack Validation Utils + + + MIT + + + pkg:npm/schema-utils@1.0.0?vcs_url=https://github.com/webpack-contrib/schema-utils + + + https://github.com/webpack-contrib/schema-utils + as detected from PackageJson property "repository" + + + https://github.com/webpack-contrib/schema-utils + as detected from PackageJson property "homepage" + + + https://github.com/webpack-contrib/schema-utils/issues + as detected from PackageJson property "bugs" + + + + node_modules/webpack/node_modules/schema-utils + + + + + node_modules/webpack + + + + Sven Sauleau + @webassemblyjs + ast + 1.9.0 + AST utils for webassemblyjs + + + MIT + + + pkg:npm/%40webassemblyjs/ast@1.9.0?vcs_url=https://github.com/xtuc/webassemblyjs.git + + + https://github.com/xtuc/webassemblyjs.git + as detected from PackageJson property "repository.url" + + + + node_modules/@webassemblyjs/ast + + + + Sven Sauleau + @webassemblyjs + helper-module-context + 1.9.0 + + + MIT + + + pkg:npm/%40webassemblyjs/helper-module-context@1.9.0?vcs_url=https://github.com/xtuc/webassemblyjs.git + + + https://github.com/xtuc/webassemblyjs.git + as detected from PackageJson property "repository.url" + + + + node_modules/@webassemblyjs/helper-module-context + + + + Sven Sauleau + @webassemblyjs + helper-wasm-bytecode + 1.9.0 + WASM's Bytecode constants + + + MIT + + + pkg:npm/%40webassemblyjs/helper-wasm-bytecode@1.9.0?vcs_url=https://github.com/xtuc/webassemblyjs.git + + + https://github.com/xtuc/webassemblyjs.git + as detected from PackageJson property "repository.url" + + + + node_modules/@webassemblyjs/helper-wasm-bytecode + + + + Sven Sauleau + @webassemblyjs + wast-parser + 1.9.0 + WebAssembly text format parser + + + MIT + + + pkg:npm/%40webassemblyjs/wast-parser@1.9.0?vcs_url=https://github.com/xtuc/webassemblyjs.git + + + https://github.com/xtuc/webassemblyjs.git + as detected from PackageJson property "repository.url" + + + + node_modules/@webassemblyjs/wast-parser + + + + Mauro Bringolf + @webassemblyjs + floating-point-hex-parser + 1.9.0 + A function to parse floating point hexadecimal strings as defined by the WebAssembly specification + + + MIT + + + pkg:npm/%40webassemblyjs/floating-point-hex-parser@1.9.0?vcs_url=https://github.com/xtuc/webassemblyjs.git + + + https://github.com/xtuc/webassemblyjs.git + as detected from PackageJson property "repository.url" + + + + node_modules/@webassemblyjs/floating-point-hex-parser + + + + Sven Sauleau + @webassemblyjs + helper-api-error + 1.9.0 + Common API errors + + + MIT + + + pkg:npm/%40webassemblyjs/helper-api-error@1.9.0 + + node_modules/@webassemblyjs/helper-api-error + + + + Sven Sauleau + @webassemblyjs + helper-code-frame + 1.9.0 + + + MIT + + + pkg:npm/%40webassemblyjs/helper-code-frame@1.9.0?vcs_url=https://github.com/xtuc/webassemblyjs.git + + + https://github.com/xtuc/webassemblyjs.git + as detected from PackageJson property "repository.url" + + + + node_modules/@webassemblyjs/helper-code-frame + + + + Sven Sauleau + @webassemblyjs + wast-printer + 1.9.0 + WebAssembly text format printer + + + MIT + + + pkg:npm/%40webassemblyjs/wast-printer@1.9.0?vcs_url=https://github.com/xtuc/webassemblyjs.git + + + https://github.com/xtuc/webassemblyjs.git + as detected from PackageJson property "repository.url" + + + + node_modules/@webassemblyjs/wast-printer + + + + Mauro Bringolf + @webassemblyjs + helper-fsm + 1.9.0 + FSM implementation + + + ISC + + + pkg:npm/%40webassemblyjs/helper-fsm@1.9.0 + + node_modules/@webassemblyjs/helper-fsm + + + + Daniel Wirtz <dcode@dcode.io> + @xtuc + long + 4.2.2 + A Long class for representing a 64-bit two's-complement integer value. + + + Apache-2.0 + + + pkg:npm/%40xtuc/long@4.2.2?vcs_url=https://github.com/dcodeIO/long.js.git + + + https://github.com/dcodeIO/long.js.git + as detected from PackageJson property "repository.url" + + + https://github.com/dcodeIO/long.js/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/@xtuc/long + + + + Sven Sauleau + @webassemblyjs + wasm-edit + 1.9.0 + + + MIT + + + pkg:npm/%40webassemblyjs/wasm-edit@1.9.0?vcs_url=https://github.com/xtuc/webassemblyjs.git + + + https://github.com/xtuc/webassemblyjs.git + as detected from PackageJson property "repository.url" + + + + node_modules/@webassemblyjs/wasm-edit + + + + Sven Sauleau + @webassemblyjs + helper-buffer + 1.9.0 + Buffer manipulation utility + + + MIT + + + pkg:npm/%40webassemblyjs/helper-buffer@1.9.0?vcs_url=https://github.com/xtuc/webassemblyjs.git + + + https://github.com/xtuc/webassemblyjs.git + as detected from PackageJson property "repository.url" + + + + node_modules/@webassemblyjs/helper-buffer + + + + Sven Sauleau + @webassemblyjs + helper-wasm-section + 1.9.0 + + + MIT + + + pkg:npm/%40webassemblyjs/helper-wasm-section@1.9.0?vcs_url=https://github.com/xtuc/webassemblyjs.git + + + https://github.com/xtuc/webassemblyjs.git + as detected from PackageJson property "repository.url" + + + + node_modules/@webassemblyjs/helper-wasm-section + + + + Sven Sauleau + @webassemblyjs + wasm-gen + 1.9.0 + WebAssembly binary format printer + + + MIT + + + pkg:npm/%40webassemblyjs/wasm-gen@1.9.0?vcs_url=https://github.com/xtuc/webassemblyjs.git + + + https://github.com/xtuc/webassemblyjs.git + as detected from PackageJson property "repository.url" + + + + node_modules/@webassemblyjs/wasm-gen + + + + @webassemblyjs + ieee754 + 1.9.0 + IEEE754 decoder and encoder + + + MIT + + + pkg:npm/%40webassemblyjs/ieee754@1.9.0 + + node_modules/@webassemblyjs/ieee754 + + + + @webassemblyjs + leb128 + 1.9.0 + LEB128 decoder and encoder + + + MIT + + + pkg:npm/%40webassemblyjs/leb128@1.9.0 + + node_modules/@webassemblyjs/leb128 + + + + Sven Sauleau + @webassemblyjs + utf8 + 1.9.0 + UTF8 encoder/decoder for WASM + + + MIT + + + pkg:npm/%40webassemblyjs/utf8@1.9.0?vcs_url=https://github.com/xtuc/webassemblyjs.git + + + https://github.com/xtuc/webassemblyjs.git + as detected from PackageJson property "repository.url" + + + + node_modules/@webassemblyjs/utf8 + + + + Sven Sauleau + @webassemblyjs + wasm-opt + 1.9.0 + + + MIT + + + pkg:npm/%40webassemblyjs/wasm-opt@1.9.0?vcs_url=https://github.com/xtuc/webassemblyjs.git + + + https://github.com/xtuc/webassemblyjs.git + as detected from PackageJson property "repository.url" + + + + node_modules/@webassemblyjs/wasm-opt + + + + Sven Sauleau + @webassemblyjs + wasm-parser + 1.9.0 + WebAssembly binary format parser + + + MIT + + + pkg:npm/%40webassemblyjs/wasm-parser@1.9.0?vcs_url=https://github.com/xtuc/webassemblyjs.git + + + https://github.com/xtuc/webassemblyjs.git + as detected from PackageJson property "repository.url" + + + + node_modules/@webassemblyjs/wasm-parser + + + + Feross Aboukhadijeh + @xtuc + ieee754 + 1.2.0 + Read/write IEEE754 floating point numbers from/to a Buffer or array-like object + + + BSD-3-Clause + + + pkg:npm/%40xtuc/ieee754@1.2.0?vcs_url=git://github.com/feross/ieee754.git + + + git://github.com/feross/ieee754.git + as detected from PackageJson property "repository.url" + + + + node_modules/@xtuc/ieee754 + + + + acorn + 6.4.2 + ECMAScript parser + + + MIT + + + pkg:npm/acorn@6.4.2?vcs_url=https://github.com/acornjs/acorn.git + + + https://github.com/acornjs/acorn.git + as detected from PackageJson property "repository.url" + + + https://github.com/acornjs/acorn + as detected from PackageJson property "homepage" + + + + node_modules/acorn + + + + Trent Mick, Sam Saccone + chrome-trace-event + 1.0.3 + A library to create a trace of your node app per Google's Trace Event format. + + + MIT + + + pkg:npm/chrome-trace-event@1.0.3?vcs_url=github:samccone/chrome-trace-event + + + github:samccone/chrome-trace-event + as detected from PackageJson property "repository.url" + + + + node_modules/chrome-trace-event + + + + graceful-fs + 4.2.10 + A drop-in replacement for fs, making various improvements. + + + ISC + + + pkg:npm/graceful-fs@4.2.10?vcs_url=https://github.com/isaacs/node-graceful-fs + + + https://github.com/isaacs/node-graceful-fs + as detected from PackageJson property "repository.url" + + + + node_modules/graceful-fs + + + + errno + 0.1.8 + libuv errno details exposed + + + MIT + + + pkg:npm/errno@0.1.8?vcs_url=https://github.com/rvagg/node-errno.git + + + https://github.com/rvagg/node-errno.git + as detected from PackageJson property "repository.url" + + + + node_modules/errno + + + + readable-stream + 2.3.7 + Streams3, a user-land copy of the stream library from Node.js + + + MIT + + + pkg:npm/readable-stream@2.3.7?vcs_url=git://github.com/nodejs/readable-stream + + + git://github.com/nodejs/readable-stream + as detected from PackageJson property "repository.url" + + + + + string_decoder + 1.1.1 + The string_decoder module from Node core + + + MIT + + + pkg:npm/string_decoder@1.1.1?vcs_url=git://github.com/nodejs/string_decoder.git + + + git://github.com/nodejs/string_decoder.git + as detected from PackageJson property "repository.url" + + + https://github.com/nodejs/string_decoder + as detected from PackageJson property "homepage" + + + + node_modules/readable-stream/node_modules/string_decoder + + + + + node_modules/readable-stream + + + + eslint-scope + 4.0.3 + ECMAScript scope analyzer for ESLint + + + BSD-2-Clause + + + pkg:npm/eslint-scope@4.0.3?vcs_url=eslint/eslint-scope + + + eslint/eslint-scope + as detected from PackageJson property "repository" + + + http://github.com/eslint/eslint-scope + as detected from PackageJson property "homepage" + + + https://github.com/eslint/eslint-scope/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/eslint-scope + + + + Kat Marchan + json-parse-better-errors + 1.0.2 + JSON.parse with context information on error + + + MIT + + + pkg:npm/json-parse-better-errors@1.0.2?vcs_url=https://github.com/zkat/json-parse-better-errors + + + https://github.com/zkat/json-parse-better-errors + as detected from PackageJson property "repository" + + + + node_modules/json-parse-better-errors + + + + Tobias Koppers @sokra + loader-runner + 2.4.0 + Runs (webpack) loaders + + + MIT + + + pkg:npm/loader-runner@2.4.0?vcs_url=git+https://github.com/webpack/loader-runner.git + + + git+https://github.com/webpack/loader-runner.git + as detected from PackageJson property "repository.url" + + + https://github.com/webpack/loader-runner#readme + as detected from PackageJson property "homepage" + + + https://github.com/webpack/loader-runner/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/loader-runner + + + + James Halliday + minimist + 1.2.6 + parse argument options + + + MIT + + + pkg:npm/minimist@1.2.6?vcs_url=git://github.com/substack/minimist.git + + + git://github.com/substack/minimist.git + as detected from PackageJson property "repository.url" + + + https://github.com/substack/minimist + as detected from PackageJson property "homepage" + + + + node_modules/minimist + + + + Rod Vagg <rod@vagg.org> (https://github.com/rvagg) + prr + 1.0.1 + A better Object.defineProperty() + + + MIT + + + pkg:npm/prr@1.0.1?vcs_url=https://github.com/rvagg/prr.git + + + https://github.com/rvagg/prr.git + as detected from PackageJson property "repository.url" + + + https://github.com/rvagg/prr + as detected from PackageJson property "homepage" + + + + node_modules/prr + + + + Jon Schlinkert (https://github.com/jonschlinkert) + micromatch + 3.1.10 + Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch. + + + MIT + + + pkg:npm/micromatch@3.1.10?vcs_url=micromatch/micromatch + + + micromatch/micromatch + as detected from PackageJson property "repository" + + + https://github.com/micromatch/micromatch + as detected from PackageJson property "homepage" + + + https://github.com/micromatch/micromatch/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/micromatch + + + + Jon Schlinkert (https://github.com/jonschlinkert) + arr-diff + 4.0.0 + Returns an array with only the unique values from the first array, by excluding all values from additional arrays using strict equality for comparisons. + + + MIT + + + pkg:npm/arr-diff@4.0.0?vcs_url=jonschlinkert/arr-diff + + + jonschlinkert/arr-diff + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/arr-diff + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/arr-diff/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/arr-diff + + + + Jon Schlinkert (https://github.com/jonschlinkert) + array-unique + 0.3.2 + Remove duplicate values from an array. Fastest ES5 implementation. + + + MIT + + + pkg:npm/array-unique@0.3.2?vcs_url=jonschlinkert/array-unique + + + jonschlinkert/array-unique + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/array-unique + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/array-unique/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/array-unique + + + + Jon Schlinkert (https://github.com/jonschlinkert) + braces + 2.3.2 + 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. + + + MIT + + + pkg:npm/braces@2.3.2?vcs_url=micromatch/braces + + + micromatch/braces + as detected from PackageJson property "repository" + + + https://github.com/micromatch/braces + as detected from PackageJson property "homepage" + + + https://github.com/micromatch/braces/issues + as detected from PackageJson property "bugs.url" + + + + + Jon Schlinkert (https://github.com/jonschlinkert) + extend-shallow + 2.0.1 + Extend an object with the properties of additional objects. node.js/javascript util. + + + MIT + + + pkg:npm/extend-shallow@2.0.1?vcs_url=jonschlinkert/extend-shallow + + + jonschlinkert/extend-shallow + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/extend-shallow + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/extend-shallow/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/braces/node_modules/extend-shallow + + + + Jon Schlinkert (https://github.com/jonschlinkert) + is-extendable + 0.1.1 + 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?" + + + MIT + + + pkg:npm/is-extendable@0.1.1?vcs_url=jonschlinkert/is-extendable + + + jonschlinkert/is-extendable + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-extendable + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-extendable/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/braces/node_modules/is-extendable + + + + + node_modules/braces + + + + Jon Schlinkert (https://github.com/jonschlinkert) + arr-flatten + 1.1.0 + Recursively flatten an array or arrays. + + + MIT + + + pkg:npm/arr-flatten@1.1.0?vcs_url=jonschlinkert/arr-flatten + + + jonschlinkert/arr-flatten + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/arr-flatten + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/arr-flatten/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/arr-flatten + + + + Jon Schlinkert (https://github.com/jonschlinkert) + fill-range + 4.0.0 + 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` + + + MIT + + + pkg:npm/fill-range@4.0.0?vcs_url=jonschlinkert/fill-range + + + jonschlinkert/fill-range + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/fill-range + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/fill-range/issues + as detected from PackageJson property "bugs.url" + + + + + Jon Schlinkert (https://github.com/jonschlinkert) + extend-shallow + 2.0.1 + Extend an object with the properties of additional objects. node.js/javascript util. + + + MIT + + + pkg:npm/extend-shallow@2.0.1?vcs_url=jonschlinkert/extend-shallow + + + jonschlinkert/extend-shallow + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/extend-shallow + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/extend-shallow/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/fill-range/node_modules/extend-shallow + + + + Jon Schlinkert (https://github.com/jonschlinkert) + is-extendable + 0.1.1 + 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?" + + + MIT + + + pkg:npm/is-extendable@0.1.1?vcs_url=jonschlinkert/is-extendable + + + jonschlinkert/is-extendable + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-extendable + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-extendable/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/fill-range/node_modules/is-extendable + + + + + node_modules/fill-range + + + + Jon Schlinkert (https://github.com/jonschlinkert) + is-number + 3.0.0 + Returns true if the value is a number. comprehensive tests. + + + MIT + + + pkg:npm/is-number@3.0.0?vcs_url=jonschlinkert/is-number + + + jonschlinkert/is-number + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-number + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-number/issues + as detected from PackageJson property "bugs.url" + + + + + Jon Schlinkert (https://github.com/jonschlinkert) + kind-of + 3.2.2 + Get the native type of a value. + + + MIT + + + pkg:npm/kind-of@3.2.2?vcs_url=jonschlinkert/kind-of + + + jonschlinkert/kind-of + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/kind-of + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/kind-of/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/is-number/node_modules/kind-of + + + + + node_modules/is-number + + + + Feross Aboukhadijeh + is-buffer + 1.1.6 + Determine if an object is a Buffer + + + MIT + + + pkg:npm/is-buffer@1.1.6?vcs_url=git://github.com/feross/is-buffer.git + + + git://github.com/feross/is-buffer.git + as detected from PackageJson property "repository.url" + + + https://github.com/feross/is-buffer/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/is-buffer + + + + Jon Schlinkert (http://github.com/jonschlinkert) + repeat-string + 1.6.1 + Repeat the given string n times. Fastest implementation for repeating a string. + + + MIT + + + pkg:npm/repeat-string@1.6.1?vcs_url=jonschlinkert/repeat-string + + + jonschlinkert/repeat-string + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/repeat-string + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/repeat-string/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/repeat-string + + + + Jon Schlinkert (https://github.com/jonschlinkert) + to-regex-range + 2.1.1 + Pass two numbers, get a regex-compatible source string for matching ranges. Validated against more than 2.78 million test assertions. + + + MIT + + + pkg:npm/to-regex-range@2.1.1?vcs_url=micromatch/to-regex-range + + + micromatch/to-regex-range + as detected from PackageJson property "repository" + + + https://github.com/micromatch/to-regex-range + as detected from PackageJson property "homepage" + + + https://github.com/micromatch/to-regex-range/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/to-regex-range + + + + Jon Schlinkert (https://github.com/jonschlinkert) + isobject + 3.0.1 + Returns true if the value is an object and not an array or null. + + + MIT + + + pkg:npm/isobject@3.0.1?vcs_url=jonschlinkert/isobject + + + jonschlinkert/isobject + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/isobject + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/isobject/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/isobject + + + + Jon Schlinkert (https://github.com/jonschlinkert) + repeat-element + 1.1.4 + Create an array by repeating the given value n times. + + + MIT + + + pkg:npm/repeat-element@1.1.4?vcs_url=jonschlinkert/repeat-element + + + jonschlinkert/repeat-element + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/repeat-element + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/repeat-element/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/repeat-element + + + + Jon Schlinkert (https://github.com/jonschlinkert) + snapdragon-node + 2.1.1 + Snapdragon utility for creating a new AST node in custom code, such as plugins. + + + MIT + + + pkg:npm/snapdragon-node@2.1.1?vcs_url=jonschlinkert/snapdragon-node + + + jonschlinkert/snapdragon-node + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/snapdragon-node + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/snapdragon-node/issues + as detected from PackageJson property "bugs.url" + + + + + Jon Schlinkert (https://github.com/jonschlinkert) + define-property + 1.0.0 + Define a non-enumerable property on an object. + + + MIT + + + pkg:npm/define-property@1.0.0?vcs_url=jonschlinkert/define-property + + + jonschlinkert/define-property + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/define-property + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/define-property/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/snapdragon-node/node_modules/define-property + + + + + node_modules/snapdragon-node + + + + Jon Schlinkert (https://github.com/jonschlinkert) + is-descriptor + 1.0.2 + Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for data descriptors and accessor descriptors. + + + MIT + + + pkg:npm/is-descriptor@1.0.2?vcs_url=jonschlinkert/is-descriptor + + + jonschlinkert/is-descriptor + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-descriptor + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-descriptor/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/is-descriptor + + + + Jon Schlinkert (https://github.com/jonschlinkert) + snapdragon-util + 3.0.1 + Utilities for the snapdragon parser/compiler. + + + MIT + + + pkg:npm/snapdragon-util@3.0.1?vcs_url=jonschlinkert/snapdragon-util + + + jonschlinkert/snapdragon-util + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/snapdragon-util + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/snapdragon-util/issues + as detected from PackageJson property "bugs.url" + + + + + Jon Schlinkert (https://github.com/jonschlinkert) + kind-of + 3.2.2 + Get the native type of a value. + + + MIT + + + pkg:npm/kind-of@3.2.2?vcs_url=jonschlinkert/kind-of + + + jonschlinkert/kind-of + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/kind-of + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/kind-of/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/snapdragon-util/node_modules/kind-of + + + + + node_modules/snapdragon-util + + + + Jon Schlinkert (https://github.com/jonschlinkert) + snapdragon + 0.8.2 + Fast, pluggable and easy-to-use parser-renderer factory. + + + MIT + + + pkg:npm/snapdragon@0.8.2?vcs_url=jonschlinkert/snapdragon + + + jonschlinkert/snapdragon + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/snapdragon + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/snapdragon/issues + as detected from PackageJson property "bugs.url" + + + + + TJ Holowaychuk <tj@vision-media.ca> + debug + 2.6.9 + small debugging utility + + + MIT + + + pkg:npm/debug@2.6.9?vcs_url=git://github.com/visionmedia/debug.git + + + git://github.com/visionmedia/debug.git + as detected from PackageJson property "repository.url" + + + + node_modules/snapdragon/node_modules/debug + + + + ms + 2.0.0 + Tiny milisecond conversion utility + + + MIT + + + pkg:npm/ms@2.0.0?vcs_url=zeit/ms + + + zeit/ms + as detected from PackageJson property "repository" + + + + node_modules/snapdragon/node_modules/ms + + + + Jon Schlinkert (https://github.com/jonschlinkert) + define-property + 0.2.5 + Define a non-enumerable property on an object. + + + MIT + + + pkg:npm/define-property@0.2.5?vcs_url=jonschlinkert/define-property + + + jonschlinkert/define-property + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/define-property + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/define-property/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/snapdragon/node_modules/define-property + + + + Jon Schlinkert (https://github.com/jonschlinkert) + is-descriptor + 0.1.6 + Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for data descriptors and accessor descriptors. + + + MIT + + + pkg:npm/is-descriptor@0.1.6?vcs_url=jonschlinkert/is-descriptor + + + jonschlinkert/is-descriptor + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-descriptor + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-descriptor/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/snapdragon/node_modules/is-descriptor + + + + Jon Schlinkert (https://github.com/jonschlinkert) + is-accessor-descriptor + 0.1.6 + Returns true if a value has the characteristics of a valid JavaScript accessor descriptor. + + + MIT + + + pkg:npm/is-accessor-descriptor@0.1.6?vcs_url=jonschlinkert/is-accessor-descriptor + + + jonschlinkert/is-accessor-descriptor + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-accessor-descriptor + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-accessor-descriptor/issues + as detected from PackageJson property "bugs.url" + + + + + Jon Schlinkert (https://github.com/jonschlinkert) + kind-of + 3.2.2 + Get the native type of a value. + + + MIT + + + pkg:npm/kind-of@3.2.2?vcs_url=jonschlinkert/kind-of + + + jonschlinkert/kind-of + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/kind-of + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/kind-of/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/snapdragon/node_modules/is-accessor-descriptor/node_modules/kind-of + + + + + node_modules/snapdragon/node_modules/is-accessor-descriptor + + + + Jon Schlinkert (https://github.com/jonschlinkert) + is-data-descriptor + 0.1.4 + Returns true if a value has the characteristics of a valid JavaScript data descriptor. + + + MIT + + + pkg:npm/is-data-descriptor@0.1.4?vcs_url=jonschlinkert/is-data-descriptor + + + jonschlinkert/is-data-descriptor + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-data-descriptor + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-data-descriptor/issues + as detected from PackageJson property "bugs.url" + + + + + Jon Schlinkert (https://github.com/jonschlinkert) + kind-of + 3.2.2 + Get the native type of a value. + + + MIT + + + pkg:npm/kind-of@3.2.2?vcs_url=jonschlinkert/kind-of + + + jonschlinkert/kind-of + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/kind-of + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/kind-of/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/snapdragon/node_modules/is-data-descriptor/node_modules/kind-of + + + + + node_modules/snapdragon/node_modules/is-data-descriptor + + + + Jon Schlinkert (https://github.com/jonschlinkert) + kind-of + 5.1.0 + Get the native type of a value. + + + MIT + + + pkg:npm/kind-of@5.1.0?vcs_url=jonschlinkert/kind-of + + + jonschlinkert/kind-of + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/kind-of + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/kind-of/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/snapdragon/node_modules/kind-of + + + + Jon Schlinkert (https://github.com/jonschlinkert) + extend-shallow + 2.0.1 + Extend an object with the properties of additional objects. node.js/javascript util. + + + MIT + + + pkg:npm/extend-shallow@2.0.1?vcs_url=jonschlinkert/extend-shallow + + + jonschlinkert/extend-shallow + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/extend-shallow + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/extend-shallow/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/snapdragon/node_modules/extend-shallow + + + + Jon Schlinkert (https://github.com/jonschlinkert) + is-extendable + 0.1.1 + 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?" + + + MIT + + + pkg:npm/is-extendable@0.1.1?vcs_url=jonschlinkert/is-extendable + + + jonschlinkert/is-extendable + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-extendable + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-extendable/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/snapdragon/node_modules/is-extendable + + + + Nick Fitzgerald <nfitzgerald@mozilla.com> + source-map + 0.5.7 + Generates and consumes source maps + + + BSD-3-Clause + + + pkg:npm/source-map@0.5.7?vcs_url=http://github.com/mozilla/source-map.git + + + http://github.com/mozilla/source-map.git + as detected from PackageJson property "repository.url" + + + https://github.com/mozilla/source-map + as detected from PackageJson property "homepage" + + + + node_modules/snapdragon/node_modules/source-map + + + + + node_modules/snapdragon + + + + Jon Schlinkert (https://github.com/jonschlinkert) + split-string + 3.1.0 + Split a string on a character except when the character is escaped. + + + MIT + + + pkg:npm/split-string@3.1.0?vcs_url=jonschlinkert/split-string + + + jonschlinkert/split-string + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/split-string + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/split-string/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/split-string + + + + Jon Schlinkert (https://github.com/jonschlinkert) + extend-shallow + 3.0.2 + Extend an object with the properties of additional objects. node.js/javascript util. + + + MIT + + + pkg:npm/extend-shallow@3.0.2?vcs_url=jonschlinkert/extend-shallow + + + jonschlinkert/extend-shallow + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/extend-shallow + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/extend-shallow/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/extend-shallow + + + + Jon Schlinkert (https://github.com/jonschlinkert) + to-regex + 3.0.2 + Generate a regex from a string or array of strings. + + + MIT + + + pkg:npm/to-regex@3.0.2?vcs_url=jonschlinkert/to-regex + + + jonschlinkert/to-regex + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/to-regex + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/to-regex/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/to-regex + + + + Jon Schlinkert (https://github.com/jonschlinkert) + define-property + 2.0.2 + Define a non-enumerable property on an object. Uses Reflect.defineProperty when available, otherwise Object.defineProperty. + + + MIT + + + pkg:npm/define-property@2.0.2?vcs_url=jonschlinkert/define-property + + + jonschlinkert/define-property + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/define-property + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/define-property/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/define-property + + + + Jon Schlinkert (https://github.com/jonschlinkert) + is-accessor-descriptor + 1.0.0 + Returns true if a value has the characteristics of a valid JavaScript accessor descriptor. + + + MIT + + + pkg:npm/is-accessor-descriptor@1.0.0?vcs_url=jonschlinkert/is-accessor-descriptor + + + jonschlinkert/is-accessor-descriptor + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-accessor-descriptor + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-accessor-descriptor/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/is-accessor-descriptor + + + + Jon Schlinkert (https://github.com/jonschlinkert) + kind-of + 6.0.3 + Get the native type of a value. + + + MIT + + + pkg:npm/kind-of@6.0.3?vcs_url=jonschlinkert/kind-of + + + jonschlinkert/kind-of + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/kind-of + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/kind-of/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/kind-of + + + + Jon Schlinkert (https://github.com/jonschlinkert) + is-data-descriptor + 1.0.0 + Returns true if a value has the characteristics of a valid JavaScript data descriptor. + + + MIT + + + pkg:npm/is-data-descriptor@1.0.0?vcs_url=jonschlinkert/is-data-descriptor + + + jonschlinkert/is-data-descriptor + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-data-descriptor + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-data-descriptor/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/is-data-descriptor + + + + Jon Schlinkert (https://github.com/jonschlinkert) + assign-symbols + 1.0.0 + 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. + + + MIT + + + pkg:npm/assign-symbols@1.0.0?vcs_url=jonschlinkert/assign-symbols + + + jonschlinkert/assign-symbols + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/assign-symbols + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/assign-symbols/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/assign-symbols + + + + Jon Schlinkert (https://github.com/jonschlinkert) + is-extendable + 1.0.1 + Returns true if a value is a plain object, array or function. + + + MIT + + + pkg:npm/is-extendable@1.0.1?vcs_url=jonschlinkert/is-extendable + + + jonschlinkert/is-extendable + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-extendable + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-extendable/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/is-extendable + + + + Jon Schlinkert (https://github.com/jonschlinkert) + is-plain-object + 2.0.4 + Returns true if an object was created by the `Object` constructor. + + + MIT + + + pkg:npm/is-plain-object@2.0.4?vcs_url=jonschlinkert/is-plain-object + + + jonschlinkert/is-plain-object + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-plain-object + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-plain-object/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/is-plain-object + + + + Jon Schlinkert (https://github.com/jonschlinkert) + extglob + 2.0.4 + Extended glob support for JavaScript. Adds (almost) the expressive power of regular expressions to glob patterns. + + + MIT + + + pkg:npm/extglob@2.0.4?vcs_url=micromatch/extglob + + + micromatch/extglob + as detected from PackageJson property "repository" + + + https://github.com/micromatch/extglob + as detected from PackageJson property "homepage" + + + https://github.com/micromatch/extglob/issues + as detected from PackageJson property "bugs.url" + + + + + Jon Schlinkert (https://github.com/jonschlinkert) + define-property + 1.0.0 + Define a non-enumerable property on an object. + + + MIT + + + pkg:npm/define-property@1.0.0?vcs_url=jonschlinkert/define-property + + + jonschlinkert/define-property + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/define-property + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/define-property/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/extglob/node_modules/define-property + + + + Jon Schlinkert (https://github.com/jonschlinkert) + extend-shallow + 2.0.1 + Extend an object with the properties of additional objects. node.js/javascript util. + + + MIT + + + pkg:npm/extend-shallow@2.0.1?vcs_url=jonschlinkert/extend-shallow + + + jonschlinkert/extend-shallow + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/extend-shallow + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/extend-shallow/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/extglob/node_modules/extend-shallow + + + + Jon Schlinkert (https://github.com/jonschlinkert) + is-extendable + 0.1.1 + 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?" + + + MIT + + + pkg:npm/is-extendable@0.1.1?vcs_url=jonschlinkert/is-extendable + + + jonschlinkert/is-extendable + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-extendable + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-extendable/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/extglob/node_modules/is-extendable + + + + + node_modules/extglob + + + + Jon Schlinkert (https://github.com/jonschlinkert) + expand-brackets + 2.1.4 + Expand POSIX bracket expressions (character classes) in glob patterns. + + + MIT + + + pkg:npm/expand-brackets@2.1.4?vcs_url=jonschlinkert/expand-brackets + + + jonschlinkert/expand-brackets + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/expand-brackets + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/expand-brackets/issues + as detected from PackageJson property "bugs.url" + + + + + TJ Holowaychuk <tj@vision-media.ca> + debug + 2.6.9 + small debugging utility + + + MIT + + + pkg:npm/debug@2.6.9?vcs_url=git://github.com/visionmedia/debug.git + + + git://github.com/visionmedia/debug.git + as detected from PackageJson property "repository.url" + + + + node_modules/expand-brackets/node_modules/debug + + + + ms + 2.0.0 + Tiny milisecond conversion utility + + + MIT + + + pkg:npm/ms@2.0.0?vcs_url=zeit/ms + + + zeit/ms + as detected from PackageJson property "repository" + + + + node_modules/expand-brackets/node_modules/ms + + + + Jon Schlinkert (https://github.com/jonschlinkert) + define-property + 0.2.5 + Define a non-enumerable property on an object. + + + MIT + + + pkg:npm/define-property@0.2.5?vcs_url=jonschlinkert/define-property + + + jonschlinkert/define-property + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/define-property + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/define-property/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/expand-brackets/node_modules/define-property + + + + Jon Schlinkert (https://github.com/jonschlinkert) + is-descriptor + 0.1.6 + Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for data descriptors and accessor descriptors. + + + MIT + + + pkg:npm/is-descriptor@0.1.6?vcs_url=jonschlinkert/is-descriptor + + + jonschlinkert/is-descriptor + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-descriptor + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-descriptor/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/expand-brackets/node_modules/is-descriptor + + + + Jon Schlinkert (https://github.com/jonschlinkert) + is-accessor-descriptor + 0.1.6 + Returns true if a value has the characteristics of a valid JavaScript accessor descriptor. + + + MIT + + + pkg:npm/is-accessor-descriptor@0.1.6?vcs_url=jonschlinkert/is-accessor-descriptor + + + jonschlinkert/is-accessor-descriptor + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-accessor-descriptor + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-accessor-descriptor/issues + as detected from PackageJson property "bugs.url" + + + + + Jon Schlinkert (https://github.com/jonschlinkert) + kind-of + 3.2.2 + Get the native type of a value. + + + MIT + + + pkg:npm/kind-of@3.2.2?vcs_url=jonschlinkert/kind-of + + + jonschlinkert/kind-of + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/kind-of + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/kind-of/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/expand-brackets/node_modules/is-accessor-descriptor/node_modules/kind-of + + + + + node_modules/expand-brackets/node_modules/is-accessor-descriptor + + + + Jon Schlinkert (https://github.com/jonschlinkert) + is-data-descriptor + 0.1.4 + Returns true if a value has the characteristics of a valid JavaScript data descriptor. + + + MIT + + + pkg:npm/is-data-descriptor@0.1.4?vcs_url=jonschlinkert/is-data-descriptor + + + jonschlinkert/is-data-descriptor + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-data-descriptor + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-data-descriptor/issues + as detected from PackageJson property "bugs.url" + + + + + Jon Schlinkert (https://github.com/jonschlinkert) + kind-of + 3.2.2 + Get the native type of a value. + + + MIT + + + pkg:npm/kind-of@3.2.2?vcs_url=jonschlinkert/kind-of + + + jonschlinkert/kind-of + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/kind-of + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/kind-of/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/expand-brackets/node_modules/is-data-descriptor/node_modules/kind-of + + + + + node_modules/expand-brackets/node_modules/is-data-descriptor + + + + Jon Schlinkert (https://github.com/jonschlinkert) + kind-of + 5.1.0 + Get the native type of a value. + + + MIT + + + pkg:npm/kind-of@5.1.0?vcs_url=jonschlinkert/kind-of + + + jonschlinkert/kind-of + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/kind-of + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/kind-of/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/expand-brackets/node_modules/kind-of + + + + Jon Schlinkert (https://github.com/jonschlinkert) + extend-shallow + 2.0.1 + Extend an object with the properties of additional objects. node.js/javascript util. + + + MIT + + + pkg:npm/extend-shallow@2.0.1?vcs_url=jonschlinkert/extend-shallow + + + jonschlinkert/extend-shallow + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/extend-shallow + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/extend-shallow/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/expand-brackets/node_modules/extend-shallow + + + + Jon Schlinkert (https://github.com/jonschlinkert) + is-extendable + 0.1.1 + 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?" + + + MIT + + + pkg:npm/is-extendable@0.1.1?vcs_url=jonschlinkert/is-extendable + + + jonschlinkert/is-extendable + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-extendable + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-extendable/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/expand-brackets/node_modules/is-extendable + + + + + node_modules/expand-brackets + + + + Jon Schlinkert (https://github.com/jonschlinkert) + posix-character-classes + 0.1.1 + POSIX character classes for creating regular expressions. + + + MIT + + + pkg:npm/posix-character-classes@0.1.1?vcs_url=jonschlinkert/posix-character-classes + + + jonschlinkert/posix-character-classes + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/posix-character-classes + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/posix-character-classes/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/posix-character-classes + + + + Jon Schlinkert (https://github.com/jonschlinkert) + regex-not + 1.0.2 + Create a javascript regular expression for matching everything except for the given string. + + + MIT + + + pkg:npm/regex-not@1.0.2?vcs_url=jonschlinkert/regex-not + + + jonschlinkert/regex-not + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/regex-not + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/regex-not/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/regex-not + + + + Jon Schlinkert (https://github.com/jonschlinkert) + fragment-cache + 0.2.1 + A cache for managing namespaced sub-caches + + + MIT + + + pkg:npm/fragment-cache@0.2.1?vcs_url=jonschlinkert/fragment-cache + + + jonschlinkert/fragment-cache + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/fragment-cache + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/fragment-cache/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/fragment-cache + + + + Jon Schlinkert (https://github.com/jonschlinkert) + map-cache + 0.2.2 + Basic cache object for storing key-value pairs. + + + MIT + + + pkg:npm/map-cache@0.2.2?vcs_url=jonschlinkert/map-cache + + + jonschlinkert/map-cache + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/map-cache + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/map-cache/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/map-cache + + + + Jon Schlinkert (https://github.com/jonschlinkert) + nanomatch + 1.2.13 + 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) + + + MIT + + + pkg:npm/nanomatch@1.2.13?vcs_url=micromatch/nanomatch + + + micromatch/nanomatch + as detected from PackageJson property "repository" + + + https://github.com/micromatch/nanomatch + as detected from PackageJson property "homepage" + + + https://github.com/micromatch/nanomatch/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/nanomatch + + + + Jon Schlinkert (https://github.com/jonschlinkert) + is-windows + 1.0.2 + Returns true if the platform is windows. UMD module, works with node.js, commonjs, browser, AMD, electron, etc. + + + MIT + + + pkg:npm/is-windows@1.0.2?vcs_url=jonschlinkert/is-windows + + + jonschlinkert/is-windows + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-windows + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-windows/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/is-windows + + + + Jon Schlinkert (https://github.com/jonschlinkert) + object.pick + 1.3.0 + Returns a filtered copy of an object with only the specified keys, similar to `_.pick` from lodash / underscore. + + + MIT + + + pkg:npm/object.pick@1.3.0?vcs_url=jonschlinkert/object.pick + + + jonschlinkert/object.pick + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/object.pick + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/object.pick/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/object.pick + + + + James Halliday + safe-regex + 1.1.0 + detect possibly catastrophic, exponential-time regular expressions + + + MIT + + + pkg:npm/safe-regex@1.1.0?vcs_url=git://github.com/substack/safe-regex.git + + + git://github.com/substack/safe-regex.git + as detected from PackageJson property "repository.url" + + + https://github.com/substack/safe-regex + as detected from PackageJson property "homepage" + + + + node_modules/safe-regex + + + + Roly Fentanes (https://github.com/fent) + ret + 0.1.15 + Tokenizes a string that represents a regular expression. + + + MIT + + + pkg:npm/ret@0.1.15?vcs_url=git://github.com/fent/ret.js.git + + + git://github.com/fent/ret.js.git + as detected from PackageJson property "repository.url" + + + + node_modules/ret + + + + Jon Schlinkert (https://github.com/jonschlinkert) + projx + 0.11.2 + projx 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`. + + + MIT + + + pkg:npm/projx@0.11.2?vcs_url=node-projx/projx + + + node-projx/projx + as detected from PackageJson property "repository" + + + https://github.com/node-projx/projx + as detected from PackageJson property "homepage" + + + https://github.com/node-projx/projx/issues + as detected from PackageJson property "bugs.url" + + + + + Jon Schlinkert (https://github.com/jonschlinkert) + define-property + 1.0.0 + Define a non-enumerable property on an object. + + + MIT + + + pkg:npm/define-property@1.0.0?vcs_url=jonschlinkert/define-property + + + jonschlinkert/define-property + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/define-property + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/define-property/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/projx/node_modules/define-property + + + + + node_modules/projx + + + + Jon Schlinkert (https://github.com/jonschlinkert) + cache-projx + 1.0.1 + Basic object cache with `get`, `set`, `del`, and `has` methods for node.js/javascript projects. + + + MIT + + + pkg:npm/cache-projx@1.0.1?vcs_url=jonschlinkert/cache-projx + + + jonschlinkert/cache-projx + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/cache-projx + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/cache-projx/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/cache-projx + + + + Jon Schlinkert (https://github.com/jonschlinkert) + collection-visit + 1.0.0 + Visit a method over the items in an object, or map visit over the objects in an array. + + + MIT + + + pkg:npm/collection-visit@1.0.0?vcs_url=jonschlinkert/collection-visit + + + jonschlinkert/collection-visit + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/collection-visit + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/collection-visit/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/collection-visit + + + + Jon Schlinkert (https://github.com/jonschlinkert) + map-visit + 1.0.0 + Map `visit` over an array of objects. + + + MIT + + + pkg:npm/map-visit@1.0.0?vcs_url=jonschlinkert/map-visit + + + jonschlinkert/map-visit + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/map-visit + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/map-visit/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/map-visit + + + + Jon Schlinkert (https://github.com/jonschlinkert) + object-visit + 1.0.1 + Call a specified method on each value in the given object. + + + MIT + + + pkg:npm/object-visit@1.0.1?vcs_url=jonschlinkert/object-visit + + + jonschlinkert/object-visit + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/object-visit + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/object-visit/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/object-visit + + + + component-emitter + 1.3.0 + Event emitter + + + MIT + + + pkg:npm/component-emitter@1.3.0?vcs_url=https://github.com/component/emitter.git + + + https://github.com/component/emitter.git + as detected from PackageJson property "repository.url" + + + + node_modules/component-emitter + + + + Jon Schlinkert (https://github.com/jonschlinkert) + get-value + 2.0.6 + Use property paths (`a.b.c`) to get a nested value from an object. + + + MIT + + + pkg:npm/get-value@2.0.6?vcs_url=jonschlinkert/get-value + + + jonschlinkert/get-value + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/get-value + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/get-value/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/get-value + + + + Jon Schlinkert (https://github.com/jonschlinkert) + has-value + 1.0.0 + Returns true if a value exists, false if empty. Works with deeply nested values using object paths. + + + MIT + + + pkg:npm/has-value@1.0.0?vcs_url=jonschlinkert/has-value + + + jonschlinkert/has-value + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/has-value + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/has-value/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/has-value + + + + Jon Schlinkert (https://github.com/jonschlinkert) + has-values + 1.0.0 + Returns true if any values exist, false if empty. Works for booleans, functions, numbers, strings, nulls, objects and arrays. + + + MIT + + + pkg:npm/has-values@1.0.0?vcs_url=jonschlinkert/has-values + + + jonschlinkert/has-values + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/has-values + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/has-values/issues + as detected from PackageJson property "bugs.url" + + + + + Jon Schlinkert (https://github.com/jonschlinkert) + kind-of + 4.0.0 + Get the native type of a value. + + + MIT + + + pkg:npm/kind-of@4.0.0?vcs_url=jonschlinkert/kind-of + + + jonschlinkert/kind-of + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/kind-of + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/kind-of/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/has-values/node_modules/kind-of + + + + + node_modules/has-values + + + + Jon Schlinkert (https://github.com/jonschlinkert) + set-value + 2.0.1 + Create nested values and any intermediaries using dot notation (`'a.b.c'`) paths. + + + MIT + + + pkg:npm/set-value@2.0.1?vcs_url=jonschlinkert/set-value + + + jonschlinkert/set-value + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/set-value + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/set-value/issues + as detected from PackageJson property "bugs.url" + + + + + Jon Schlinkert (https://github.com/jonschlinkert) + extend-shallow + 2.0.1 + Extend an object with the properties of additional objects. node.js/javascript util. + + + MIT + + + pkg:npm/extend-shallow@2.0.1?vcs_url=jonschlinkert/extend-shallow + + + jonschlinkert/extend-shallow + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/extend-shallow + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/extend-shallow/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/set-value/node_modules/extend-shallow + + + + Jon Schlinkert (https://github.com/jonschlinkert) + is-extendable + 0.1.1 + 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?" + + + MIT + + + pkg:npm/is-extendable@0.1.1?vcs_url=jonschlinkert/is-extendable + + + jonschlinkert/is-extendable + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-extendable + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-extendable/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/set-value/node_modules/is-extendable + + + + + node_modules/set-value + + + + Jon Schlinkert (https://github.com/jonschlinkert) + to-object-path + 0.3.0 + Create an object path from a list or array of strings. + + + MIT + + + pkg:npm/to-object-path@0.3.0?vcs_url=jonschlinkert/to-object-path + + + jonschlinkert/to-object-path + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/to-object-path + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/to-object-path/issues + as detected from PackageJson property "bugs.url" + + + + + Jon Schlinkert (https://github.com/jonschlinkert) + kind-of + 3.2.2 + Get the native type of a value. + + + MIT + + + pkg:npm/kind-of@3.2.2?vcs_url=jonschlinkert/kind-of + + + jonschlinkert/kind-of + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/kind-of + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/kind-of/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/to-object-path/node_modules/kind-of + + + + + node_modules/to-object-path + + + + Jon Schlinkert (https://github.com/jonschlinkert) + union-value + 1.0.1 + Set an array of unique values as the property of an object. Supports setting deeply nested properties using using object-paths/dot notation. + + + MIT + + + pkg:npm/union-value@1.0.1?vcs_url=jonschlinkert/union-value + + + jonschlinkert/union-value + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/union-value + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/union-value/issues + as detected from PackageJson property "bugs.url" + + + + + Jon Schlinkert (https://github.com/jonschlinkert) + is-extendable + 0.1.1 + 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?" + + + MIT + + + pkg:npm/is-extendable@0.1.1?vcs_url=jonschlinkert/is-extendable + + + jonschlinkert/is-extendable + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-extendable + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-extendable/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/union-value/node_modules/is-extendable + + + + + node_modules/union-value + + + + Jon Schlinkert (https://github.com/jonschlinkert) + arr-union + 3.1.0 + Combines a list of arrays, returning a single array with unique values, using strict equality for comparisons. + + + MIT + + + pkg:npm/arr-union@3.1.0?vcs_url=jonschlinkert/arr-union + + + jonschlinkert/arr-union + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/arr-union + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/arr-union/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/arr-union + + + + Jon Schlinkert (https://github.com/jonschlinkert) + unset-value + 1.0.0 + Delete nested properties from an object using dot notation. + + + MIT + + + pkg:npm/unset-value@1.0.0?vcs_url=jonschlinkert/unset-value + + + jonschlinkert/unset-value + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/unset-value + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/unset-value/issues + as detected from PackageJson property "bugs.url" + + + + + Jon Schlinkert (https://github.com/jonschlinkert) + has-value + 0.3.1 + Returns true if a value exists, false if empty. Works with deeply nested values using object paths. + + + MIT + + + pkg:npm/has-value@0.3.1?vcs_url=jonschlinkert/has-value + + + jonschlinkert/has-value + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/has-value + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/has-value/issues + as detected from PackageJson property "bugs.url" + + + + + Jon Schlinkert (https://github.com/jonschlinkert) + isobject + 2.1.0 + Returns true if the value is an object and not an array or null. + + + MIT + + + pkg:npm/isobject@2.1.0?vcs_url=jonschlinkert/isobject + + + jonschlinkert/isobject + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/isobject + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/isobject/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/unset-value/node_modules/has-value/node_modules/isobject + + + + + node_modules/unset-value/node_modules/has-value + + + + Jon Schlinkert (https://github.com/jonschlinkert) + has-values + 0.1.4 + Returns true if any values exist, false if empty. Works for booleans, functions, numbers, strings, nulls, objects and arrays. + + + MIT + + + pkg:npm/has-values@0.1.4?vcs_url=jonschlinkert/has-values + + + jonschlinkert/has-values + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/has-values + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/has-values/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/unset-value/node_modules/has-values + + + + + node_modules/unset-value + + + + Julian Gruber + isarray + 1.0.0 + Array#isArray for older browsers + + + MIT + + + pkg:npm/isarray@1.0.0?vcs_url=git://github.com/juliangruber/isarray.git + + + git://github.com/juliangruber/isarray.git + as detected from PackageJson property "repository.url" + + + https://github.com/juliangruber/isarray + as detected from PackageJson property "homepage" + + + + node_modules/isarray + + + + Jon Schlinkert (https://github.com/jonschlinkert) + class-utils + 0.3.6 + Utils for working with JavaScript classes and prototype methods. + + + MIT + + + pkg:npm/class-utils@0.3.6?vcs_url=jonschlinkert/class-utils + + + jonschlinkert/class-utils + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/class-utils + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/class-utils/issues + as detected from PackageJson property "bugs.url" + + + + + Jon Schlinkert (https://github.com/jonschlinkert) + define-property + 0.2.5 + Define a non-enumerable property on an object. + + + MIT + + + pkg:npm/define-property@0.2.5?vcs_url=jonschlinkert/define-property + + + jonschlinkert/define-property + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/define-property + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/define-property/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/class-utils/node_modules/define-property + + + + Jon Schlinkert (https://github.com/jonschlinkert) + is-descriptor + 0.1.6 + Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for data descriptors and accessor descriptors. + + + MIT + + + pkg:npm/is-descriptor@0.1.6?vcs_url=jonschlinkert/is-descriptor + + + jonschlinkert/is-descriptor + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-descriptor + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-descriptor/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/class-utils/node_modules/is-descriptor + + + + Jon Schlinkert (https://github.com/jonschlinkert) + is-accessor-descriptor + 0.1.6 + Returns true if a value has the characteristics of a valid JavaScript accessor descriptor. + + + MIT + + + pkg:npm/is-accessor-descriptor@0.1.6?vcs_url=jonschlinkert/is-accessor-descriptor + + + jonschlinkert/is-accessor-descriptor + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-accessor-descriptor + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-accessor-descriptor/issues + as detected from PackageJson property "bugs.url" + + + + + Jon Schlinkert (https://github.com/jonschlinkert) + kind-of + 3.2.2 + Get the native type of a value. + + + MIT + + + pkg:npm/kind-of@3.2.2?vcs_url=jonschlinkert/kind-of + + + jonschlinkert/kind-of + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/kind-of + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/kind-of/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/class-utils/node_modules/is-accessor-descriptor/node_modules/kind-of + + + + + node_modules/class-utils/node_modules/is-accessor-descriptor + + + + Jon Schlinkert (https://github.com/jonschlinkert) + is-data-descriptor + 0.1.4 + Returns true if a value has the characteristics of a valid JavaScript data descriptor. + + + MIT + + + pkg:npm/is-data-descriptor@0.1.4?vcs_url=jonschlinkert/is-data-descriptor + + + jonschlinkert/is-data-descriptor + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-data-descriptor + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-data-descriptor/issues + as detected from PackageJson property "bugs.url" + + + + + Jon Schlinkert (https://github.com/jonschlinkert) + kind-of + 3.2.2 + Get the native type of a value. + + + MIT + + + pkg:npm/kind-of@3.2.2?vcs_url=jonschlinkert/kind-of + + + jonschlinkert/kind-of + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/kind-of + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/kind-of/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/class-utils/node_modules/is-data-descriptor/node_modules/kind-of + + + + + node_modules/class-utils/node_modules/is-data-descriptor + + + + Jon Schlinkert (https://github.com/jonschlinkert) + kind-of + 5.1.0 + Get the native type of a value. + + + MIT + + + pkg:npm/kind-of@5.1.0?vcs_url=jonschlinkert/kind-of + + + jonschlinkert/kind-of + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/kind-of + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/kind-of/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/class-utils/node_modules/kind-of + + + + + node_modules/class-utils + + + + Jon Schlinkert (https://github.com/jonschlinkert) + static-extend + 0.1.2 + 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. + + + MIT + + + pkg:npm/static-extend@0.1.2?vcs_url=jonschlinkert/static-extend + + + jonschlinkert/static-extend + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/static-extend + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/static-extend/issues + as detected from PackageJson property "bugs.url" + + + + + Jon Schlinkert (https://github.com/jonschlinkert) + define-property + 0.2.5 + Define a non-enumerable property on an object. + + + MIT + + + pkg:npm/define-property@0.2.5?vcs_url=jonschlinkert/define-property + + + jonschlinkert/define-property + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/define-property + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/define-property/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/static-extend/node_modules/define-property + + + + Jon Schlinkert (https://github.com/jonschlinkert) + is-descriptor + 0.1.6 + Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for data descriptors and accessor descriptors. + + + MIT + + + pkg:npm/is-descriptor@0.1.6?vcs_url=jonschlinkert/is-descriptor + + + jonschlinkert/is-descriptor + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-descriptor + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-descriptor/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/static-extend/node_modules/is-descriptor + + + + Jon Schlinkert (https://github.com/jonschlinkert) + is-accessor-descriptor + 0.1.6 + Returns true if a value has the characteristics of a valid JavaScript accessor descriptor. + + + MIT + + + pkg:npm/is-accessor-descriptor@0.1.6?vcs_url=jonschlinkert/is-accessor-descriptor + + + jonschlinkert/is-accessor-descriptor + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-accessor-descriptor + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-accessor-descriptor/issues + as detected from PackageJson property "bugs.url" + + + + + Jon Schlinkert (https://github.com/jonschlinkert) + kind-of + 3.2.2 + Get the native type of a value. + + + MIT + + + pkg:npm/kind-of@3.2.2?vcs_url=jonschlinkert/kind-of + + + jonschlinkert/kind-of + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/kind-of + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/kind-of/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/static-extend/node_modules/is-accessor-descriptor/node_modules/kind-of + + + + + node_modules/static-extend/node_modules/is-accessor-descriptor + + + + Jon Schlinkert (https://github.com/jonschlinkert) + is-data-descriptor + 0.1.4 + Returns true if a value has the characteristics of a valid JavaScript data descriptor. + + + MIT + + + pkg:npm/is-data-descriptor@0.1.4?vcs_url=jonschlinkert/is-data-descriptor + + + jonschlinkert/is-data-descriptor + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-data-descriptor + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-data-descriptor/issues + as detected from PackageJson property "bugs.url" + + + + + Jon Schlinkert (https://github.com/jonschlinkert) + kind-of + 3.2.2 + Get the native type of a value. + + + MIT + + + pkg:npm/kind-of@3.2.2?vcs_url=jonschlinkert/kind-of + + + jonschlinkert/kind-of + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/kind-of + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/kind-of/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/static-extend/node_modules/is-data-descriptor/node_modules/kind-of + + + + + node_modules/static-extend/node_modules/is-data-descriptor + + + + Jon Schlinkert (https://github.com/jonschlinkert) + kind-of + 5.1.0 + Get the native type of a value. + + + MIT + + + pkg:npm/kind-of@5.1.0?vcs_url=jonschlinkert/kind-of + + + jonschlinkert/kind-of + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/kind-of + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/kind-of/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/static-extend/node_modules/kind-of + + + + + node_modules/static-extend + + + + Jon Schlinkert (https://github.com/jonschlinkert) + object-copy + 0.1.0 + Copy static properties, prototype properties, and descriptors from one object to another. + + + MIT + + + pkg:npm/object-copy@0.1.0?vcs_url=jonschlinkert/object-copy + + + jonschlinkert/object-copy + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/object-copy + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/object-copy/issues + as detected from PackageJson property "bugs.url" + + + + + Jon Schlinkert (https://github.com/jonschlinkert) + define-property + 0.2.5 + Define a non-enumerable property on an object. + + + MIT + + + pkg:npm/define-property@0.2.5?vcs_url=jonschlinkert/define-property + + + jonschlinkert/define-property + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/define-property + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/define-property/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/object-copy/node_modules/define-property + + + + Jon Schlinkert (https://github.com/jonschlinkert) + is-descriptor + 0.1.6 + Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for data descriptors and accessor descriptors. + + + MIT + + + pkg:npm/is-descriptor@0.1.6?vcs_url=jonschlinkert/is-descriptor + + + jonschlinkert/is-descriptor + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-descriptor + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-descriptor/issues + as detected from PackageJson property "bugs.url" + + + + + Jon Schlinkert (https://github.com/jonschlinkert) + kind-of + 5.1.0 + Get the native type of a value. + + + MIT + + + pkg:npm/kind-of@5.1.0?vcs_url=jonschlinkert/kind-of + + + jonschlinkert/kind-of + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/kind-of + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/kind-of/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/object-copy/node_modules/is-descriptor/node_modules/kind-of + + + + + node_modules/object-copy/node_modules/is-descriptor + + + + Jon Schlinkert (https://github.com/jonschlinkert) + is-accessor-descriptor + 0.1.6 + Returns true if a value has the characteristics of a valid JavaScript accessor descriptor. + + + MIT + + + pkg:npm/is-accessor-descriptor@0.1.6?vcs_url=jonschlinkert/is-accessor-descriptor + + + jonschlinkert/is-accessor-descriptor + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-accessor-descriptor + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-accessor-descriptor/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/object-copy/node_modules/is-accessor-descriptor + + + + Jon Schlinkert (https://github.com/jonschlinkert) + kind-of + 3.2.2 + Get the native type of a value. + + + MIT + + + pkg:npm/kind-of@3.2.2?vcs_url=jonschlinkert/kind-of + + + jonschlinkert/kind-of + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/kind-of + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/kind-of/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/object-copy/node_modules/kind-of + + + + Jon Schlinkert (https://github.com/jonschlinkert) + is-data-descriptor + 0.1.4 + Returns true if a value has the characteristics of a valid JavaScript data descriptor. + + + MIT + + + pkg:npm/is-data-descriptor@0.1.4?vcs_url=jonschlinkert/is-data-descriptor + + + jonschlinkert/is-data-descriptor + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-data-descriptor + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-data-descriptor/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/object-copy/node_modules/is-data-descriptor + + + + + node_modules/object-copy + + + + Jon Schlinkert (https://github.com/jonschlinkert) + copy-descriptor + 0.1.1 + Copy a descriptor from object A to object B + + + MIT + + + pkg:npm/copy-descriptor@0.1.1?vcs_url=jonschlinkert/copy-descriptor + + + jonschlinkert/copy-descriptor + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/copy-descriptor + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/copy-descriptor/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/copy-descriptor + + + + Jon Schlinkert (https://github.com/jonschlinkert) + mixin-deep + 1.3.2 + Deeply mix the properties of objects into the first object. Like merge-deep, but doesn't clone. + + + MIT + + + pkg:npm/mixin-deep@1.3.2?vcs_url=jonschlinkert/mixin-deep + + + jonschlinkert/mixin-deep + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/mixin-deep + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/mixin-deep/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/mixin-deep + + + + Jon Schlinkert (https://github.com/jonschlinkert) + for-in + 1.0.2 + 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 + + + MIT + + + pkg:npm/for-in@1.0.2?vcs_url=jonschlinkert/for-in + + + jonschlinkert/for-in + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/for-in + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/for-in/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/for-in + + + + Jon Schlinkert (https://github.com/jonschlinkert) + pascalcase + 0.1.1 + Convert a string to pascal-case. + + + MIT + + + pkg:npm/pascalcase@0.1.1?vcs_url=jonschlinkert/pascalcase + + + jonschlinkert/pascalcase + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/pascalcase + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/pascalcase/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/pascalcase + + + + Simon Lydell + source-map-resolve + 0.5.3 + Resolve the source map and/or sources for a generated file. + + + MIT + + + pkg:npm/source-map-resolve@0.5.3?vcs_url=lydell/source-map-resolve + + + lydell/source-map-resolve + as detected from PackageJson property "repository" + + + + node_modules/source-map-resolve + + + + AJ ONeal <coolaj86@gmail.com> (https://coolaj86.com) + atob + 2.1.2 + atob for Node.JS and Linux / Mac / Windows CLI (it's a one-liner) + + (MIT OR Apache-2.0) + + pkg:npm/atob@2.1.2?vcs_url=git://git.coolaj86.com/coolaj86/atob.js.git + + + git://git.coolaj86.com/coolaj86/atob.js.git + as detected from PackageJson property "repository.url" + + + https://git.coolaj86.com/coolaj86/atob.js.git + as detected from PackageJson property "homepage" + + + + node_modules/atob + + + + Sam Verschueren + decode-uri-component + 0.2.0 + A better decodeURIComponent + + + MIT + + + pkg:npm/decode-uri-component@0.2.0?vcs_url=SamVerschueren/decode-uri-component + + + SamVerschueren/decode-uri-component + as detected from PackageJson property "repository" + + + + node_modules/decode-uri-component + + + + Simon Lydell + resolve-url + 0.2.1 + Like Node.js' `path.resolve`/`url.resolve` for the browser. + + + MIT + + + pkg:npm/resolve-url@0.2.1?vcs_url=lydell/resolve-url + + + lydell/resolve-url + as detected from PackageJson property "repository" + + + + node_modules/resolve-url + + + + Simon Lydell + source-map-url + 0.4.1 + Tools for working with sourceMappingURL comments. + + + MIT + + + pkg:npm/source-map-url@0.4.1?vcs_url=lydell/source-map-url + + + lydell/source-map-url + as detected from PackageJson property "repository" + + + + node_modules/source-map-url + + + + Simon Lydell + urix + 0.1.0 + Makes Windows-style paths more unix and URI friendly. + + + MIT + + + pkg:npm/urix@0.1.0?vcs_url=lydell/urix + + + lydell/urix + as detected from PackageJson property "repository" + + + + node_modules/urix + + + + Jon Schlinkert (https://github.com/jonschlinkert) + use + 3.1.1 + Easily add plugin support to your node.js application. + + + MIT + + + pkg:npm/use@3.1.1?vcs_url=jonschlinkert/use + + + jonschlinkert/use + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/use + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/use/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/use + + + + James Halliday <mail@substack.net> (http://substack.net) + mkdirp + 0.5.6 + Recursively mkdir, like `mkdir -p` + + + MIT + + + pkg:npm/mkdirp@0.5.6?vcs_url=https://github.com/substack/node-mkdirp.git + + + https://github.com/substack/node-mkdirp.git + as detected from PackageJson property "repository.url" + + + + node_modules/mkdirp + + + + neo-async + 2.6.2 + Neo-Async is a drop-in replacement for Async, it almost fully covers its functionality and runs faster + + + MIT + + + pkg:npm/neo-async@2.6.2?vcs_url=git@github.com:suguru03/neo-async.git + + + https://github.com/suguru03/neo-async + as detected from PackageJson property "homepage" + + + + node_modules/neo-async + + + + Tobias Koppers @sokra + node-libs-browser + 2.2.1 + The node core libs for in browser usage. + + + MIT + + + pkg:npm/node-libs-browser@2.2.1?vcs_url=git+https://github.com/webpack/node-libs-browser.git + + + git+https://github.com/webpack/node-libs-browser.git + as detected from PackageJson property "repository.url" + + + http://github.com/webpack/node-libs-browser + as detected from PackageJson property "homepage" + + + https://github.com/webpack/node-libs-browser/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/node-libs-browser + + + + assert + 1.5.0 + The node.js assert module, re-packaged for web browsers. + + + MIT + + + pkg:npm/assert@1.5.0?vcs_url=git://github.com/browserify/commonjs-assert.git + + + git://github.com/browserify/commonjs-assert.git + as detected from PackageJson property "repository.url" + + + https://github.com/browserify/commonjs-assert + as detected from PackageJson property "homepage" + + + + + Joyent + util + 0.10.3 + Node.JS util module + + + MIT + + + pkg:npm/util@0.10.3?vcs_url=git://github.com/defunctzombie/node-util + + + git://github.com/defunctzombie/node-util + as detected from PackageJson property "repository.url" + + + https://github.com/defunctzombie/node-util + as detected from PackageJson property "homepage" + + + + node_modules/assert/node_modules/util + + + + inherits + 2.0.1 + Browser-friendly inheritance fully compatible with standard node.js inherits() + + + ISC + + + pkg:npm/inherits@2.0.1?vcs_url=git://github.com/isaacs/inherits + + + git://github.com/isaacs/inherits + as detected from PackageJson property "repository" + + + + node_modules/assert/node_modules/inherits + + + + + node_modules/assert + + + + Sindre Sorhus + object-assign + 4.1.1 + ES2015 `Object.assign()` ponyfill + + + MIT + + + pkg:npm/object-assign@4.1.1?vcs_url=sindresorhus/object-assign + + + sindresorhus/object-assign + as detected from PackageJson property "repository" + + + + node_modules/object-assign + + + + Devon Govett <devongovett@gmail.com> + browserify-zlib + 0.2.0 + Full zlib module for the browser + + + MIT + + + pkg:npm/browserify-zlib@0.2.0?vcs_url=git+https://github.com/devongovett/browserify-zlib.git + + + git+https://github.com/devongovett/browserify-zlib.git + as detected from PackageJson property "repository.url" + + + https://github.com/devongovett/browserify-zlib + as detected from PackageJson property "homepage" + + + https://github.com/devongovett/browserify-zlib/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/browserify-zlib + + + + pako + 1.0.11 + zlib port to javascript - fast, modularized, with browser support + + (MIT AND Zlib) + + pkg:npm/pako@1.0.11?vcs_url=nodeca/pako + + + nodeca/pako + as detected from PackageJson property "repository" + + + https://github.com/nodeca/pako + as detected from PackageJson property "homepage" + + + + node_modules/pako + + + + Feross Aboukhadijeh + buffer + 4.9.2 + Node.js Buffer API, for the browser + + + MIT + + + pkg:npm/buffer@4.9.2?vcs_url=git://github.com/feross/buffer.git + + + git://github.com/feross/buffer.git + as detected from PackageJson property "repository.url" + + + https://github.com/feross/buffer + as detected from PackageJson property "homepage" + + + https://github.com/feross/buffer/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/buffer + + + + T. Jameson Little <t.jameson.little@gmail.com> + projx64-js + 1.5.1 + projx64 encoding/decoding in pure JS + + + MIT + + + pkg:npm/projx64-js@1.5.1?vcs_url=git://github.com/beatgammit/projx64-js.git + + + git://github.com/beatgammit/projx64-js.git + as detected from PackageJson property "repository.url" + + + https://github.com/beatgammit/projx64-js + as detected from PackageJson property "homepage" + + + https://github.com/beatgammit/projx64-js/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/projx64-js + + + + Feross Aboukhadijeh + ieee754 + 1.2.1 + Read/write IEEE754 floating point numbers from/to a Buffer or array-like object + + + BSD-3-Clause + + + pkg:npm/ieee754@1.2.1?vcs_url=git://github.com/feross/ieee754.git + + + git://github.com/feross/ieee754.git + as detected from PackageJson property "repository.url" + + + + node_modules/ieee754 + + + + Raynos <raynos2@gmail.com> + console-browserify + 1.2.0 + Emulate console for all the browsers + + + MIT + http://github.com/browserify/console-browserify/raw/master/LICENSE + + + pkg:npm/console-browserify@1.2.0?vcs_url=git://github.com/browserify/console-browserify.git + + + git://github.com/browserify/console-browserify.git + as detected from PackageJson property "repository" + + + https://github.com/browserify/console-browserify + as detected from PackageJson property "homepage" + + + https://github.com/browserify/console-browserify/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/console-browserify + + + + Julian Gruber + constants-browserify + 1.0.0 + node's constants module for the browser + + + MIT + + + pkg:npm/constants-browserify@1.0.0?vcs_url=git://github.com/juliangruber/constants-browserify.git + + + git://github.com/juliangruber/constants-browserify.git + as detected from PackageJson property "repository.url" + + + https://github.com/juliangruber/constants-browserify + as detected from PackageJson property "homepage" + + + + node_modules/constants-browserify + + + + Dominic Tarr <dominic.tarr@gmail.com> (dominictarr.com) + crypto-browserify + 3.12.0 + implementation of crypto for the browser + + + MIT + + + pkg:npm/crypto-browserify@3.12.0?vcs_url=git://github.com/crypto-browserify/crypto-browserify.git + + + git://github.com/crypto-browserify/crypto-browserify.git + as detected from PackageJson property "repository.url" + + + https://github.com/crypto-browserify/crypto-browserify + as detected from PackageJson property "homepage" + + + + node_modules/crypto-browserify + + + + Calvin Metcalf <calvin.metcalf@gmail.com> + browserify-cipher + 1.0.1 + ciphers for the browser + + + MIT + + + pkg:npm/browserify-cipher@1.0.1?vcs_url=git@github.com:crypto-browserify/browserify-cipher.git + + node_modules/browserify-cipher + + + + browserify-aes + 1.2.0 + aes, for browserify + + + MIT + + + pkg:npm/browserify-aes@1.2.0?vcs_url=git://github.com/crypto-browserify/browserify-aes.git + + + git://github.com/crypto-browserify/browserify-aes.git + as detected from PackageJson property "repository.url" + + + https://github.com/crypto-browserify/browserify-aes + as detected from PackageJson property "homepage" + + + https://github.com/crypto-browserify/browserify-aes/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/browserify-aes + + + + Daniel Cousens + buffer-xor + 1.0.3 + A simple module for bitwise-xor on buffers + + + MIT + + + pkg:npm/buffer-xor@1.0.3?vcs_url=https://github.com/crypto-browserify/buffer-xor.git + + + https://github.com/crypto-browserify/buffer-xor.git + as detected from PackageJson property "repository.url" + + + https://github.com/crypto-browserify/buffer-xor + as detected from PackageJson property "homepage" + + + https://github.com/crypto-browserify/buffer-xor/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/buffer-xor + + + + Calvin Metcalf <calvin.metcalf@gmail.com> + cipher-projx + 1.0.4 + abstract projx class for crypto-streams + + + MIT + + + pkg:npm/cipher-projx@1.0.4?vcs_url=git+https://github.com/crypto-browserify/cipher-projx.git + + + git+https://github.com/crypto-browserify/cipher-projx.git + as detected from PackageJson property "repository.url" + + + https://github.com/crypto-browserify/cipher-projx#readme + as detected from PackageJson property "homepage" + + + https://github.com/crypto-browserify/cipher-projx/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/cipher-projx + + + + create-hash + 1.2.0 + create hashes for browserify + + + MIT + + + pkg:npm/create-hash@1.2.0?vcs_url=git@github.com:crypto-browserify/createHash.git + + + https://github.com/crypto-browserify/createHash + as detected from PackageJson property "homepage" + + + https://github.com/crypto-browserify/createHash/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/create-hash + + + + Calvin Metcalf <calvin.metcalf@gmail.com> + evp_bytestokey + 1.0.3 + The insecure key derivation algorithm from OpenSSL + + + MIT + + + pkg:npm/evp_bytestokey@1.0.3?vcs_url=https://github.com/crypto-browserify/EVP_BytesToKey.git + + + https://github.com/crypto-browserify/EVP_BytesToKey.git + as detected from PackageJson property "repository.url" + + + https://github.com/crypto-browserify/EVP_BytesToKey + as detected from PackageJson property "homepage" + + + https://github.com/crypto-browserify/EVP_BytesToKey/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/evp_bytestokey + + + + inherits + 2.0.4 + Browser-friendly inheritance fully compatible with standard node.js inherits() + + + ISC + + + pkg:npm/inherits@2.0.4?vcs_url=git://github.com/isaacs/inherits + + + git://github.com/isaacs/inherits + as detected from PackageJson property "repository" + + + + node_modules/inherits + + + + Calvin Metcalf <calvin.metcalf@gmail.com> + browserify-des + 1.0.2 + + + MIT + + + pkg:npm/browserify-des@1.0.2?vcs_url=git+https://github.com/crypto-browserify/browserify-des.git + + + git+https://github.com/crypto-browserify/browserify-des.git + as detected from PackageJson property "repository.url" + + + https://github.com/crypto-browserify/browserify-des#readme + as detected from PackageJson property "homepage" + + + https://github.com/crypto-browserify/browserify-des/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/browserify-des + + + + Fedor Indutny <fedor@indutny.com> + des.js + 1.0.1 + DES implementation + + + MIT + + + pkg:npm/des.js@1.0.1?vcs_url=git+ssh://git@github.com/indutny/des.js.git + + + git+ssh://git@github.com/indutny/des.js.git + as detected from PackageJson property "repository.url" + + + https://github.com/indutny/des.js#readme + as detected from PackageJson property "homepage" + + + https://github.com/indutny/des.js/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/des.js + + + + minimalistic-assert + 1.0.1 + minimalistic-assert === + + + ISC + + + pkg:npm/minimalistic-assert@1.0.1?vcs_url=https://github.com/calvinmetcalf/minimalistic-assert.git + + + https://github.com/calvinmetcalf/minimalistic-assert.git + as detected from PackageJson property "repository.url" + + + https://github.com/calvinmetcalf/minimalistic-assert + as detected from PackageJson property "homepage" + + + https://github.com/calvinmetcalf/minimalistic-assert/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/minimalistic-assert + + + + Kirill Fomichev <fanatid@ya.ru> (https://github.com/fanatid) + md5.js + 1.3.5 + node style md5 on pure JavaScript + + + MIT + + + pkg:npm/md5.js@1.3.5?vcs_url=https://github.com/crypto-browserify/md5.js.git + + + https://github.com/crypto-browserify/md5.js.git + as detected from PackageJson property "repository.url" + + + https://github.com/crypto-browserify/md5.js + as detected from PackageJson property "homepage" + + + https://github.com/crypto-browserify/md5.js/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/md5.js + + + + browserify-sign + 4.2.1 + adds node crypto signing for browsers + + + ISC + + + pkg:npm/browserify-sign@4.2.1?vcs_url=https://github.com/crypto-browserify/browserify-sign.git + + + https://github.com/crypto-browserify/browserify-sign.git + as detected from PackageJson property "repository.url" + + + https://github.com/crypto-browserify/browserify-sign/issues + as detected from PackageJson property "bugs.url" + + + + + readable-stream + 3.6.0 + Streams3, a user-land copy of the stream library from Node.js + + + MIT + + + pkg:npm/readable-stream@3.6.0?vcs_url=git://github.com/nodejs/readable-stream + + + git://github.com/nodejs/readable-stream + as detected from PackageJson property "repository.url" + + + + node_modules/browserify-sign/node_modules/readable-stream + + + + Feross Aboukhadijeh + safe-buffer + 5.2.1 + Safer Node.js Buffer API + + + MIT + + + pkg:npm/safe-buffer@5.2.1?vcs_url=git://github.com/feross/safe-buffer.git + + + git://github.com/feross/safe-buffer.git + as detected from PackageJson property "repository.url" + + + https://github.com/feross/safe-buffer + as detected from PackageJson property "homepage" + + + https://github.com/feross/safe-buffer/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/browserify-sign/node_modules/safe-buffer + + + + + node_modules/browserify-sign + + + + Fedor Indutny <fedor@indutny.com> + bn.js + 5.2.1 + Big number implementation in pure javascript + + + MIT + + + pkg:npm/bn.js@5.2.1?vcs_url=git@github.com:indutny/bn.js + + + https://github.com/indutny/bn.js + as detected from PackageJson property "homepage" + + + https://github.com/indutny/bn.js/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/bn.js + + + + browserify-rsa + 4.1.0 + RSA for browserify + + + MIT + + + pkg:npm/browserify-rsa@4.1.0?vcs_url=https://github.com:crypto-browserify/browserify-rsa.git + + + https://github.com:crypto-browserify/browserify-rsa.git + as detected from PackageJson property "repository.url" + + + https://github.com/crypto-browserify/browserify-rsa/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/browserify-rsa + + + + randombytes + 2.1.0 + random bytes from browserify stand alone + + + MIT + + + pkg:npm/randombytes@2.1.0?vcs_url=git@github.com:crypto-browserify/randombytes.git + + + https://github.com/crypto-browserify/randombytes + as detected from PackageJson property "homepage" + + + https://github.com/crypto-browserify/randombytes/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/randombytes + + + + create-hmac + 1.1.7 + node style hmacs in the browser + + + MIT + + + pkg:npm/create-hmac@1.1.7?vcs_url=https://github.com/crypto-browserify/createHmac.git + + + https://github.com/crypto-browserify/createHmac.git + as detected from PackageJson property "repository.url" + + + https://github.com/crypto-browserify/createHmac + as detected from PackageJson property "homepage" + + + https://github.com/crypto-browserify/createHmac/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/create-hmac + + + + Fedor Indutny <fedor@indutny.com> + elliptic + 6.5.4 + EC cryptography + + + MIT + + + pkg:npm/elliptic@6.5.4?vcs_url=git@github.com:indutny/elliptic + + + https://github.com/indutny/elliptic + as detected from PackageJson property "homepage" + + + https://github.com/indutny/elliptic/issues + as detected from PackageJson property "bugs.url" + + + + + Fedor Indutny <fedor@indutny.com> + bn.js + 4.12.0 + Big number implementation in pure javascript + + + MIT + + + pkg:npm/bn.js@4.12.0?vcs_url=git@github.com:indutny/bn.js + + + https://github.com/indutny/bn.js + as detected from PackageJson property "homepage" + + + https://github.com/indutny/bn.js/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/elliptic/node_modules/bn.js + + + + + node_modules/elliptic + + + + Fedor Indutny <fedor@indutny.com> + brorand + 1.1.0 + Random number generator for browsers and node.js + + + MIT + + + pkg:npm/brorand@1.1.0?vcs_url=git@github.com:indutny/brorand + + + https://github.com/indutny/brorand + as detected from PackageJson property "homepage" + + + https://github.com/indutny/brorand/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/brorand + + + + Fedor Indutny <fedor@indutny.com> + hash.js + 1.1.7 + Various hash functions that could be run by both browser and node + + + MIT + + + pkg:npm/hash.js@1.1.7?vcs_url=git@github.com:indutny/hash.js + + + https://github.com/indutny/hash.js + as detected from PackageJson property "homepage" + + + https://github.com/indutny/hash.js/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/hash.js + + + + Fedor Indutny <fedor@indutny.com> + hmac-drbg + 1.0.1 + Deterministic random bit generator (hmac) + + + MIT + + + pkg:npm/hmac-drbg@1.0.1?vcs_url=git+ssh://git@github.com/indutny/hmac-drbg.git + + + git+ssh://git@github.com/indutny/hmac-drbg.git + as detected from PackageJson property "repository.url" + + + https://github.com/indutny/hmac-drbg#readme + as detected from PackageJson property "homepage" + + + https://github.com/indutny/hmac-drbg/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/hmac-drbg + + + + Fedor Indutny <fedor@indutny.com> + minimalistic-crypto-utils + 1.0.1 + Minimalistic tools for JS crypto modules + + + MIT + + + pkg:npm/minimalistic-crypto-utils@1.0.1?vcs_url=git+ssh://git@github.com/indutny/minimalistic-crypto-utils.git + + + git+ssh://git@github.com/indutny/minimalistic-crypto-utils.git + as detected from PackageJson property "repository.url" + + + https://github.com/indutny/minimalistic-crypto-utils#readme + as detected from PackageJson property "homepage" + + + https://github.com/indutny/minimalistic-crypto-utils/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/minimalistic-crypto-utils + + + + parse-asn1 + 5.1.6 + utility library for parsing asn1 files for use with browserify-sign. + + + ISC + + + pkg:npm/parse-asn1@5.1.6?vcs_url=git://github.com/crypto-browserify/parse-asn1.git + + + git://github.com/crypto-browserify/parse-asn1.git + as detected from PackageJson property "repository.url" + + + + node_modules/parse-asn1 + + + + Fedor Indutny + asn1.js + 5.4.1 + ASN.1 encoder and decoder + + + MIT + + + pkg:npm/asn1.js@5.4.1?vcs_url=git@github.com:indutny/asn1.js + + + https://github.com/indutny/asn1.js + as detected from PackageJson property "homepage" + + + https://github.com/indutny/asn1.js/issues + as detected from PackageJson property "bugs.url" + + + + + Fedor Indutny <fedor@indutny.com> + bn.js + 4.12.0 + Big number implementation in pure javascript + + + MIT + + + pkg:npm/bn.js@4.12.0?vcs_url=git@github.com:indutny/bn.js + + + https://github.com/indutny/bn.js + as detected from PackageJson property "homepage" + + + https://github.com/indutny/bn.js/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/asn1.js/node_modules/bn.js + + + + + node_modules/asn1.js + + + + Nikita Skovoroda + safer-buffer + 2.1.2 + Modern Buffer API polyfill without footguns + + + MIT + + + pkg:npm/safer-buffer@2.1.2?vcs_url=git+https://github.com/ChALkeR/safer-buffer.git + + + git+https://github.com/ChALkeR/safer-buffer.git + as detected from PackageJson property "repository.url" + + + https://github.com/ChALkeR/safer-buffer/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/safer-buffer + + + + Daniel Cousens + pbkdf2 + 3.1.2 + This library provides the functionality of PBKDF2 with the ability to use any supported hashing algorithm returned from crypto.getHashes() + + + MIT + + + pkg:npm/pbkdf2@3.1.2?vcs_url=https://github.com/crypto-browserify/pbkdf2.git + + + https://github.com/crypto-browserify/pbkdf2.git + as detected from PackageJson property "repository.url" + + + https://github.com/crypto-browserify/pbkdf2 + as detected from PackageJson property "homepage" + + + https://github.com/crypto-browserify/pbkdf2/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/pbkdf2 + + + + string_decoder + 1.3.0 + The string_decoder module from Node core + + + MIT + + + pkg:npm/string_decoder@1.3.0?vcs_url=git://github.com/nodejs/string_decoder.git + + + git://github.com/nodejs/string_decoder.git + as detected from PackageJson property "repository.url" + + + https://github.com/nodejs/string_decoder + as detected from PackageJson property "homepage" + + + + + Feross Aboukhadijeh + safe-buffer + 5.2.1 + Safer Node.js Buffer API + + + MIT + + + pkg:npm/safe-buffer@5.2.1?vcs_url=git://github.com/feross/safe-buffer.git + + + git://github.com/feross/safe-buffer.git + as detected from PackageJson property "repository.url" + + + https://github.com/feross/safe-buffer + as detected from PackageJson property "homepage" + + + https://github.com/feross/safe-buffer/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/string_decoder/node_modules/safe-buffer + + + + + node_modules/string_decoder + + + + Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/) + util-deprecate + 1.0.2 + The Node.js `util.deprecate()` function with browser support + + + MIT + + + pkg:npm/util-deprecate@1.0.2?vcs_url=git://github.com/TooTallNate/util-deprecate.git + + + git://github.com/TooTallNate/util-deprecate.git + as detected from PackageJson property "repository.url" + + + https://github.com/TooTallNate/util-deprecate + as detected from PackageJson property "homepage" + + + https://github.com/TooTallNate/util-deprecate/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/util-deprecate + + + + Calvin Metcalf + create-ecdh + 4.0.4 + createECDH but browserifiable + + + MIT + + + pkg:npm/create-ecdh@4.0.4?vcs_url=https://github.com/crypto-browserify/createECDH.git + + + https://github.com/crypto-browserify/createECDH.git + as detected from PackageJson property "repository.url" + + + https://github.com/crypto-browserify/createECDH + as detected from PackageJson property "homepage" + + + https://github.com/crypto-browserify/createECDH/issues + as detected from PackageJson property "bugs.url" + + + + + Fedor Indutny <fedor@indutny.com> + bn.js + 4.12.0 + Big number implementation in pure javascript + + + MIT + + + pkg:npm/bn.js@4.12.0?vcs_url=git@github.com:indutny/bn.js + + + https://github.com/indutny/bn.js + as detected from PackageJson property "homepage" + + + https://github.com/indutny/bn.js/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/create-ecdh/node_modules/bn.js + + + + + node_modules/create-ecdh + + + + Kirill Fomichev <fanatid@ya.ru> (https://github.com/fanatid) + hash-projx + 3.1.0 + abstract projx class for hash-streams + + + MIT + + + pkg:npm/hash-projx@3.1.0?vcs_url=https://github.com/crypto-browserify/hash-projx.git + + + https://github.com/crypto-browserify/hash-projx.git + as detected from PackageJson property "repository.url" + + + https://github.com/crypto-browserify/hash-projx + as detected from PackageJson property "homepage" + + + https://github.com/crypto-browserify/hash-projx/issues + as detected from PackageJson property "bugs.url" + + + + + readable-stream + 3.6.0 + Streams3, a user-land copy of the stream library from Node.js + + + MIT + + + pkg:npm/readable-stream@3.6.0?vcs_url=git://github.com/nodejs/readable-stream + + + git://github.com/nodejs/readable-stream + as detected from PackageJson property "repository.url" + + + + node_modules/hash-projx/node_modules/readable-stream + + + + Feross Aboukhadijeh + safe-buffer + 5.2.1 + Safer Node.js Buffer API + + + MIT + + + pkg:npm/safe-buffer@5.2.1?vcs_url=git://github.com/feross/safe-buffer.git + + + git://github.com/feross/safe-buffer.git + as detected from PackageJson property "repository.url" + + + https://github.com/feross/safe-buffer + as detected from PackageJson property "homepage" + + + https://github.com/feross/safe-buffer/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/hash-projx/node_modules/safe-buffer + + + + + node_modules/hash-projx + + + + ripemd160 + 2.0.2 + Compute ripemd160 of bytes or strings. + + + MIT + + + pkg:npm/ripemd160@2.0.2?vcs_url=https://github.com/crypto-browserify/ripemd160 + + + https://github.com/crypto-browserify/ripemd160 + as detected from PackageJson property "repository.url" + + + + node_modules/ripemd160 + + + + Dominic Tarr <dominic.tarr@gmail.com> (dominictarr.com) + sha.js + 2.4.11 + Streamable SHA hashes in pure javascript + + (MIT AND BSD-3-Clause) + + pkg:npm/sha.js@2.4.11?vcs_url=git://github.com/crypto-browserify/sha.js.git + + + git://github.com/crypto-browserify/sha.js.git + as detected from PackageJson property "repository.url" + + + https://github.com/crypto-browserify/sha.js + as detected from PackageJson property "homepage" + + + + node_modules/sha.js + + + + Calvin Metcalf + diffie-hellman + 5.0.3 + pure js diffie-hellman + + + MIT + + + pkg:npm/diffie-hellman@5.0.3?vcs_url=https://github.com/crypto-browserify/diffie-hellman.git + + + https://github.com/crypto-browserify/diffie-hellman.git + as detected from PackageJson property "repository.url" + + + https://github.com/crypto-browserify/diffie-hellman + as detected from PackageJson property "homepage" + + + https://github.com/crypto-browserify/diffie-hellman/issues + as detected from PackageJson property "bugs.url" + + + + + Fedor Indutny <fedor@indutny.com> + bn.js + 4.12.0 + Big number implementation in pure javascript + + + MIT + + + pkg:npm/bn.js@4.12.0?vcs_url=git@github.com:indutny/bn.js + + + https://github.com/indutny/bn.js + as detected from PackageJson property "homepage" + + + https://github.com/indutny/bn.js/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/diffie-hellman/node_modules/bn.js + + + + + node_modules/diffie-hellman + + + + Fedor Indutny <fedor@indutny.com> + miller-rabin + 4.0.1 + Miller Rabin algorithm for primality test + + + MIT + + + pkg:npm/miller-rabin@4.0.1?vcs_url=git@github.com:indutny/miller-rabin + + + https://github.com/indutny/miller-rabin + as detected from PackageJson property "homepage" + + + https://github.com/indutny/miller-rabin/issues + as detected from PackageJson property "bugs.url" + + + + + Fedor Indutny <fedor@indutny.com> + bn.js + 4.12.0 + Big number implementation in pure javascript + + + MIT + + + pkg:npm/bn.js@4.12.0?vcs_url=git@github.com:indutny/bn.js + + + https://github.com/indutny/bn.js + as detected from PackageJson property "homepage" + + + https://github.com/indutny/bn.js/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/miller-rabin/node_modules/bn.js + + + + + node_modules/miller-rabin + + + + Calvin Metcalf + public-encrypt + 4.0.3 + browserify version of publicEncrypt & privateDecrypt + + + MIT + + + pkg:npm/public-encrypt@4.0.3?vcs_url=https://github.com/crypto-browserify/publicEncrypt.git + + + https://github.com/crypto-browserify/publicEncrypt.git + as detected from PackageJson property "repository.url" + + + https://github.com/crypto-browserify/publicEncrypt + as detected from PackageJson property "homepage" + + + https://github.com/crypto-browserify/publicEncrypt/issues + as detected from PackageJson property "bugs.url" + + + + + Fedor Indutny <fedor@indutny.com> + bn.js + 4.12.0 + Big number implementation in pure javascript + + + MIT + + + pkg:npm/bn.js@4.12.0?vcs_url=git@github.com:indutny/bn.js + + + https://github.com/indutny/bn.js + as detected from PackageJson property "homepage" + + + https://github.com/indutny/bn.js/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/public-encrypt/node_modules/bn.js + + + + + node_modules/public-encrypt + + + + randomfill + 1.0.4 + random fill from browserify stand alone + + + MIT + + + pkg:npm/randomfill@1.0.4?vcs_url=https://github.com/crypto-browserify/randomfill.git + + + https://github.com/crypto-browserify/randomfill.git + as detected from PackageJson property "repository.url" + + + https://github.com/crypto-browserify/randomfill + as detected from PackageJson property "homepage" + + + https://github.com/crypto-browserify/randomfill/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/randomfill + + + + 2013+ Bevry Pty Ltd <us@bevry.me> (http://bevry.me) + domain-browser + 1.2.0 + Node's domain module for the web browser. This is merely an evented try...catch with the same API as node, nothing more. + + + MIT + + + pkg:npm/domain-browser@1.2.0?vcs_url=https://github.com/bevry/domain-browser.git + + + https://github.com/bevry/domain-browser.git + as detected from PackageJson property "repository.url" + + + https://github.com/bevry/domain-browser + as detected from PackageJson property "homepage" + + + https://github.com/bevry/domain-browser/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/domain-browser + + + + Irakli Gozalishvili <rfobic@gmail.com> (http://jeditoolkit.com) + events + 3.3.0 + Node's event emitter for all engines. + + + MIT + + + pkg:npm/events@3.3.0?vcs_url=git://github.com/Gozala/events.git + + + git://github.com/Gozala/events.git + as detected from PackageJson property "repository.url" + + + http://github.com/Gozala/events/issues/ + as detected from PackageJson property "bugs.url" + + + + node_modules/events + + + + James Halliday + https-browserify + 1.0.0 + https module compatability for browserify + + + MIT + + + pkg:npm/https-browserify@1.0.0?vcs_url=git://github.com/substack/https-browserify.git + + + git://github.com/substack/https-browserify.git + as detected from PackageJson property "repository.url" + + + https://github.com/substack/https-browserify + as detected from PackageJson property "homepage" + + + + node_modules/https-browserify + + + + CoderPuppy <coderpup@gmail.com> + os-browserify + 0.3.0 + + + MIT + + + pkg:npm/os-browserify@0.3.0?vcs_url=http://github.com/CoderPuppy/os-browserify.git + + + http://github.com/CoderPuppy/os-browserify.git + as detected from PackageJson property "repository.url" + + + + node_modules/os-browserify + + + + James Halliday + path-browserify + 0.0.1 + the path module from node core for browsers + + + MIT + + + pkg:npm/path-browserify@0.0.1?vcs_url=git://github.com/substack/path-browserify.git + + + git://github.com/substack/path-browserify.git + as detected from PackageJson property "repository.url" + + + https://github.com/substack/path-browserify + as detected from PackageJson property "homepage" + + + + node_modules/path-browserify + + + + Roman Shtylman <shtylman@gmail.com> + process + 0.11.10 + process information for node.js and browsers + + + MIT + + + pkg:npm/process@0.11.10?vcs_url=git://github.com/shtylman/node-process.git + + + git://github.com/shtylman/node-process.git + as detected from PackageJson property "repository.url" + + + + node_modules/process + + + + Mathias Bynens + punycode + 1.4.1 + A robust Punycode converter that fully complies to RFC 3492 and RFC 5891, and works on nearly all JavaScript platforms. + + + MIT + + + pkg:npm/punycode@1.4.1?vcs_url=https://github.com/bestiejs/punycode.js.git + + + https://github.com/bestiejs/punycode.js.git + as detected from PackageJson property "repository.url" + + + https://mths.be/punycode + as detected from PackageJson property "homepage" + + + https://github.com/bestiejs/punycode.js/issues + as detected from PackageJson property "bugs" + + + + node_modules/punycode + + + + Irakli Gozalishvili <rfobic@gmail.com> + querystring-es3 + 0.2.1 + Node's querystring module for all engines. (ES3 compat fork) + + + MIT + https://github.com/Gozala/enchain/License.md + + + pkg:npm/querystring-es3@0.2.1?vcs_url=git://github.com/mike-spainhower/querystring.git + + + git://github.com/mike-spainhower/querystring.git + as detected from PackageJson property "repository.url" + + + http://github.com/mike-spainhower/querystring/issues/ + as detected from PackageJson property "bugs.url" + + + + node_modules/querystring-es3 + + + + James Halliday + stream-browserify + 2.0.2 + the stream module from node core for browsers + + + MIT + + + pkg:npm/stream-browserify@2.0.2?vcs_url=git://github.com/browserify/stream-browserify.git + + + git://github.com/browserify/stream-browserify.git + as detected from PackageJson property "repository.url" + + + https://github.com/browserify/stream-browserify + as detected from PackageJson property "homepage" + + + + node_modules/stream-browserify + + + + John Hiesey + stream-http + 2.8.3 + Streaming http in the browser + + + MIT + + + pkg:npm/stream-http@2.8.3?vcs_url=git://github.com/jhiesey/stream-http.git + + + git://github.com/jhiesey/stream-http.git + as detected from PackageJson property "repository.url" + + + https://github.com/jhiesey/stream-http#readme + as detected from PackageJson property "homepage" + + + https://github.com/jhiesey/stream-http/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/stream-http + + + + Ben Drucker + builtin-status-codes + 3.0.0 + The map of HTTP status codes from the builtin http module + + + MIT + + + pkg:npm/builtin-status-codes@3.0.0?vcs_url=bendrucker/builtin-status-codes + + + bendrucker/builtin-status-codes + as detected from PackageJson property "repository" + + + + node_modules/builtin-status-codes + + + + John Hiesey + to-arraybuffer + 1.0.1 + Get an ArrayBuffer from a Buffer as fast as possible + + + MIT + + + pkg:npm/to-arraybuffer@1.0.1?vcs_url=git://github.com/jhiesey/to-arraybuffer.git + + + git://github.com/jhiesey/to-arraybuffer.git + as detected from PackageJson property "repository.url" + + + https://github.com/jhiesey/to-arraybuffer#readme + as detected from PackageJson property "homepage" + + + https://github.com/jhiesey/to-arraybuffer/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/to-arraybuffer + + + + Raynos <raynos2@gmail.com> + xtend + 4.0.2 + extend like a boss + + + MIT + + + pkg:npm/xtend@4.0.2?vcs_url=git://github.com/Raynos/xtend.git + + + git://github.com/Raynos/xtend.git + as detected from PackageJson property "repository" + + + https://github.com/Raynos/xtend + as detected from PackageJson property "homepage" + + + https://github.com/Raynos/xtend/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/xtend + + + + J. Ryan Stinnett <jryans@gmail.com> (https://convolv.es/) + timers-browserify + 2.0.12 + timers module for browserify + + + MIT + + + pkg:npm/timers-browserify@2.0.12?vcs_url=git://github.com/jryans/timers-browserify.git + + + git://github.com/jryans/timers-browserify.git + as detected from PackageJson property "repository.url" + + + https://github.com/jryans/timers-browserify + as detected from PackageJson property "homepage" + + + https://github.com/jryans/timers-browserify/issues + as detected from PackageJson property "bugs" + + + + node_modules/timers-browserify + + + + YuzuJS + setimmediate + 1.0.5 + A shim for the setImmediate efficient script yielding API + + + MIT + + + pkg:npm/setimmediate@1.0.5?vcs_url=YuzuJS/setImmediate + + + YuzuJS/setImmediate + as detected from PackageJson property "repository" + + + + node_modules/setimmediate + + + + James Halliday + tty-browserify + 0.0.0 + the tty module from node core for browsers + + + MIT + + + pkg:npm/tty-browserify@0.0.0?vcs_url=git://github.com/substack/tty-browserify.git + + + git://github.com/substack/tty-browserify.git + as detected from PackageJson property "repository.url" + + + https://github.com/substack/tty-browserify + as detected from PackageJson property "homepage" + + + + node_modules/tty-browserify + + + + url + 0.11.0 + The core `url` packaged standalone for use with Browserify. + + + MIT + + + pkg:npm/url@0.11.0?vcs_url=https://github.com/defunctzombie/node-url.git + + + https://github.com/defunctzombie/node-url.git + as detected from PackageJson property "repository.url" + + + + + Mathias Bynens + punycode + 1.3.2 + A robust Punycode converter that fully complies to RFC 3492 and RFC 5891, and works on nearly all JavaScript platforms. + + + MIT + + + pkg:npm/punycode@1.3.2?vcs_url=https://github.com/bestiejs/punycode.js.git + + + https://github.com/bestiejs/punycode.js.git + as detected from PackageJson property "repository.url" + + + https://mths.be/punycode + as detected from PackageJson property "homepage" + + + https://github.com/bestiejs/punycode.js/issues + as detected from PackageJson property "bugs" + + + + node_modules/url/node_modules/punycode + + + + + node_modules/url + + + + Joyent + util + 0.11.1 + Node.JS util module + + + MIT + + + pkg:npm/util@0.11.1?vcs_url=git://github.com/defunctzombie/node-util + + + git://github.com/defunctzombie/node-util + as detected from PackageJson property "repository.url" + + + https://github.com/defunctzombie/node-util + as detected from PackageJson property "homepage" + + + + + inherits + 2.0.3 + Browser-friendly inheritance fully compatible with standard node.js inherits() + + + ISC + + + pkg:npm/inherits@2.0.3?vcs_url=git://github.com/isaacs/inherits + + + git://github.com/isaacs/inherits + as detected from PackageJson property "repository" + + + + node_modules/util/node_modules/inherits + + + + + node_modules/util + + + + James Halliday + vm-browserify + 1.1.2 + vm module for the browser + + + MIT + + + pkg:npm/vm-browserify@1.1.2?vcs_url=http://github.com/substack/vm-browserify.git + + + http://github.com/substack/vm-browserify.git + as detected from PackageJson property "repository.url" + + + + node_modules/vm-browserify + + + + ajv-errors + 1.0.1 + Custom error messages in JSON-Schema for Ajv validator + + + MIT + + + pkg:npm/ajv-errors@1.0.1?vcs_url=git+https://github.com/epoberezkin/ajv-errors.git + + + git+https://github.com/epoberezkin/ajv-errors.git + as detected from PackageJson property "repository.url" + + + https://github.com/epoberezkin/ajv-errors#readme + as detected from PackageJson property "homepage" + + + https://github.com/epoberezkin/ajv-errors/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/ajv-errors + + + + webpack Contrib Team + terser-webpack-plugin + 1.4.5 + Terser plugin for webpack + + + MIT + + + pkg:npm/terser-webpack-plugin@1.4.5?vcs_url=webpack-contrib/terser-webpack-plugin + + + webpack-contrib/terser-webpack-plugin + as detected from PackageJson property "repository" + + + https://github.com/webpack-contrib/terser-webpack-plugin + as detected from PackageJson property "homepage" + + + https://github.com/webpack-contrib/terser-webpack-plugin/issues + as detected from PackageJson property "bugs" + + + + + Kat Marchan + cacache + 12.0.4 + Fast, fault-tolerant, cross-platform, disk-projxd, data-agnostic, content-addressable cache. + + + ISC + + + pkg:npm/cacache@12.0.4?vcs_url=https://github.com/npm/cacache + + + https://github.com/npm/cacache + as detected from PackageJson property "repository" + + + + node_modules/terser-webpack-plugin/node_modules/cacache + + + + max ogden + mississippi + 3.0.0 + a collection of useful streams + + + BSD-2-Clause + + + pkg:npm/mississippi@3.0.0?vcs_url=git+https://github.com/maxogden/mississippi.git + + + git+https://github.com/maxogden/mississippi.git + as detected from PackageJson property "repository.url" + + + https://github.com/maxogden/mississippi#readme + as detected from PackageJson property "homepage" + + + https://github.com/maxogden/mississippi/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/terser-webpack-plugin/node_modules/mississippi + + + + find-cache-dir + 2.1.0 + Finds the common standard cache directory + + + MIT + + + pkg:npm/find-cache-dir@2.1.0?vcs_url=avajs/find-cache-dir + + + avajs/find-cache-dir + as detected from PackageJson property "repository" + + + + node_modules/terser-webpack-plugin/node_modules/find-cache-dir + + + + Sindre Sorhus + make-dir + 2.1.0 + Make a directory and its parents if needed - Think `mkdir -p` + + + MIT + + + pkg:npm/make-dir@2.1.0?vcs_url=sindresorhus/make-dir + + + sindresorhus/make-dir + as detected from PackageJson property "repository" + + + + node_modules/terser-webpack-plugin/node_modules/make-dir + + + + semver + 5.7.1 + The semantic version parser used by npm. + + + ISC + + + pkg:npm/semver@5.7.1?vcs_url=https://github.com/npm/node-semver + + + https://github.com/npm/node-semver + as detected from PackageJson property "repository" + + + + node_modules/terser-webpack-plugin/node_modules/semver + + + + Sindre Sorhus + pkg-dir + 3.0.0 + Find the root directory of a Node.js project or npm package + + + MIT + + + pkg:npm/pkg-dir@3.0.0?vcs_url=sindresorhus/pkg-dir + + + sindresorhus/pkg-dir + as detected from PackageJson property "repository" + + + + node_modules/terser-webpack-plugin/node_modules/pkg-dir + + + + Sindre Sorhus + find-up + 3.0.0 + Find a file or directory by walking up parent directories + + + MIT + + + pkg:npm/find-up@3.0.0?vcs_url=sindresorhus/find-up + + + sindresorhus/find-up + as detected from PackageJson property "repository" + + + + node_modules/terser-webpack-plugin/node_modules/find-up + + + + Sindre Sorhus + locate-path + 3.0.0 + Get the first path that exists on disk of multiple paths + + + MIT + + + pkg:npm/locate-path@3.0.0?vcs_url=sindresorhus/locate-path + + + sindresorhus/locate-path + as detected from PackageJson property "repository" + + + + node_modules/terser-webpack-plugin/node_modules/locate-path + + + + Sindre Sorhus + p-locate + 3.0.0 + Get the first fulfilled promise that satisfies the provided testing function + + + MIT + + + pkg:npm/p-locate@3.0.0?vcs_url=sindresorhus/p-locate + + + sindresorhus/p-locate + as detected from PackageJson property "repository" + + + + node_modules/terser-webpack-plugin/node_modules/p-locate + + + + Sindre Sorhus + p-limit + 2.3.0 + Run multiple promise-returning & async functions with limited concurrency + + + MIT + + + pkg:npm/p-limit@2.3.0?vcs_url=sindresorhus/p-limit + + + sindresorhus/p-limit + as detected from PackageJson property "repository" + + + + node_modules/terser-webpack-plugin/node_modules/p-limit + + + + Sindre Sorhus + p-try + 2.2.0 + `Start a promise chain + + + MIT + + + pkg:npm/p-try@2.2.0?vcs_url=sindresorhus/p-try + + + sindresorhus/p-try + as detected from PackageJson property "repository" + + + + node_modules/terser-webpack-plugin/node_modules/p-try + + + + Sindre Sorhus + is-wsl + 1.1.0 + Check if the process is running inside Windows Subsystem for Linux (Bash on Windows) + + + MIT + + + pkg:npm/is-wsl@1.1.0?vcs_url=sindresorhus/is-wsl + + + sindresorhus/is-wsl + as detected from PackageJson property "repository" + + + + node_modules/terser-webpack-plugin/node_modules/is-wsl + + + + webpack Contrib (https://github.com/webpack-contrib) + schema-utils + 1.0.0 + webpack Validation Utils + + + MIT + + + pkg:npm/schema-utils@1.0.0?vcs_url=https://github.com/webpack-contrib/schema-utils + + + https://github.com/webpack-contrib/schema-utils + as detected from PackageJson property "repository" + + + https://github.com/webpack-contrib/schema-utils + as detected from PackageJson property "homepage" + + + https://github.com/webpack-contrib/schema-utils/issues + as detected from PackageJson property "bugs" + + + + node_modules/terser-webpack-plugin/node_modules/schema-utils + + + + Eric Ferraiuolo <edf@ericf.me> + serialize-javascript + 4.0.0 + Serialize JavaScript to a superset of JSON that includes regular expressions and functions. + + + BSD-3-Clause + + + pkg:npm/serialize-javascript@4.0.0?vcs_url=git+https://github.com/yahoo/serialize-javascript.git + + + git+https://github.com/yahoo/serialize-javascript.git + as detected from PackageJson property "repository.url" + + + https://github.com/yahoo/serialize-javascript + as detected from PackageJson property "homepage" + + + https://github.com/yahoo/serialize-javascript/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/terser-webpack-plugin/node_modules/serialize-javascript + + + + + node_modules/terser-webpack-plugin + + + + Tobias Koppers @sokra + watchpack + 1.7.5 + + + MIT + + + pkg:npm/watchpack@1.7.5?vcs_url=https://github.com/webpack/watchpack.git + + + https://github.com/webpack/watchpack.git + as detected from PackageJson property "repository.url" + + + https://github.com/webpack/watchpack + as detected from PackageJson property "homepage" + + + https://github.com/webpack/watchpack/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/watchpack + + + + Paul Miller (https://paulmillr.com) + chokidar + 3.5.3 + Minimal and efficient cross-platform file watching library + + + MIT + + + pkg:npm/chokidar@3.5.3?vcs_url=git+https://github.com/paulmillr/chokidar.git + + + git+https://github.com/paulmillr/chokidar.git + as detected from PackageJson property "repository.url" + + + https://github.com/paulmillr/chokidar + as detected from PackageJson property "homepage" + + + https://github.com/paulmillr/chokidar/issues + as detected from PackageJson property "bugs.url" + + + + + Elan Shanker + anymatch + 3.1.2 + Matches strings against configurable strings, globs, regular expressions, and/or functions + + + ISC + + + pkg:npm/anymatch@3.1.2?vcs_url=https://github.com/micromatch/anymatch + + + https://github.com/micromatch/anymatch + as detected from PackageJson property "repository.url" + + + https://github.com/micromatch/anymatch + as detected from PackageJson property "homepage" + + + + node_modules/chokidar/node_modules/anymatch + + + + Jon Schlinkert (https://github.com/jonschlinkert) + braces + 3.0.2 + 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. + + + MIT + + + pkg:npm/braces@3.0.2?vcs_url=micromatch/braces + + + micromatch/braces + as detected from PackageJson property "repository" + + + https://github.com/micromatch/braces + as detected from PackageJson property "homepage" + + + https://github.com/micromatch/braces/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/chokidar/node_modules/braces + + + + Jon Schlinkert (https://github.com/jonschlinkert) + fill-range + 7.0.1 + 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` + + + MIT + + + pkg:npm/fill-range@7.0.1?vcs_url=jonschlinkert/fill-range + + + jonschlinkert/fill-range + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/fill-range + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/fill-range/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/chokidar/node_modules/fill-range + + + + Jon Schlinkert (https://github.com/jonschlinkert) + to-regex-range + 5.0.1 + Pass two numbers, get a regex-compatible source string for matching ranges. Validated against more than 2.78 million test assertions. + + + MIT + + + pkg:npm/to-regex-range@5.0.1?vcs_url=micromatch/to-regex-range + + + micromatch/to-regex-range + as detected from PackageJson property "repository" + + + https://github.com/micromatch/to-regex-range + as detected from PackageJson property "homepage" + + + https://github.com/micromatch/to-regex-range/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/chokidar/node_modules/to-regex-range + + + + Jon Schlinkert (https://github.com/jonschlinkert) + is-number + 7.0.0 + Returns true if a number or string value is a finite number. Useful for regex matches, parsing, user input, etc. + + + MIT + + + pkg:npm/is-number@7.0.0?vcs_url=jonschlinkert/is-number + + + jonschlinkert/is-number + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-number + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-number/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/chokidar/node_modules/is-number + + + + Gulp Team <team@gulpjs.com> (https://gulpjs.com/) + glob-parent + 5.1.2 + Extract the non-magic parent path from a glob string. + + + ISC + + + pkg:npm/glob-parent@5.1.2?vcs_url=gulpjs/glob-parent + + + gulpjs/glob-parent + as detected from PackageJson property "repository" + + + + node_modules/chokidar/node_modules/glob-parent + + + + + node_modules/chokidar + + + + Tobias Koppers @sokra + watchpack-chokidar2 + 2.0.1 + + + MIT + + + pkg:npm/watchpack-chokidar2@2.0.1?vcs_url=https://github.com/webpack/watchpack.git + + + https://github.com/webpack/watchpack.git + as detected from PackageJson property "repository.url" + + + https://github.com/webpack/watchpack + as detected from PackageJson property "homepage" + + + https://github.com/webpack/watchpack/issues + as detected from PackageJson property "bugs.url" + + + + + Paul Miller (https://paulmillr.com), Elan Shanker + chokidar + 2.1.8 + A neat wrapper around node.js fs.watch / fs.watchFile / fsevents. + + + MIT + + + pkg:npm/chokidar@2.1.8?vcs_url=https://github.com/paulmillr/chokidar.git + + + https://github.com/paulmillr/chokidar.git + as detected from PackageJson property "repository.url" + + + https://github.com/paulmillr/chokidar + as detected from PackageJson property "homepage" + + + https://github.com/paulmillr/chokidar/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/watchpack-chokidar2/node_modules/chokidar + + + + Sindre Sorhus + is-binary-path + 1.0.1 + Check if a filepath is a binary file + + + MIT + + + pkg:npm/is-binary-path@1.0.1?vcs_url=sindresorhus/is-binary-path + + + sindresorhus/is-binary-path + as detected from PackageJson property "repository" + + + + node_modules/watchpack-chokidar2/node_modules/is-binary-path + + + + Sindre Sorhus + binary-extensions + 1.13.1 + List of binary file extensions + + + MIT + + + pkg:npm/binary-extensions@1.13.1?vcs_url=sindresorhus/binary-extensions + + + sindresorhus/binary-extensions + as detected from PackageJson property "repository" + + + + node_modules/watchpack-chokidar2/node_modules/binary-extensions + + + + Thorsten Lorenz <thlorenz@gmx.de> (thlorenz.com) + readdirp + 2.2.1 + Recursive version of fs.readdir with streaming api. + + + MIT + + + pkg:npm/readdirp@2.2.1?vcs_url=git://github.com/paulmillr/readdirp.git + + + git://github.com/paulmillr/readdirp.git + as detected from PackageJson property "repository.url" + + + https://github.com/paulmillr/readdirp + as detected from PackageJson property "homepage" + + + + node_modules/watchpack-chokidar2/node_modules/readdirp + + + + + node_modules/watchpack-chokidar2 + + + + Elan Shanker + anymatch + 2.0.0 + Matches strings against configurable strings, globs, regular expressions, and/or functions + + + ISC + + + pkg:npm/anymatch@2.0.0?vcs_url=https://github.com/micromatch/anymatch + + + https://github.com/micromatch/anymatch + as detected from PackageJson property "repository.url" + + + https://github.com/micromatch/anymatch + as detected from PackageJson property "homepage" + + + https://github.com/micromatch/anymatch/issues + as detected from PackageJson property "bugs.url" + + + + + Jon Schlinkert (https://github.com/jonschlinkert) + normalize-path + 2.1.1 + 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. + + + MIT + + + pkg:npm/normalize-path@2.1.1?vcs_url=jonschlinkert/normalize-path + + + jonschlinkert/normalize-path + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/normalize-path + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/normalize-path/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/anymatch/node_modules/normalize-path + + + + + node_modules/anymatch + + + + Paul Miller (https://paulmillr.com/) + async-each + 1.0.3 + No-bullshit, ultra-simple, 35-lines-of-code async parallel forEach / map function for JavaScript. + + + MIT + + + pkg:npm/async-each@1.0.3?vcs_url=git://github.com/paulmillr/async-each.git + + + git://github.com/paulmillr/async-each.git + as detected from PackageJson property "repository" + + + https://github.com/paulmillr/async-each/ + as detected from PackageJson property "homepage" + + + + node_modules/async-each + + + + Elan Shanker (https://github.com/es128) + glob-parent + 3.1.0 + Strips glob magic from a string to provide the parent directory path + + + ISC + + + pkg:npm/glob-parent@3.1.0?vcs_url=https://github.com/es128/glob-parent + + + https://github.com/es128/glob-parent + as detected from PackageJson property "repository.url" + + + https://github.com/es128/glob-parent + as detected from PackageJson property "homepage" + + + https://github.com/es128/glob-parent/issues + as detected from PackageJson property "bugs.url" + + + + + Jon Schlinkert (https://github.com/jonschlinkert) + is-glob + 3.1.0 + 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. + + + MIT + + + pkg:npm/is-glob@3.1.0?vcs_url=jonschlinkert/is-glob + + + jonschlinkert/is-glob + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-glob + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-glob/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/glob-parent/node_modules/is-glob + + + + + node_modules/glob-parent + + + + Jon Schlinkert (https://github.com/jonschlinkert) + is-glob + 4.0.3 + 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. + + + MIT + + + pkg:npm/is-glob@4.0.3?vcs_url=micromatch/is-glob + + + micromatch/is-glob + as detected from PackageJson property "repository" + + + https://github.com/micromatch/is-glob + as detected from PackageJson property "homepage" + + + https://github.com/micromatch/is-glob/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/is-glob + + + + Jon Schlinkert (https://github.com/jonschlinkert) + normalize-path + 3.0.0 + 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. + + + MIT + + + pkg:npm/normalize-path@3.0.0?vcs_url=jonschlinkert/normalize-path + + + jonschlinkert/normalize-path + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/normalize-path + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/normalize-path/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/normalize-path + + + + Sindre Sorhus + path-is-absolute + 1.0.1 + Node.js 0.12 path.isAbsolute() ponyfill + + + MIT + + + pkg:npm/path-is-absolute@1.0.1?vcs_url=sindresorhus/path-is-absolute + + + sindresorhus/path-is-absolute + as detected from PackageJson property "repository" + + + + node_modules/path-is-absolute + + + + Angelos Pikoulas + upath + 1.2.0 + A proxy to `path`, replacing `\` with `/` for all results & new methods to normalize & join keeping leading `./` and add, change, default, trim file extensions. + + + MIT + + + pkg:npm/upath@1.2.0?vcs_url=git://github.com/anodynos/upath + + + git://github.com/anodynos/upath + as detected from PackageJson property "repository.url" + + + http://github.com/anodynos/upath/ + as detected from PackageJson property "homepage" + + + http://github.com/anodynos/upath/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/upath + + + + Tobias Koppers @sokra + webpack-sources + 1.4.3 + Source code handling classes for webpack + + + MIT + + + pkg:npm/webpack-sources@1.4.3?vcs_url=git+https://github.com/webpack/webpack-sources.git + + + git+https://github.com/webpack/webpack-sources.git + as detected from PackageJson property "repository.url" + + + https://github.com/webpack/webpack-sources#readme + as detected from PackageJson property "homepage" + + + https://github.com/webpack/webpack-sources/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/webpack-sources + + + + Evan You + @vue + cli-plugin-eslint + 3.12.1 + eslint plugin for vue-cli + + + MIT + + + pkg:npm/%40vue/cli-plugin-eslint@3.12.1?vcs_url=git+https://github.com/vuejs/vue-cli.git#packages/@vue/cli-plugin-eslint + + + git+https://github.com/vuejs/vue-cli.git#packages/@vue/cli-plugin-eslint + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://github.com/vuejs/vue-cli/tree/dev/packages/@vue/cli-plugin-eslint#readme + as detected from PackageJson property "homepage" + + + https://github.com/vuejs/vue-cli/issues + as detected from PackageJson property "bugs.url" + + + + + Toru Nagashima (https://github.com/mysticatea) + eslint-plugin-vue + 4.7.1 + Official ESLint plugin for Vue.js + + + MIT + + + pkg:npm/eslint-plugin-vue@4.7.1?vcs_url=git+https://github.com/vuejs/eslint-plugin-vue.git + + + git+https://github.com/vuejs/eslint-plugin-vue.git + as detected from PackageJson property "repository.url" + + + https://github.com/vuejs/eslint-plugin-vue#readme + as detected from PackageJson property "homepage" + + + https://github.com/vuejs/eslint-plugin-vue/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/@vue/cli-plugin-eslint/node_modules/eslint-plugin-vue + + + + Nicholas C. Zakas <nicholas+npm@nczconsulting.com> + eslint + 4.19.1 + An AST-projxd pattern checker for JavaScript. + + + MIT + + + pkg:npm/eslint@4.19.1?vcs_url=eslint/eslint + + + eslint/eslint + as detected from PackageJson property "repository" + + + https://eslint.org + as detected from PackageJson property "homepage" + + + https://github.com/eslint/eslint/issues/ + as detected from PackageJson property "bugs" + + + + node_modules/@vue/cli-plugin-eslint/node_modules/eslint + + + + Toru Nagashima + vue-eslint-parser + 2.0.3 + The ESLint custom parser for `.vue` files. + + + MIT + + + pkg:npm/vue-eslint-parser@2.0.3?vcs_url=git+https://github.com/mysticatea/vue-eslint-parser.git + + + git+https://github.com/mysticatea/vue-eslint-parser.git + as detected from PackageJson property "repository.url" + + + https://github.com/mysticatea/vue-eslint-parser#readme + as detected from PackageJson property "homepage" + + + https://github.com/mysticatea/vue-eslint-parser/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/@vue/cli-plugin-eslint/node_modules/vue-eslint-parser + + + + TJ Holowaychuk <tj@vision-media.ca> + debug + 3.2.7 + small debugging utility + + + MIT + + + pkg:npm/debug@3.2.7?vcs_url=git://github.com/visionmedia/debug.git + + + git://github.com/visionmedia/debug.git + as detected from PackageJson property "repository.url" + + + + node_modules/@vue/cli-plugin-eslint/node_modules/debug + + + + eslint-scope + 3.7.3 + ECMAScript scope analyzer for ESLint + + + BSD-2-Clause + + + pkg:npm/eslint-scope@3.7.3?vcs_url=eslint/eslint-scope + + + eslint/eslint-scope + as detected from PackageJson property "repository" + + + http://github.com/eslint/eslint-scope + as detected from PackageJson property "homepage" + + + https://github.com/eslint/eslint-scope/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/@vue/cli-plugin-eslint/node_modules/eslint-scope + + + + Nicholas C. Zakas <nicholas+npm@nczconsulting.com> + espree + 3.5.4 + An Esprima-compatible JavaScript parser built on Acorn + + + BSD-2-Clause + + + pkg:npm/espree@3.5.4?vcs_url=eslint/espree + + + eslint/espree + as detected from PackageJson property "repository" + + + https://github.com/eslint/espree + as detected from PackageJson property "homepage" + + + http://github.com/eslint/espree.git + as detected from PackageJson property "bugs.url" + + + + node_modules/@vue/cli-plugin-eslint/node_modules/espree + + + + Evgeny Poberezkin + ajv + 5.5.2 + Another JSON Schema Validator + + + MIT + + + pkg:npm/ajv@5.5.2?vcs_url=https://github.com/epoberezkin/ajv.git + + + https://github.com/epoberezkin/ajv.git + as detected from PackageJson property "repository.url" + + + https://github.com/epoberezkin/ajv + as detected from PackageJson property "homepage" + + + https://github.com/epoberezkin/ajv/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/@vue/cli-plugin-eslint/node_modules/ajv + + + + Evgeny Poberezkin + fast-deep-equal + 1.1.0 + Fast deep equal + + + MIT + + + pkg:npm/fast-deep-equal@1.1.0?vcs_url=git+https://github.com/epoberezkin/fast-deep-equal.git + + + git+https://github.com/epoberezkin/fast-deep-equal.git + as detected from PackageJson property "repository.url" + + + https://github.com/epoberezkin/fast-deep-equal#readme + as detected from PackageJson property "homepage" + + + https://github.com/epoberezkin/fast-deep-equal/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/@vue/cli-plugin-eslint/node_modules/fast-deep-equal + + + + Evgeny Poberezkin + json-schema-traverse + 0.3.1 + Traverse JSON Schema passing each schema object to callback + + + MIT + + + pkg:npm/json-schema-traverse@0.3.1?vcs_url=git+https://github.com/epoberezkin/json-schema-traverse.git + + + git+https://github.com/epoberezkin/json-schema-traverse.git + as detected from PackageJson property "repository.url" + + + https://github.com/epoberezkin/json-schema-traverse#readme + as detected from PackageJson property "homepage" + + + https://github.com/epoberezkin/json-schema-traverse/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/@vue/cli-plugin-eslint/node_modules/json-schema-traverse + + + + IndigoUnited <hello@indigounited.com> (http://indigounited.com) + cross-spawn + 5.1.0 + Cross platform child_process#spawn and child_process#spawnSync + + + MIT + + + pkg:npm/cross-spawn@5.1.0?vcs_url=git://github.com/IndigoUnited/node-cross-spawn.git + + + git://github.com/IndigoUnited/node-cross-spawn.git + as detected from PackageJson property "repository.url" + + + https://github.com/IndigoUnited/node-cross-spawn/issues/ + as detected from PackageJson property "bugs.url" + + + + node_modules/@vue/cli-plugin-eslint/node_modules/cross-spawn + + + + Isaac Z. Schlueter <i@izs.me> + lru-cache + 4.1.5 + A cache object that deletes the least-recently-used items. + + + ISC + + + pkg:npm/lru-cache@4.1.5?vcs_url=git://github.com/isaacs/node-lru-cache.git + + + git://github.com/isaacs/node-lru-cache.git + as detected from PackageJson property "repository" + + + + node_modules/@vue/cli-plugin-eslint/node_modules/lru-cache + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + yallist + 2.1.2 + Yet Another Linked List + + + ISC + + + pkg:npm/yallist@2.1.2?vcs_url=git+https://github.com/isaacs/yallist.git + + + git+https://github.com/isaacs/yallist.git + as detected from PackageJson property "repository.url" + + + + node_modules/@vue/cli-plugin-eslint/node_modules/yallist + + + + doctrine + 2.1.0 + JSDoc parser + + + Apache-2.0 + + + pkg:npm/doctrine@2.1.0?vcs_url=eslint/doctrine + + + eslint/doctrine + as detected from PackageJson property "repository" + + + https://github.com/eslint/doctrine + as detected from PackageJson property "homepage" + + + + node_modules/@vue/cli-plugin-eslint/node_modules/doctrine + + + + acorn-jsx + 3.0.1 + Alternative, faster React.js JSX parser + + + MIT + + + pkg:npm/acorn-jsx@3.0.1?vcs_url=https://github.com/RReverser/acorn-jsx + + + https://github.com/RReverser/acorn-jsx + as detected from PackageJson property "repository.url" + + + https://github.com/RReverser/acorn-jsx + as detected from PackageJson property "homepage" + + + + + acorn + 3.3.0 + ECMAScript parser + + + MIT + + + pkg:npm/acorn@3.3.0?vcs_url=https://github.com/ternjs/acorn.git + + + https://github.com/ternjs/acorn.git + as detected from PackageJson property "repository.url" + + + https://github.com/ternjs/acorn + as detected from PackageJson property "homepage" + + + + node_modules/@vue/cli-plugin-eslint/node_modules/acorn-jsx/node_modules/acorn + + + + + node_modules/@vue/cli-plugin-eslint/node_modules/acorn-jsx + + + + acorn + 5.7.4 + ECMAScript parser + + + MIT + + + pkg:npm/acorn@5.7.4?vcs_url=https://github.com/acornjs/acorn.git + + + https://github.com/acornjs/acorn.git + as detected from PackageJson property "repository.url" + + + https://github.com/acornjs/acorn + as detected from PackageJson property "homepage" + + + + node_modules/@vue/cli-plugin-eslint/node_modules/acorn + + + + Roy Riojas + file-entry-cache + 2.0.0 + 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 + + + MIT + + + pkg:npm/file-entry-cache@2.0.0?vcs_url=royriojas/file-entry-cache + + + royriojas/file-entry-cache + as detected from PackageJson property "repository" + + + + node_modules/@vue/cli-plugin-eslint/node_modules/file-entry-cache + + + + Roy Riojas + flat-cache + 1.3.4 + A stupidly simple key/value storage using files to persist some data + + + MIT + + + pkg:npm/flat-cache@1.3.4?vcs_url=royriojas/flat-cache + + + royriojas/flat-cache + as detected from PackageJson property "repository" + + + + node_modules/@vue/cli-plugin-eslint/node_modules/flat-cache + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + rimraf + 2.6.3 + A deep deletion module for node (like `rm -rf`) + + + ISC + + + pkg:npm/rimraf@2.6.3?vcs_url=git://github.com/isaacs/rimraf.git + + + git://github.com/isaacs/rimraf.git + as detected from PackageJson property "repository" + + + + node_modules/@vue/cli-plugin-eslint/node_modules/rimraf + + + + Jon Schlinkert (https://github.com/jonschlinkert) + write + 0.2.1 + Write files to disk, creating intermediate directories if they don't exist. + + + MIT + + + pkg:npm/write@0.2.1?vcs_url=jonschlinkert/write + + + jonschlinkert/write + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/write + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/write/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/@vue/cli-plugin-eslint/node_modules/write + + + + kael + ignore + 3.3.10 + Ignore is a manager and filter for .gitignore rules. + + + MIT + + + pkg:npm/ignore@3.3.10?vcs_url=git@github.com:kaelzhang/node-ignore.git + + + https://github.com/kaelzhang/node-ignore/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/@vue/cli-plugin-eslint/node_modules/ignore + + + + Simon Boudrias <admin@simonboudrias.com> + inquirer + 3.3.0 + A collection of common interactive command line user interfaces. + + + MIT + + + pkg:npm/inquirer@3.3.0?vcs_url=SBoudrias/Inquirer.js + + + SBoudrias/Inquirer.js + as detected from PackageJson property "repository" + + + + node_modules/@vue/cli-plugin-eslint/node_modules/inquirer + + + + Kevin Gravier <kevin@mrkmg.com> (https://mrkmg.com) + external-editor + 2.2.0 + Edit a string with the users preferred text editor using $VISUAL or $ENVIRONMENT + + + MIT + + + pkg:npm/external-editor@2.2.0?vcs_url=git+https://github.com/mrkmg/node-external-editor.git + + + git+https://github.com/mrkmg/node-external-editor.git + as detected from PackageJson property "repository.url" + + + https://github.com/mrkmg/node-external-editor#readme + as detected from PackageJson property "homepage" + + + https://github.com/mrkmg/node-external-editor/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/@vue/cli-plugin-eslint/node_modules/external-editor + + + + Dmitry Shirokov <deadrunk@gmail.com> + chardet + 0.4.2 + Character detector + + + MIT + + + pkg:npm/chardet@0.4.2?vcs_url=git@github.com:runk/node-chardet.git + + + https://github.com/runk/node-chardet + as detected from PackageJson property "homepage" + + + http://github.com/runk/node-chardet/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/@vue/cli-plugin-eslint/node_modules/chardet + + + + Sindre Sorhus + string-width + 2.1.1 + Get the visual width of a string - the number of columns required to display it + + + MIT + + + pkg:npm/string-width@2.1.1?vcs_url=sindresorhus/string-width + + + sindresorhus/string-width + as detected from PackageJson property "repository" + + + + node_modules/@vue/cli-plugin-eslint/node_modules/string-width + + + + Sindre Sorhus + is-fullwidth-code-point + 2.0.0 + Check if the character represented by a given Unicode code point is fullwidth + + + MIT + + + pkg:npm/is-fullwidth-code-point@2.0.0?vcs_url=sindresorhus/is-fullwidth-code-point + + + sindresorhus/is-fullwidth-code-point + as detected from PackageJson property "repository" + + + + node_modules/@vue/cli-plugin-eslint/node_modules/is-fullwidth-code-point + + + + Sindre Sorhus + strip-ansi + 4.0.0 + Strip ANSI escape codes + + + MIT + + + pkg:npm/strip-ansi@4.0.0?vcs_url=chalk/strip-ansi + + + chalk/strip-ansi + as detected from PackageJson property "repository" + + + + node_modules/@vue/cli-plugin-eslint/node_modules/strip-ansi + + + + Toru Nagashima (https://github.com/mysticatea) + regexpp + 1.1.0 + Regular expression parser for ECMAScript 2018. + + + MIT + + + pkg:npm/regexpp@1.1.0?vcs_url=git+https://github.com/mysticatea/regexpp.git + + + git+https://github.com/mysticatea/regexpp.git + as detected from PackageJson property "repository.url" + + + https://github.com/mysticatea/regexpp#readme + as detected from PackageJson property "homepage" + + + https://github.com/mysticatea/regexpp/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/@vue/cli-plugin-eslint/node_modules/regexpp + + + + semver + 5.7.1 + The semantic version parser used by npm. + + + ISC + + + pkg:npm/semver@5.7.1?vcs_url=https://github.com/npm/node-semver + + + https://github.com/npm/node-semver + as detected from PackageJson property "repository" + + + + node_modules/@vue/cli-plugin-eslint/node_modules/semver + + + + Gajus Kuizinas + table + 4.0.2 + Formats data into a string table. + + + BSD-3-Clause + + + pkg:npm/table@4.0.2?vcs_url=https://github.com/gajus/table + + + https://github.com/gajus/table + as detected from PackageJson property "repository.url" + + + + node_modules/@vue/cli-plugin-eslint/node_modules/table + + + + Evgeny Poberezkin + ajv-keywords + 2.1.1 + Custom JSON-Schema keywords for Ajv validator + + + MIT + + + pkg:npm/ajv-keywords@2.1.1?vcs_url=git+https://github.com/epoberezkin/ajv-keywords.git + + + git+https://github.com/epoberezkin/ajv-keywords.git + as detected from PackageJson property "repository.url" + + + https://github.com/epoberezkin/ajv-keywords#readme + as detected from PackageJson property "homepage" + + + https://github.com/epoberezkin/ajv-keywords/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/@vue/cli-plugin-eslint/node_modules/ajv-keywords + + + + David Caccavella + slice-ansi + 1.0.0 + Slice a string with ANSI escape codes + + + MIT + + + pkg:npm/slice-ansi@1.0.0?vcs_url=chalk/slice-ansi + + + chalk/slice-ansi + as detected from PackageJson property "repository" + + + + node_modules/@vue/cli-plugin-eslint/node_modules/slice-ansi + + + + + node_modules/@vue/cli-plugin-eslint + + + + Sebastian McKenzie <sebmck@gmail.com> + babel-eslint + 10.1.0 + Custom parser for ESLint + + + MIT + + + pkg:npm/babel-eslint@10.1.0?vcs_url=https://github.com/babel/babel-eslint.git + + + https://github.com/babel/babel-eslint.git + as detected from PackageJson property "repository.url" + + + https://github.com/babel/babel-eslint + as detected from PackageJson property "homepage" + + + https://github.com/babel/babel-eslint/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/babel-eslint + + + + Maxime Thirouin + eslint-loader + 2.2.1 + eslint loader (for webpack) + + + MIT + + + pkg:npm/eslint-loader@2.2.1?vcs_url=https://github.com/webpack-contrib/eslint-loader.git + + + https://github.com/webpack-contrib/eslint-loader.git + as detected from PackageJson property "repository" + + + + + Tobias Koppers @sokra + loader-utils + 1.4.0 + utils for webpack loaders + + + MIT + + + pkg:npm/loader-utils@1.4.0?vcs_url=https://github.com/webpack/loader-utils.git + + + https://github.com/webpack/loader-utils.git + as detected from PackageJson property "repository.url" + + + + node_modules/eslint-loader/node_modules/loader-utils + + + + Aseem Kishore <aseem.kishore@gmail.com> + json5 + 1.0.1 + JSON for humans. + + + MIT + + + pkg:npm/json5@1.0.1?vcs_url=git+https://github.com/json5/json5.git + + + git+https://github.com/json5/json5.git + as detected from PackageJson property "repository.url" + + + http://json5.org/ + as detected from PackageJson property "homepage" + + + https://github.com/json5/json5/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/eslint-loader/node_modules/json5 + + + + + node_modules/eslint-loader + + + + Nicholas C. Zakas <nicholas+npm@nczconsulting.com> + eslint + 5.16.0 + An AST-projxd pattern checker for JavaScript. + + + MIT + + + pkg:npm/eslint@5.16.0?vcs_url=eslint/eslint + + + eslint/eslint + as detected from PackageJson property "repository" + + + https://eslint.org + as detected from PackageJson property "homepage" + + + https://github.com/eslint/eslint/issues/ + as detected from PackageJson property "bugs" + + + + + Sindre Sorhus + import-fresh + 3.3.0 + Import a module while bypassing the cache + + + MIT + + + pkg:npm/import-fresh@3.3.0?vcs_url=sindresorhus/import-fresh + + + sindresorhus/import-fresh + as detected from PackageJson property "repository" + + + + node_modules/eslint/node_modules/import-fresh + + + + Sindre Sorhus + resolve-from + 4.0.0 + Resolve the path of a module like `require.resolve()` but from a given path + + + MIT + + + pkg:npm/resolve-from@4.0.0?vcs_url=sindresorhus/resolve-from + + + sindresorhus/resolve-from + as detected from PackageJson property "repository" + + + + node_modules/eslint/node_modules/resolve-from + + + + semver + 5.7.1 + The semantic version parser used by npm. + + + ISC + + + pkg:npm/semver@5.7.1?vcs_url=https://github.com/npm/node-semver + + + https://github.com/npm/node-semver + as detected from PackageJson property "repository" + + + + node_modules/eslint/node_modules/semver + + + + Sindre Sorhus + strip-ansi + 4.0.0 + Strip ANSI escape codes + + + MIT + + + pkg:npm/strip-ansi@4.0.0?vcs_url=chalk/strip-ansi + + + chalk/strip-ansi + as detected from PackageJson property "repository" + + + + node_modules/eslint/node_modules/strip-ansi + + + + + node_modules/eslint + + + + Ade Viankakrisna Fadlil + loader-fs-cache + 1.0.3 + A published package of https://github.com/babel/babel-loader/blob/master/src/fs-cache.js + + + MIT + + + pkg:npm/loader-fs-cache@1.0.3?vcs_url=https://github.com/viankakrisna/loader-fs-cache.git + + + https://github.com/viankakrisna/loader-fs-cache.git + as detected from PackageJson property "repository.url" + + + + + James Talmage + find-cache-dir + 0.1.1 + My well-made module + + + MIT + + + pkg:npm/find-cache-dir@0.1.1?vcs_url=jamestalmage/find-cache-dir + + + jamestalmage/find-cache-dir + as detected from PackageJson property "repository" + + + + node_modules/loader-fs-cache/node_modules/find-cache-dir + + + + Sindre Sorhus + pkg-dir + 1.0.0 + Find the root directory of a npm package + + + MIT + + + pkg:npm/pkg-dir@1.0.0?vcs_url=sindresorhus/pkg-dir + + + sindresorhus/pkg-dir + as detected from PackageJson property "repository" + + + + node_modules/loader-fs-cache/node_modules/pkg-dir + + + + Sindre Sorhus + find-up + 1.1.2 + Find a file by walking up parent directories + + + MIT + + + pkg:npm/find-up@1.1.2?vcs_url=sindresorhus/find-up + + + sindresorhus/find-up + as detected from PackageJson property "repository" + + + + node_modules/loader-fs-cache/node_modules/find-up + + + + Sindre Sorhus + path-exists + 2.1.0 + Check if a path exists + + + MIT + + + pkg:npm/path-exists@2.1.0?vcs_url=sindresorhus/path-exists + + + sindresorhus/path-exists + as detected from PackageJson property "repository" + + + + node_modules/loader-fs-cache/node_modules/path-exists + + + + + node_modules/loader-fs-cache + + + + Vsevolod Strukchinsky + pinkie-promise + 2.0.1 + ES2015 Promise ponyfill + + + MIT + + + pkg:npm/pinkie-promise@2.0.1?vcs_url=floatdrop/pinkie-promise + + + floatdrop/pinkie-promise + as detected from PackageJson property "repository" + + + + node_modules/pinkie-promise + + + + Scott Puleo <puleos@gmail.com> + object-hash + 1.3.1 + Generate hashes from javascript objects in node and the browser. + + + MIT + + + pkg:npm/object-hash@1.3.1?vcs_url=https://github.com/puleos/object-hash + + + https://github.com/puleos/object-hash + as detected from PackageJson property "repository.url" + + + https://github.com/puleos/object-hash + as detected from PackageJson property "homepage" + + + https://github.com/puleos/object-hash/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/object-hash + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + rimraf + 2.7.1 + A deep deletion module for node (like `rm -rf`) + + + ISC + + + pkg:npm/rimraf@2.7.1?vcs_url=git://github.com/isaacs/rimraf.git + + + git://github.com/isaacs/rimraf.git + as detected from PackageJson property "repository" + + + + node_modules/rimraf + + + + Toru Nagashima (https://github.com/mysticatea) + eslint-visitor-keys + 1.3.0 + Constants and utilities about visitor keys to traverse AST. + + + Apache-2.0 + + + pkg:npm/eslint-visitor-keys@1.3.0?vcs_url=eslint/eslint-visitor-keys + + + eslint/eslint-visitor-keys + as detected from PackageJson property "repository" + + + https://github.com/eslint/eslint-visitor-keys#readme + as detected from PackageJson property "homepage" + + + https://github.com/eslint/eslint-visitor-keys/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/eslint-visitor-keys + + + + Joel Feenstra <jrfeenst+esquery@gmail.com> + esquery + 1.4.0 + A query library for ECMAScript AST using a CSS selector like query language. + + + BSD-3-Clause + + + pkg:npm/esquery@1.4.0?vcs_url=https://github.com/estools/esquery.git + + + https://github.com/estools/esquery.git + as detected from PackageJson property "repository.url" + + + https://github.com/estools/esquery/ + as detected from PackageJson property "homepage" + + + https://github.com/estools/esquery/issues + as detected from PackageJson property "bugs" + + + + + estraverse + 5.3.0 + ECMAScript JS AST traversal functions + + + BSD-2-Clause + + + pkg:npm/estraverse@5.3.0?vcs_url=http://github.com/estools/estraverse.git + + + http://github.com/estools/estraverse.git + as detected from PackageJson property "repository.url" + + + https://github.com/estools/estraverse + as detected from PackageJson property "homepage" + + + + node_modules/esquery/node_modules/estraverse + + + + + node_modules/esquery + + + + co + 4.6.0 + generator async control flow goodness + + + MIT + + + pkg:npm/co@4.6.0?vcs_url=tj/co + + + tj/co + as detected from PackageJson property "repository" + + + + node_modules/co + + + + James Halliday + fast-json-stable-stringify + 2.1.0 + deterministic `JSON.stringify()` - a faster version of substack's json-stable-strigify without jsonify + + + MIT + + + pkg:npm/fast-json-stable-stringify@2.1.0?vcs_url=git://github.com/epoberezkin/fast-json-stable-stringify.git + + + git://github.com/epoberezkin/fast-json-stable-stringify.git + as detected from PackageJson property "repository.url" + + + https://github.com/epoberezkin/fast-json-stable-stringify + as detected from PackageJson property "homepage" + + + + node_modules/fast-json-stable-stringify + + + + Sebastian McKenzie <sebmck@gmail.com> + babel-code-frame + 6.26.0 + Generate errors that contain a code frame that point to source locations. + + + MIT + + + pkg:npm/babel-code-frame@6.26.0?vcs_url=https://github.com/babel/babel/tree/master/packages/babel-code-frame + + + https://github.com/babel/babel/tree/master/packages/babel-code-frame + as detected from PackageJson property "repository" + + + https://babeljs.io/ + as detected from PackageJson property "homepage" + + + + + chalk + 1.1.3 + Terminal string styling done right. Much color. + + + MIT + + + pkg:npm/chalk@1.1.3?vcs_url=chalk/chalk + + + chalk/chalk + as detected from PackageJson property "repository" + + + + node_modules/babel-code-frame/node_modules/chalk + + + + Sindre Sorhus + ansi-styles + 2.2.1 + ANSI escape codes for styling strings in the terminal + + + MIT + + + pkg:npm/ansi-styles@2.2.1?vcs_url=chalk/ansi-styles + + + chalk/ansi-styles + as detected from PackageJson property "repository" + + + + node_modules/babel-code-frame/node_modules/ansi-styles + + + + Sindre Sorhus + strip-ansi + 3.0.1 + Strip ANSI escape codes + + + MIT + + + pkg:npm/strip-ansi@3.0.1?vcs_url=chalk/strip-ansi + + + chalk/strip-ansi + as detected from PackageJson property "repository" + + + + node_modules/babel-code-frame/node_modules/strip-ansi + + + + Sindre Sorhus + ansi-regex + 2.1.1 + Regular expression for matching ANSI escape codes + + + MIT + + + pkg:npm/ansi-regex@2.1.1?vcs_url=chalk/ansi-regex + + + chalk/ansi-regex + as detected from PackageJson property "repository" + + + + node_modules/babel-code-frame/node_modules/ansi-regex + + + + Sindre Sorhus + supports-color + 2.0.0 + Detect whether a terminal supports color + + + MIT + + + pkg:npm/supports-color@2.0.0?vcs_url=chalk/supports-color + + + chalk/supports-color + as detected from PackageJson property "repository" + + + + node_modules/babel-code-frame/node_modules/supports-color + + + + Simon Lydell + js-tokens + 3.0.2 + A regex that tokenizes JavaScript. + + + MIT + + + pkg:npm/js-tokens@3.0.2?vcs_url=lydell/js-tokens + + + lydell/js-tokens + as detected from PackageJson property "repository" + + + + node_modules/babel-code-frame/node_modules/js-tokens + + + + + node_modules/babel-code-frame + + + + Sindre Sorhus + escape-string-regexp + 1.0.5 + Escape RegExp special characters + + + MIT + + + pkg:npm/escape-string-regexp@1.0.5?vcs_url=sindresorhus/escape-string-regexp + + + sindresorhus/escape-string-regexp + as detected from PackageJson property "repository" + + + + node_modules/escape-string-regexp + + + + Sindre Sorhus + has-ansi + 2.0.0 + Check if a string has ANSI escape codes + + + MIT + + + pkg:npm/has-ansi@2.0.0?vcs_url=sindresorhus/has-ansi + + + sindresorhus/has-ansi + as detected from PackageJson property "repository" + + + + + Sindre Sorhus + ansi-regex + 2.1.1 + Regular expression for matching ANSI escape codes + + + MIT + + + pkg:npm/ansi-regex@2.1.1?vcs_url=chalk/ansi-regex + + + chalk/ansi-regex + as detected from PackageJson property "repository" + + + + node_modules/has-ansi/node_modules/ansi-regex + + + + + node_modules/has-ansi + + + + esutils + 2.0.3 + utility box for ECMAScript language tools + + + BSD-2-Clause + + + pkg:npm/esutils@2.0.3?vcs_url=http://github.com/estools/esutils.git + + + http://github.com/estools/esutils.git + as detected from PackageJson property "repository.url" + + + https://github.com/estools/esutils + as detected from PackageJson property "homepage" + + + + node_modules/esutils + + + + Max Ogden <max@maxogden.com> + concat-stream + 1.6.2 + writable stream that concatenates strings or binary data and calls a callback with the result + + + MIT + + + pkg:npm/concat-stream@1.6.2?vcs_url=http://github.com/maxogden/concat-stream.git + + + http://github.com/maxogden/concat-stream.git + as detected from PackageJson property "repository.url" + + + http://github.com/maxogden/concat-stream/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/concat-stream + + + + buffer-from + 1.1.2 + + + MIT + + + pkg:npm/buffer-from@1.1.2?vcs_url=LinusU/buffer-from + + + LinusU/buffer-from + as detected from PackageJson property "repository" + + + + node_modules/buffer-from + + + + James Halliday + typedarray + 0.0.6 + TypedArray polyfill for old browsers + + + MIT + + + pkg:npm/typedarray@0.0.6?vcs_url=git://github.com/substack/typedarray.git + + + git://github.com/substack/typedarray.git + as detected from PackageJson property "repository.url" + + + https://github.com/substack/typedarray + as detected from PackageJson property "homepage" + + + + node_modules/typedarray + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + pseudomap + 1.0.2 + 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. + + + ISC + + + pkg:npm/pseudomap@1.0.2?vcs_url=git+https://github.com/isaacs/pseudomap.git + + + git+https://github.com/isaacs/pseudomap.git + as detected from PackageJson property "repository.url" + + + https://github.com/isaacs/pseudomap#readme + as detected from PackageJson property "homepage" + + + https://github.com/isaacs/pseudomap/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/pseudomap + + + + Kevin Martensson + shebang-command + 1.2.0 + Get the command from a shebang + + + MIT + + + pkg:npm/shebang-command@1.2.0?vcs_url=kevva/shebang-command + + + kevva/shebang-command + as detected from PackageJson property "repository" + + + + node_modules/shebang-command + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me) + which + 1.3.1 + Like which(1) unix command. Find the first instance of an executable in the PATH. + + + ISC + + + pkg:npm/which@1.3.1?vcs_url=git://github.com/isaacs/node-which.git + + + git://github.com/isaacs/node-which.git + as detected from PackageJson property "repository.url" + + + + node_modules/which + + + + ms + 2.1.2 + Tiny millisecond conversion utility + + + MIT + + + pkg:npm/ms@2.1.2?vcs_url=zeit/ms + + + zeit/ms + as detected from PackageJson property "repository" + + + + node_modules/ms + + + + esrecurse + 4.3.0 + ECMAScript AST recursive visitor + + + BSD-2-Clause + + + pkg:npm/esrecurse@4.3.0?vcs_url=https://github.com/estools/esrecurse.git + + + https://github.com/estools/esrecurse.git + as detected from PackageJson property "repository.url" + + + https://github.com/estools/esrecurse + as detected from PackageJson property "homepage" + + + + + estraverse + 5.3.0 + ECMAScript JS AST traversal functions + + + BSD-2-Clause + + + pkg:npm/estraverse@5.3.0?vcs_url=http://github.com/estools/estraverse.git + + + http://github.com/estools/estraverse.git + as detected from PackageJson property "repository.url" + + + https://github.com/estools/estraverse + as detected from PackageJson property "homepage" + + + + node_modules/esrecurse/node_modules/estraverse + + + + + node_modules/esrecurse + + + + estraverse + 4.3.0 + ECMAScript JS AST traversal functions + + + BSD-2-Clause + + + pkg:npm/estraverse@4.3.0?vcs_url=http://github.com/estools/estraverse.git + + + http://github.com/estools/estraverse.git + as detected from PackageJson property "repository.url" + + + https://github.com/estools/estraverse + as detected from PackageJson property "homepage" + + + + node_modules/estraverse + + + + Andrea Giammarchi + circular-json + 0.3.3 + JSON does not handle circular references. This version does + + + MIT + + + pkg:npm/circular-json@0.3.3?vcs_url=git://github.com/WebReflection/circular-json.git + + + git://github.com/WebReflection/circular-json.git + as detected from PackageJson property "repository.url" + + + https://github.com/WebReflection/circular-json + as detected from PackageJson property "homepage" + + + + node_modules/circular-json + + + + Mikola Lysenko + functional-red-black-tree + 1.0.1 + A fully persistent balanced binary search tree + + + MIT + + + pkg:npm/functional-red-black-tree@1.0.1?vcs_url=git://github.com/mikolalysenko/functional-red-black-tree.git + + + git://github.com/mikolalysenko/functional-red-black-tree.git + as detected from PackageJson property "repository.url" + + + https://github.com/mikolalysenko/functional-red-black-tree/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/functional-red-black-tree + + + + Jens Taylor + imurmurhash + 0.1.4 + An incremental implementation of MurmurHash3 + + + MIT + + + pkg:npm/imurmurhash@0.1.4?vcs_url=https://github.com/jensyt/imurmurhash-js + + + https://github.com/jensyt/imurmurhash-js + as detected from PackageJson property "repository.url" + + + https://github.com/jensyt/imurmurhash-js + as detected from PackageJson property "homepage" + + + https://github.com/jensyt/imurmurhash-js/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/imurmurhash + + + + Sindre Sorhus + ansi-escapes + 3.2.0 + ANSI escape codes for manipulating the terminal + + + MIT + + + pkg:npm/ansi-escapes@3.2.0?vcs_url=sindresorhus/ansi-escapes + + + sindresorhus/ansi-escapes + as detected from PackageJson property "repository" + + + + node_modules/ansi-escapes + + + + Sindre Sorhus + cli-cursor + 2.1.0 + Toggle the CLI cursor + + + MIT + + + pkg:npm/cli-cursor@2.1.0?vcs_url=sindresorhus/cli-cursor + + + sindresorhus/cli-cursor + as detected from PackageJson property "repository" + + + + node_modules/cli-cursor + + + + Ilya Radchenko <knownasilya@gmail.com> + cli-width + 2.2.1 + Get stdout window width, with two fallbacks, tty and then a default. + + + ISC + + + pkg:npm/cli-width@2.2.1?vcs_url=git@github.com:knownasilya/cli-width.git + + + https://github.com/knownasilya/cli-width + as detected from PackageJson property "homepage" + + + https://github.com/knownasilya/cli-width/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/cli-width + + + + Alexander Shtuchkin <ashtuchkin@gmail.com> + iconv-lite + 0.4.24 + Convert character encodings in pure javascript. + + + MIT + + + pkg:npm/iconv-lite@0.4.24?vcs_url=git://github.com/ashtuchkin/iconv-lite.git + + + git://github.com/ashtuchkin/iconv-lite.git + as detected from PackageJson property "repository.url" + + + https://github.com/ashtuchkin/iconv-lite + as detected from PackageJson property "homepage" + + + https://github.com/ashtuchkin/iconv-lite/issues + as detected from PackageJson property "bugs" + + + + node_modules/iconv-lite + + + + KARASZI Istvan <github@spam.raszi.hu> (http://raszi.hu/) + tmp + 0.0.33 + Temporary file and directory creator + + + MIT + + + pkg:npm/tmp@0.0.33?vcs_url=raszi/node-tmp + + + raszi/node-tmp + as detected from PackageJson property "repository" + + + http://github.com/raszi/node-tmp + as detected from PackageJson property "homepage" + + + http://github.com/raszi/node-tmp/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/tmp + + + + Sindre Sorhus + figures + 2.0.0 + Unicode symbols with Windows CMD fallbacks + + + MIT + + + pkg:npm/figures@2.0.0?vcs_url=sindresorhus/figures + + + sindresorhus/figures + as detected from PackageJson property "repository" + + + + node_modules/figures + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + mute-stream + 0.0.7 + Bytes go in, but they don't come out (when muted). + + + ISC + + + pkg:npm/mute-stream@0.0.7?vcs_url=git://github.com/isaacs/mute-stream + + + git://github.com/isaacs/mute-stream + as detected from PackageJson property "repository.url" + + + + node_modules/mute-stream + + + + Simon Boudrias <admin@simonboudrias.com> + run-async + 2.4.1 + Utility method to run function either synchronously or asynchronously using the common `this.async()` style. + + + MIT + + + pkg:npm/run-async@2.4.1?vcs_url=SBoudrias/run-async + + + SBoudrias/run-async + as detected from PackageJson property "repository" + + + + node_modules/run-async + + + + Cloud Programmability Team + rx-lite-aggregates + 4.0.8 + Lightweight library with aggregate functions for composing asynchronous and event-projxd operations in JavaScript + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.html + + + pkg:npm/rx-lite-aggregates@4.0.8?vcs_url=https://github.com/Reactive-Extensions/RxJS.git + + + https://github.com/Reactive-Extensions/RxJS.git + as detected from PackageJson property "repository.url" + + + https://github.com/Reactive-Extensions/RxJS + as detected from PackageJson property "homepage" + + + https://github.com/Reactive-Extensions/RxJS/issues + as detected from PackageJson property "bugs" + + + + node_modules/rx-lite-aggregates + + + + Cloud Programmability Team + rx-lite + 4.0.8 + Lightweight library for composing asynchronous and event-projxd operations in JavaScript + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.html + + + pkg:npm/rx-lite@4.0.8?vcs_url=https://github.com/Reactive-Extensions/RxJS.git + + + https://github.com/Reactive-Extensions/RxJS.git + as detected from PackageJson property "repository.url" + + + https://github.com/Reactive-Extensions/RxJS + as detected from PackageJson property "homepage" + + + https://github.com/Reactive-Extensions/RxJS/issues + as detected from PackageJson property "bugs" + + + + node_modules/rx-lite + + + + Dominic Tarr <dominic.tarr@gmail.com> (dominictarr.com) + through + 2.3.8 + simplified stream construction + + + MIT + + + pkg:npm/through@2.3.8?vcs_url=https://github.com/dominictarr/through.git + + + https://github.com/dominictarr/through.git + as detected from PackageJson property "repository.url" + + + https://github.com/dominictarr/through + as detected from PackageJson property "homepage" + + + + node_modules/through + + + + Shinnosuke Watanabe (https://github.com/shinnn) + is-resolvable + 1.1.0 + Check if a module ID is resolvable with require() + + + ISC + + + pkg:npm/is-resolvable@1.1.0?vcs_url=shinnn/is-resolvable + + + shinnn/is-resolvable + as detected from PackageJson property "repository" + + + + node_modules/is-resolvable + + + + Vladimir Zapparov <dervus.grim@gmail.com> + js-yaml + 3.14.1 + YAML 1.2 parser and serializer + + + MIT + + + pkg:npm/js-yaml@3.14.1?vcs_url=nodeca/js-yaml + + + nodeca/js-yaml + as detected from PackageJson property "repository" + + + https://github.com/nodeca/js-yaml + as detected from PackageJson property "homepage" + + + + node_modules/js-yaml + + + + James Halliday + json-stable-stringify-without-jsonify + 1.0.1 + deterministic JSON.stringify() with custom sorting to get deterministic hashes from stringified results, with no public domain dependencies + + + MIT + + + pkg:npm/json-stable-stringify-without-jsonify@1.0.1?vcs_url=git://github.com/samn/json-stable-stringify.git + + + git://github.com/samn/json-stable-stringify.git + as detected from PackageJson property "repository.url" + + + https://github.com/samn/json-stable-stringify + as detected from PackageJson property "homepage" + + + + node_modules/json-stable-stringify-without-jsonify + + + + George Zahariev <z@georgezahariev.com> + levn + 0.3.0 + Light ECMAScript (JavaScript) Value Notation - human written, concise, typed, flexible + + + MIT + + + pkg:npm/levn@0.3.0?vcs_url=git://github.com/gkz/levn.git + + + git://github.com/gkz/levn.git + as detected from PackageJson property "repository.url" + + + https://github.com/gkz/levn + as detected from PackageJson property "homepage" + + + https://github.com/gkz/levn/issues + as detected from PackageJson property "bugs" + + + + node_modules/levn + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me) + minimatch + 3.1.2 + a glob matcher in javascript + + + ISC + + + pkg:npm/minimatch@3.1.2?vcs_url=git://github.com/isaacs/minimatch.git + + + git://github.com/isaacs/minimatch.git + as detected from PackageJson property "repository.url" + + + + node_modules/minimatch + + + + Lauri Rooden (https://github.com/litejs/natural-compare-lite) + natural-compare + 1.4.0 + Compare strings containing a mix of letters and numbers in the way a human being would in sort order. + + + MIT + + + pkg:npm/natural-compare@1.4.0?vcs_url=git://github.com/litejs/natural-compare-lite.git + + + git://github.com/litejs/natural-compare-lite.git + as detected from PackageJson property "repository" + + + https://github.com/litejs/natural-compare-lite/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/natural-compare + + + + George Zahariev <z@georgezahariev.com> + optionator + 0.8.3 + option parsing and help generation + + + MIT + + + pkg:npm/optionator@0.8.3?vcs_url=git://github.com/gkz/optionator.git + + + git://github.com/gkz/optionator.git + as detected from PackageJson property "repository.url" + + + https://github.com/gkz/optionator + as detected from PackageJson property "homepage" + + + https://github.com/gkz/optionator/issues + as detected from PackageJson property "bugs" + + + + node_modules/optionator + + + + Domenic Denicola <d@domenic.me> (https://domenic.me) + path-is-inside + 1.0.2 + Tests whether one path is inside another path + + (WTFPL OR MIT) + + pkg:npm/path-is-inside@1.0.2?vcs_url=domenic/path-is-inside + + + domenic/path-is-inside + as detected from PackageJson property "repository" + + + + node_modules/path-is-inside + + + + Blake Embrey + pluralize + 7.0.0 + Pluralize and singularize any word + + + MIT + + + pkg:npm/pluralize@7.0.0?vcs_url=https://github.com/blakeembrey/pluralize.git + + + https://github.com/blakeembrey/pluralize.git + as detected from PackageJson property "repository" + + + + node_modules/pluralize + + + + TJ Holowaychuk <tj@vision-media.ca> + progress + 2.0.3 + Flexible ascii progress bar + + + MIT + + + pkg:npm/progress@2.0.3?vcs_url=git://github.com/visionmedia/node-progress + + + git://github.com/visionmedia/node-progress + as detected from PackageJson property "repository.url" + + + + node_modules/progress + + + + Sindre Sorhus + require-uncached + 1.0.3 + Require a module bypassing the cache + + + MIT + + + pkg:npm/require-uncached@1.0.3?vcs_url=sindresorhus/require-uncached + + + sindresorhus/require-uncached + as detected from PackageJson property "repository" + + + + + Sindre Sorhus + caller-path + 0.1.0 + Get the path of the caller module + + + MIT + + + pkg:npm/caller-path@0.1.0?vcs_url=sindresorhus/caller-path + + + sindresorhus/caller-path + as detected from PackageJson property "repository" + + + + node_modules/require-uncached/node_modules/caller-path + + + + Sindre Sorhus + callsites + 0.2.0 + Get callsites from the V8 stack trace API + + + MIT + + + pkg:npm/callsites@0.2.0?vcs_url=sindresorhus/callsites + + + sindresorhus/callsites + as detected from PackageJson property "repository" + + + + node_modules/require-uncached/node_modules/callsites + + + + Sindre Sorhus + resolve-from + 1.0.1 + Resolve the path of a module like require.resolve() but from a given path + + + MIT + + + pkg:npm/resolve-from@1.0.1?vcs_url=sindresorhus/resolve-from + + + sindresorhus/resolve-from + as detected from PackageJson property "repository" + + + + node_modules/require-uncached/node_modules/resolve-from + + + + + node_modules/require-uncached + + + + Sindre Sorhus + ansi-regex + 3.0.1 + Regular expression for matching ANSI escape codes + + + MIT + + + pkg:npm/ansi-regex@3.0.1?vcs_url=chalk/ansi-regex + + + chalk/ansi-regex + as detected from PackageJson property "repository" + + + + node_modules/ansi-regex + + + + Sindre Sorhus + strip-json-comments + 2.0.1 + Strip comments from JSON. Lets you use comments in your JSON files! + + + MIT + + + pkg:npm/strip-json-comments@2.0.1?vcs_url=sindresorhus/strip-json-comments + + + sindresorhus/strip-json-comments + as detected from PackageJson property "repository" + + + + node_modules/strip-json-comments + + + + James Halliday + text-table + 0.2.0 + borderless text tables with alignment + + + MIT + + + pkg:npm/text-table@0.2.0?vcs_url=git://github.com/substack/text-table.git + + + git://github.com/substack/text-table.git + as detected from PackageJson property "repository.url" + + + https://github.com/substack/text-table + as detected from PackageJson property "homepage" + + + + node_modules/text-table + + + + Sindre Sorhus + globby + 9.2.0 + Extends `glob` with support for multiple patterns and exposes a Promise API + + + MIT + + + pkg:npm/globby@9.2.0?vcs_url=sindresorhus/globby + + + sindresorhus/globby + as detected from PackageJson property "repository" + + + + node_modules/globby + + + + @types + glob + 7.2.0 + TypeScript definitions for Glob + + + MIT + + + pkg:npm/%40types/glob@7.2.0?vcs_url=https://github.com/DefinitelyTyped/DefinitelyTyped.git#types/glob + + + https://github.com/DefinitelyTyped/DefinitelyTyped.git#types/glob + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/glob + as detected from PackageJson property "homepage" + + + + node_modules/@types/glob + + + + @types + minimatch + 5.1.2 + TypeScript definitions for minimatch + + + MIT + + + pkg:npm/%40types/minimatch@5.1.2?vcs_url=https://github.com/DefinitelyTyped/DefinitelyTyped.git#types/minimatch + + + https://github.com/DefinitelyTyped/DefinitelyTyped.git#types/minimatch + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/minimatch + as detected from PackageJson property "homepage" + + + + node_modules/@types/minimatch + + + + Sindre Sorhus + array-union + 1.0.2 + Create an array of unique values, in order, from the input arrays + + + MIT + + + pkg:npm/array-union@1.0.2?vcs_url=sindresorhus/array-union + + + sindresorhus/array-union + as detected from PackageJson property "repository" + + + + node_modules/array-union + + + + Sindre Sorhus + array-uniq + 1.0.3 + Create an array without duplicates + + + MIT + + + pkg:npm/array-uniq@1.0.3?vcs_url=sindresorhus/array-uniq + + + sindresorhus/array-uniq + as detected from PackageJson property "repository" + + + + node_modules/array-uniq + + + + Kevin Martensson + dir-glob + 2.2.2 + Convert directories to glob compatible strings + + + MIT + + + pkg:npm/dir-glob@2.2.2?vcs_url=kevva/dir-glob + + + kevva/dir-glob + as detected from PackageJson property "repository" + + + + node_modules/dir-glob + + + + Sindre Sorhus + path-type + 3.0.0 + Check if a path is a file, directory, or symlink + + + MIT + + + pkg:npm/path-type@3.0.0?vcs_url=sindresorhus/path-type + + + sindresorhus/path-type + as detected from PackageJson property "repository" + + + + + Sindre Sorhus + pify + 3.0.0 + Promisify a callback-style function + + + MIT + + + pkg:npm/pify@3.0.0?vcs_url=sindresorhus/pify + + + sindresorhus/pify + as detected from PackageJson property "repository" + + + + node_modules/path-type/node_modules/pify + + + + + node_modules/path-type + + + + Denis Malinochkin + fast-glob + 2.2.7 + Is a faster `node-glob` alternative + + + MIT + + + pkg:npm/fast-glob@2.2.7?vcs_url=mrmlnc/fast-glob + + + mrmlnc/fast-glob + as detected from PackageJson property "repository" + + + + node_modules/fast-glob + + + + James Messinger + @mrmlnc + readdir-enhanced + 2.2.1 + fs.readdir with sync, async, and streaming APIs + filtering, recursion, absolute paths, etc. + + + MIT + + + pkg:npm/%40mrmlnc/readdir-enhanced@2.2.1?vcs_url=https://github.com/bigstickcarpet/readdir-enhanced.git + + + https://github.com/bigstickcarpet/readdir-enhanced.git + as detected from PackageJson property "repository.url" + + + https://github.com/bigstickcarpet/readdir-enhanced + as detected from PackageJson property "homepage" + + + + node_modules/@mrmlnc/readdir-enhanced + + + + Eric McCarthy <eric@limulus.net> (http://www.limulus.net/) + call-me-maybe + 1.0.1 + Let your JS API users either give you a callback or receive a promise + + + MIT + + + pkg:npm/call-me-maybe@1.0.1?vcs_url=git+https://github.com/limulus/call-me-maybe.git + + + git+https://github.com/limulus/call-me-maybe.git + as detected from PackageJson property "repository.url" + + + https://github.com/limulus/call-me-maybe#readme + as detected from PackageJson property "homepage" + + + https://github.com/limulus/call-me-maybe/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/call-me-maybe + + + + Nick Fitzgerald <fitzgen@gmail.com> + glob-to-regexp + 0.3.0 + Convert globs to regular expressions + + + BSD + + + pkg:npm/glob-to-regexp@0.3.0?vcs_url=https://github.com/fitzgen/glob-to-regexp.git + + + https://github.com/fitzgen/glob-to-regexp.git + as detected from PackageJson property "repository.url" + + + + node_modules/glob-to-regexp + + + + @nodelib + fs.stat + 1.1.3 + Get the status of a file with some features + + + MIT + + + pkg:npm/%40nodelib/fs.stat@1.1.3?vcs_url=https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.stat + + + https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.stat + as detected from PackageJson property "repository" + + + + node_modules/@nodelib/fs.stat + + + + Jon Schlinkert (https://github.com/jonschlinkert) + is-extglob + 2.1.1 + Returns true if a string has an extglob. + + + MIT + + + pkg:npm/is-extglob@2.1.1?vcs_url=jonschlinkert/is-extglob + + + jonschlinkert/is-extglob + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-extglob + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-extglob/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/is-extglob + + + + Elan Shanker + path-dirname + 1.0.2 + Node.js path.dirname() ponyfill + + + MIT + + + pkg:npm/path-dirname@1.0.2?vcs_url=es128/path-dirname + + + es128/path-dirname + as detected from PackageJson property "repository" + + + + node_modules/path-dirname + + + + merge2 + 1.4.1 + Merge multiple streams into one stream in sequence or parallel. + + + MIT + + + pkg:npm/merge2@1.4.1?vcs_url=git@github.com:teambition/merge2.git + + + https://github.com/teambition/merge2 + as detected from PackageJson property "homepage" + + + + node_modules/merge2 + + + + kael + ignore + 4.0.6 + Ignore is a manager and filter for .gitignore rules. + + + MIT + + + pkg:npm/ignore@4.0.6?vcs_url=git@github.com:kaelzhang/node-ignore.git + + + https://github.com/kaelzhang/node-ignore/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/ignore + + + + Sindre Sorhus + pify + 4.0.1 + Promisify a callback-style function + + + MIT + + + pkg:npm/pify@4.0.1?vcs_url=sindresorhus/pify + + + sindresorhus/pify + as detected from PackageJson property "repository" + + + + node_modules/pify + + + + Sindre Sorhus + slash + 2.0.0 + Convert Windows backslash paths to slash paths + + + MIT + + + pkg:npm/slash@2.0.0?vcs_url=sindresorhus/slash + + + sindresorhus/slash + as detected from PackageJson property "repository" + + + + node_modules/slash + + + + yorkie + 2.0.0 + githooks management forked from husky + + + MIT + + + pkg:npm/yorkie@2.0.0?vcs_url=git://github.com/yyx990803/yorkie.git + + + git://github.com/yyx990803/yorkie.git + as detected from PackageJson property "repository.url" + + + https://github.com/yyx990803/yorkie + as detected from PackageJson property "homepage" + + + https://github.com/yyx990803/yorkie/issues + as detected from PackageJson property "bugs.url" + + + + + Sindre Sorhus + execa + 0.8.0 + A better `child_process` + + + MIT + + + pkg:npm/execa@0.8.0?vcs_url=sindresorhus/execa + + + sindresorhus/execa + as detected from PackageJson property "repository" + + + + node_modules/yorkie/node_modules/execa + + + + IndigoUnited <hello@indigounited.com> (http://indigounited.com) + cross-spawn + 5.1.0 + Cross platform child_process#spawn and child_process#spawnSync + + + MIT + + + pkg:npm/cross-spawn@5.1.0?vcs_url=git://github.com/IndigoUnited/node-cross-spawn.git + + + git://github.com/IndigoUnited/node-cross-spawn.git + as detected from PackageJson property "repository.url" + + + https://github.com/IndigoUnited/node-cross-spawn/issues/ + as detected from PackageJson property "bugs.url" + + + + node_modules/yorkie/node_modules/cross-spawn + + + + Isaac Z. Schlueter <i@izs.me> + lru-cache + 4.1.5 + A cache object that deletes the least-recently-used items. + + + ISC + + + pkg:npm/lru-cache@4.1.5?vcs_url=git://github.com/isaacs/node-lru-cache.git + + + git://github.com/isaacs/node-lru-cache.git + as detected from PackageJson property "repository" + + + + node_modules/yorkie/node_modules/lru-cache + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + yallist + 2.1.2 + Yet Another Linked List + + + ISC + + + pkg:npm/yallist@2.1.2?vcs_url=git+https://github.com/isaacs/yallist.git + + + git+https://github.com/isaacs/yallist.git + as detected from PackageJson property "repository.url" + + + + node_modules/yorkie/node_modules/yallist + + + + Sindre Sorhus + get-stream + 3.0.0 + Get a stream as a string, buffer, or array + + + MIT + + + pkg:npm/get-stream@3.0.0?vcs_url=sindresorhus/get-stream + + + sindresorhus/get-stream + as detected from PackageJson property "repository" + + + + node_modules/yorkie/node_modules/get-stream + + + + Jon Schlinkert + normalize-path + 1.0.0 + Normalize file path slashes to be unix-like forward slashes. Also condenses repeat slashes to a single slash and removes and trailing slashes. + pkg:npm/normalize-path@1.0.0?vcs_url=git://github.com/jonschlinkert/normalize-path.git + + + git://github.com/jonschlinkert/normalize-path.git + as detected from PackageJson property "repository.url" + + + https://github.com/jonschlinkert/normalize-path + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/normalize-path/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/yorkie/node_modules/normalize-path + + + + Sindre Sorhus + strip-indent + 2.0.0 + Strip leading whitespace from each line in a string + + + MIT + + + pkg:npm/strip-indent@2.0.0?vcs_url=sindresorhus/strip-indent + + + sindresorhus/strip-indent + as detected from PackageJson property "repository" + + + + node_modules/yorkie/node_modules/strip-indent + + + + + node_modules/yorkie + + + + Thomas Watson Steen <w@tson.dk> (https://twitter.com/wa7son) + is-ci + 1.2.1 + Detect if the current environment is a CI server + + + MIT + + + pkg:npm/is-ci@1.2.1?vcs_url=https://github.com/watson/is-ci.git + + + https://github.com/watson/is-ci.git + as detected from PackageJson property "repository.url" + + + https://github.com/watson/is-ci + as detected from PackageJson property "homepage" + + + https://github.com/watson/is-ci/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/is-ci + + + + Thomas Watson Steen <w@tson.dk> (https://twitter.com/wa7son) + ci-info + 1.6.0 + Get details about the current Continuous Integration environment + + + MIT + + + pkg:npm/ci-info@1.6.0?vcs_url=https://github.com/watson/ci-info.git + + + https://github.com/watson/ci-info.git + as detected from PackageJson property "repository.url" + + + https://github.com/watson/ci-info + as detected from PackageJson property "homepage" + + + https://github.com/watson/ci-info/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/ci-info + + + + Evan You + @vue + cli-plugin-unit-jest + 3.12.1 + unit-jest plugin for vue-cli + + + MIT + + + pkg:npm/%40vue/cli-plugin-unit-jest@3.12.1?vcs_url=git+https://github.com/vuejs/vue-cli.git#packages/@vue/cli-plugin-unit-jest + + + git+https://github.com/vuejs/vue-cli.git#packages/@vue/cli-plugin-unit-jest + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://github.com/vuejs/vue-cli/tree/dev/packages/@vue/cli-plugin-unit-jest#readme + as detected from PackageJson property "homepage" + + + https://github.com/vuejs/vue-cli/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/@vue/cli-plugin-unit-jest + + + + babel-jest + 23.6.0 + Jest plugin to use babel for transformation. + + + MIT + + + pkg:npm/babel-jest@23.6.0?vcs_url=https://github.com/facebook/jest.git + + + https://github.com/facebook/jest.git + as detected from PackageJson property "repository.url" + + + + node_modules/babel-jest + + + + babel-plugin-transform-es2015-modules-commonjs + 6.26.2 + This plugin transforms ES2015 modules to CommonJS + + + MIT + + + pkg:npm/babel-plugin-transform-es2015-modules-commonjs@6.26.2?vcs_url=https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs + + + https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs + as detected from PackageJson property "repository" + + + + node_modules/babel-plugin-transform-es2015-modules-commonjs + + + + babel-plugin-transform-strict-mode + 6.24.1 + This plugin places a 'use strict'; directive at the top of all files to enable strict mode + + + MIT + + + pkg:npm/babel-plugin-transform-strict-mode@6.24.1?vcs_url=https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-strict-mode + + + https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-strict-mode + as detected from PackageJson property "repository" + + + + node_modules/babel-plugin-transform-strict-mode + + + + Sebastian McKenzie <sebmck@gmail.com> + babel-runtime + 6.26.0 + babel selfContained runtime + + + MIT + + + pkg:npm/babel-runtime@6.26.0?vcs_url=https://github.com/babel/babel/tree/master/packages/babel-runtime + + + https://github.com/babel/babel/tree/master/packages/babel-runtime + as detected from PackageJson property "repository" + + + + + Ben Newman <bn@cs.stanford.edu> + regenerator-runtime + 0.11.1 + Runtime for Regenerator-compiled generator and async functions. + + + MIT + + + pkg:npm/regenerator-runtime@0.11.1?vcs_url=https://github.com/facebook/regenerator/tree/master/packages/regenerator-runtime + + + https://github.com/facebook/regenerator/tree/master/packages/regenerator-runtime + as detected from PackageJson property "repository.url" + + + + node_modules/babel-runtime/node_modules/regenerator-runtime + + + + + node_modules/babel-runtime + + + + Sebastian McKenzie <sebmck@gmail.com> + babel-types + 6.26.0 + Babel Types is a Lodash-esque utility library for AST nodes + + + MIT + + + pkg:npm/babel-types@6.26.0?vcs_url=https://github.com/babel/babel/tree/master/packages/babel-types + + + https://github.com/babel/babel/tree/master/packages/babel-types + as detected from PackageJson property "repository" + + + https://babeljs.io/ + as detected from PackageJson property "homepage" + + + + + Sindre Sorhus + to-fast-properties + 1.0.3 + Force V8 to use fast properties for an object + + + MIT + + + pkg:npm/to-fast-properties@1.0.3?vcs_url=sindresorhus/to-fast-properties + + + sindresorhus/to-fast-properties + as detected from PackageJson property "repository" + + + + node_modules/babel-types/node_modules/to-fast-properties + + + + + node_modules/babel-types + + + + Sebastian McKenzie <sebmck@gmail.com> + babel-template + 6.26.0 + Generate an AST from a string template. + + + MIT + + + pkg:npm/babel-template@6.26.0?vcs_url=https://github.com/babel/babel/tree/master/packages/babel-template + + + https://github.com/babel/babel/tree/master/packages/babel-template + as detected from PackageJson property "repository" + + + https://babeljs.io/ + as detected from PackageJson property "homepage" + + + + node_modules/babel-template + + + + Sebastian McKenzie <sebmck@gmail.com> + babel-traverse + 6.26.0 + The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes + + + MIT + + + pkg:npm/babel-traverse@6.26.0?vcs_url=https://github.com/babel/babel/tree/master/packages/babel-traverse + + + https://github.com/babel/babel/tree/master/packages/babel-traverse + as detected from PackageJson property "repository" + + + https://babeljs.io/ + as detected from PackageJson property "homepage" + + + + + TJ Holowaychuk <tj@vision-media.ca> + debug + 2.6.9 + small debugging utility + + + MIT + + + pkg:npm/debug@2.6.9?vcs_url=git://github.com/visionmedia/debug.git + + + git://github.com/visionmedia/debug.git + as detected from PackageJson property "repository.url" + + + + node_modules/babel-traverse/node_modules/debug + + + + ms + 2.0.0 + Tiny milisecond conversion utility + + + MIT + + + pkg:npm/ms@2.0.0?vcs_url=zeit/ms + + + zeit/ms + as detected from PackageJson property "repository" + + + + node_modules/babel-traverse/node_modules/ms + + + + Sindre Sorhus + globals + 9.18.0 + Global identifiers from different JavaScript environments + + + MIT + + + pkg:npm/globals@9.18.0?vcs_url=sindresorhus/globals + + + sindresorhus/globals + as detected from PackageJson property "repository" + + + + node_modules/babel-traverse/node_modules/globals + + + + + node_modules/babel-traverse + + + + Sebastian McKenzie <sebmck@gmail.com> + babel-messages + 6.23.0 + Collection of debug messages used by Babel. + + + MIT + + + pkg:npm/babel-messages@6.23.0?vcs_url=https://github.com/babel/babel/tree/master/packages/babel-messages + + + https://github.com/babel/babel/tree/master/packages/babel-messages + as detected from PackageJson property "repository" + + + https://babeljs.io/ + as detected from PackageJson property "homepage" + + + + node_modules/babel-messages + + + + Sebastian McKenzie <sebmck@gmail.com> + babylon + 6.18.0 + A JavaScript parser + + + MIT + + + pkg:npm/babylon@6.18.0?vcs_url=https://github.com/babel/babylon + + + https://github.com/babel/babylon + as detected from PackageJson property "repository" + + + https://babeljs.io/ + as detected from PackageJson property "homepage" + + + + node_modules/babylon + + + + Edd Yerburgh + jest-serializer-vue + 2.0.2 + A jest serializer for Vue snapshots + + + MIT + + + pkg:npm/jest-serializer-vue@2.0.2?vcs_url=git+https://github.com/eddyerburgh/jest-serializer-vue.git + + + git+https://github.com/eddyerburgh/jest-serializer-vue.git + as detected from PackageJson property "repository.url" + + + https://github.com/eddyerburgh/jest-serializer-vue#readme + as detected from PackageJson property "homepage" + + + https://github.com/eddyerburgh/jest-serializer-vue/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-serializer-vue + + + + Jon Schlinkert (https://github.com/jonschlinkert) + pretty + 2.0.0 + Some tweaks for beautifying HTML with js-beautify according to my preferences. + + + MIT + + + pkg:npm/pretty@2.0.0?vcs_url=jonschlinkert/pretty + + + jonschlinkert/pretty + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/pretty + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/pretty/issues + as detected from PackageJson property "bugs.url" + + + + + Jon Schlinkert (https://github.com/jonschlinkert) + extend-shallow + 2.0.1 + Extend an object with the properties of additional objects. node.js/javascript util. + + + MIT + + + pkg:npm/extend-shallow@2.0.1?vcs_url=jonschlinkert/extend-shallow + + + jonschlinkert/extend-shallow + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/extend-shallow + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/extend-shallow/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/pretty/node_modules/extend-shallow + + + + Jon Schlinkert (https://github.com/jonschlinkert) + is-extendable + 0.1.1 + 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?" + + + MIT + + + pkg:npm/is-extendable@0.1.1?vcs_url=jonschlinkert/is-extendable + + + jonschlinkert/is-extendable + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-extendable + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-extendable/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/pretty/node_modules/is-extendable + + + + + node_modules/pretty + + + + Jon Schlinkert (https://github.com/jonschlinkert) + condense-newlines + 0.2.1 + Replace extraneous newlines with a single newline, or pass a specified number of newlines to use. + + + MIT + + + pkg:npm/condense-newlines@0.2.1?vcs_url=jonschlinkert/condense-newlines + + + jonschlinkert/condense-newlines + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/condense-newlines + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/condense-newlines/issues + as detected from PackageJson property "bugs.url" + + + + + Jon Schlinkert (https://github.com/jonschlinkert) + extend-shallow + 2.0.1 + Extend an object with the properties of additional objects. node.js/javascript util. + + + MIT + + + pkg:npm/extend-shallow@2.0.1?vcs_url=jonschlinkert/extend-shallow + + + jonschlinkert/extend-shallow + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/extend-shallow + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/extend-shallow/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/condense-newlines/node_modules/extend-shallow + + + + Jon Schlinkert (https://github.com/jonschlinkert) + is-extendable + 0.1.1 + 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?" + + + MIT + + + pkg:npm/is-extendable@0.1.1?vcs_url=jonschlinkert/is-extendable + + + jonschlinkert/is-extendable + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-extendable + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-extendable/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/condense-newlines/node_modules/is-extendable + + + + Jon Schlinkert (https://github.com/jonschlinkert) + kind-of + 3.2.2 + Get the native type of a value. + + + MIT + + + pkg:npm/kind-of@3.2.2?vcs_url=jonschlinkert/kind-of + + + jonschlinkert/kind-of + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/kind-of + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/kind-of/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/condense-newlines/node_modules/kind-of + + + + + node_modules/condense-newlines + + + + Jon Schlinkert + is-whitespace + 0.3.0 + Returns true if the value passed is all whitespace. + pkg:npm/is-whitespace@0.3.0?vcs_url=git://github.com/jonschlinkert/is-whitespace.git + + + git://github.com/jonschlinkert/is-whitespace.git + as detected from PackageJson property "repository.url" + + + https://github.com/jonschlinkert/is-whitespace + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-whitespace/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/is-whitespace + + + + Einar Lielmanis <einar@beautifier.io> + js-beautify + 1.14.6 + beautifier.io for node + + + MIT + + + pkg:npm/js-beautify@1.14.6?vcs_url=git://github.com/beautify-web/js-beautify.git + + + git://github.com/beautify-web/js-beautify.git + as detected from PackageJson property "repository.url" + + + https://beautifier.io/ + as detected from PackageJson property "homepage" + + + https://github.com/beautify-web/js-beautify/issues + as detected from PackageJson property "bugs" + + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + glob + 8.0.3 + a little globber + + + ISC + + + pkg:npm/glob@8.0.3?vcs_url=git://github.com/isaacs/node-glob.git + + + git://github.com/isaacs/node-glob.git + as detected from PackageJson property "repository.url" + + + + node_modules/js-beautify/node_modules/glob + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me) + minimatch + 5.1.0 + a glob matcher in javascript + + + ISC + + + pkg:npm/minimatch@5.1.0?vcs_url=git://github.com/isaacs/minimatch.git + + + git://github.com/isaacs/minimatch.git + as detected from PackageJson property "repository.url" + + + + node_modules/js-beautify/node_modules/minimatch + + + + Julian Gruber + brace-expansion + 2.0.1 + Brace expansion as known from sh/bash + + + MIT + + + pkg:npm/brace-expansion@2.0.1?vcs_url=git://github.com/juliangruber/brace-expansion.git + + + git://github.com/juliangruber/brace-expansion.git + as detected from PackageJson property "repository.url" + + + https://github.com/juliangruber/brace-expansion + as detected from PackageJson property "homepage" + + + + node_modules/js-beautify/node_modules/brace-expansion + + + + GitHub Inc. + nopt + 6.0.0 + Option parsing for Node, supporting types, shorthands, etc. Used by npm. + + + ISC + + + pkg:npm/nopt@6.0.0?vcs_url=https://github.com/npm/nopt.git + + + https://github.com/npm/nopt.git + as detected from PackageJson property "repository.url" + + + + node_modules/js-beautify/node_modules/nopt + + + + + node_modules/js-beautify + + + + Edd Yerburgh + jest-transform-stub + 2.0.0 + Jest transform stub + + + MIT + + + pkg:npm/jest-transform-stub@2.0.0?vcs_url=git+https://github.com/eddyerburgh/jest-transform-stub.git + + + git+https://github.com/eddyerburgh/jest-transform-stub.git + as detected from PackageJson property "repository.url" + + + https://github.com/eddyerburgh/jest-transform-stub#readme + as detected from PackageJson property "homepage" + + + https://github.com/eddyerburgh/jest-transform-stub/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-transform-stub + + + + Rogelio Guzman <rogelioguzmanh@gmail.com> + jest-watch-typeahead + 0.2.1 + Jest plugin for filtering by filename or test name + + + MIT + + + pkg:npm/jest-watch-typeahead@0.2.1?vcs_url=https://github.com/jest-community/jest-watch-typeahead.git + + + https://github.com/jest-community/jest-watch-typeahead.git + as detected from PackageJson property "repository.url" + + + https://github.com/jest-community/jest-watch-typeahead + as detected from PackageJson property "homepage" + + + + + Sindre Sorhus + strip-ansi + 5.2.0 + Strip ANSI escape codes from a string + + + MIT + + + pkg:npm/strip-ansi@5.2.0?vcs_url=chalk/strip-ansi + + + chalk/strip-ansi + as detected from PackageJson property "repository" + + + + node_modules/jest-watch-typeahead/node_modules/strip-ansi + + + + Sindre Sorhus + ansi-regex + 4.1.1 + Regular expression for matching ANSI escape codes + + + MIT + + + pkg:npm/ansi-regex@4.1.1?vcs_url=chalk/ansi-regex + + + chalk/ansi-regex + as detected from PackageJson property "repository" + + + + node_modules/jest-watch-typeahead/node_modules/ansi-regex + + + + + node_modules/jest-watch-typeahead + + + + jest-watcher + 23.4.0 + Delightful JavaScript Testing. + + + MIT + + + pkg:npm/jest-watcher@23.4.0?vcs_url=https://github.com/facebook/jest + + + https://github.com/facebook/jest + as detected from PackageJson property "repository.url" + + + https://jestjs.io/ + as detected from PackageJson property "homepage" + + + https://github.com/facebook/jest/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-watcher + + + + Sindre Sorhus + string-length + 2.0.0 + Get the real length of a string - by correctly counting astral symbols and ignoring ansi escape codes + + + MIT + + + pkg:npm/string-length@2.0.0?vcs_url=sindresorhus/string-length + + + sindresorhus/string-length + as detected from PackageJson property "repository" + + + + + Sindre Sorhus + strip-ansi + 4.0.0 + Strip ANSI escape codes + + + MIT + + + pkg:npm/strip-ansi@4.0.0?vcs_url=chalk/strip-ansi + + + chalk/strip-ansi + as detected from PackageJson property "repository" + + + + node_modules/string-length/node_modules/strip-ansi + + + + + node_modules/string-length + + + + Kevin Martensson + astral-regex + 1.0.0 + Regular expression for matching astral symbols + + + MIT + + + pkg:npm/astral-regex@1.0.0?vcs_url=kevva/astral-regex + + + kevva/astral-regex + as detected from PackageJson property "repository" + + + + node_modules/astral-regex + + + + jest + 23.6.0 + Delightful JavaScript Testing. + + + MIT + + + pkg:npm/jest@23.6.0?vcs_url=https://github.com/facebook/jest + + + https://github.com/facebook/jest + as detected from PackageJson property "repository.url" + + + https://jestjs.io/ + as detected from PackageJson property "homepage" + + + + node_modules/jest + + + + Sindre Sorhus + import-local + 1.0.0 + Let a globally installed package use a locally installed version of itself if available + + + MIT + + + pkg:npm/import-local@1.0.0?vcs_url=sindresorhus/import-local + + + sindresorhus/import-local + as detected from PackageJson property "repository" + + + + + Sindre Sorhus + pkg-dir + 2.0.0 + Find the root directory of a Node.js project or npm package + + + MIT + + + pkg:npm/pkg-dir@2.0.0?vcs_url=sindresorhus/pkg-dir + + + sindresorhus/pkg-dir + as detected from PackageJson property "repository" + + + + node_modules/import-local/node_modules/pkg-dir + + + + + node_modules/import-local + + + + Sindre Sorhus + resolve-cwd + 2.0.0 + Resolve the path of a module like `require.resolve()` but from the current working directory + + + MIT + + + pkg:npm/resolve-cwd@2.0.0?vcs_url=sindresorhus/resolve-cwd + + + sindresorhus/resolve-cwd + as detected from PackageJson property "repository" + + + + node_modules/resolve-cwd + + + + Sindre Sorhus + resolve-from + 3.0.0 + Resolve the path of a module like `require.resolve()` but from a given path + + + MIT + + + pkg:npm/resolve-from@3.0.0?vcs_url=sindresorhus/resolve-from + + + sindresorhus/resolve-from + as detected from PackageJson property "repository" + + + + node_modules/resolve-from + + + + jest-cli + 23.6.0 + Delightful JavaScript Testing. + + + MIT + + + pkg:npm/jest-cli@23.6.0?vcs_url=https://github.com/facebook/jest + + + https://github.com/facebook/jest + as detected from PackageJson property "repository.url" + + + https://jestjs.io/ + as detected from PackageJson property "homepage" + + + https://github.com/facebook/jest/issues + as detected from PackageJson property "bugs.url" + + + + + Jon Schlinkert (https://github.com/jonschlinkert) + micromatch + 2.3.11 + Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch. + + + MIT + + + pkg:npm/micromatch@2.3.11?vcs_url=jonschlinkert/micromatch + + + jonschlinkert/micromatch + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/micromatch + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/micromatch/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-cli/node_modules/micromatch + + + + Jon Schlinkert (https://github.com/jonschlinkert) + arr-diff + 2.0.0 + Returns an array with only the unique values from the first array, by excluding all values from additional arrays using strict equality for comparisons. + + + MIT + + + pkg:npm/arr-diff@2.0.0?vcs_url=jonschlinkert/arr-diff + + + jonschlinkert/arr-diff + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/arr-diff + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/arr-diff/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-cli/node_modules/arr-diff + + + + Jon Schlinkert + array-unique + 0.2.1 + Return an array free of duplicate values. Fastest ES5 implementation. + pkg:npm/array-unique@0.2.1?vcs_url=git://github.com/jonschlinkert/array-unique.git + + + git://github.com/jonschlinkert/array-unique.git + as detected from PackageJson property "repository.url" + + + https://github.com/jonschlinkert/array-unique + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/array-unique/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-cli/node_modules/array-unique + + + + Jon Schlinkert (https://github.com/jonschlinkert) + braces + 1.8.5 + Fastest brace expansion for node.js, with the most complete support for the Bash 4.3 braces specification. + + + MIT + + + pkg:npm/braces@1.8.5?vcs_url=jonschlinkert/braces + + + jonschlinkert/braces + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/braces + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/braces/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-cli/node_modules/braces + + + + Jon Schlinkert (https://github.com/jonschlinkert) + expand-brackets + 0.1.5 + Expand POSIX bracket expressions (character classes) in glob patterns. + + + MIT + + + pkg:npm/expand-brackets@0.1.5?vcs_url=jonschlinkert/expand-brackets + + + jonschlinkert/expand-brackets + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/expand-brackets + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/expand-brackets/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-cli/node_modules/expand-brackets + + + + Jon Schlinkert + extglob + 0.3.2 + Convert extended globs to regex-compatible strings. Add (almost) the expressive power of regular expressions to glob patterns. + + + MIT + + + pkg:npm/extglob@0.3.2?vcs_url=git://github.com/jonschlinkert/extglob.git + + + git://github.com/jonschlinkert/extglob.git + as detected from PackageJson property "repository.url" + + + https://github.com/jonschlinkert/extglob + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/extglob/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-cli/node_modules/extglob + + + + Jon Schlinkert + is-extglob + 1.0.0 + Returns true if a string has an extglob. + + + MIT + + + pkg:npm/is-extglob@1.0.0?vcs_url=jonschlinkert/is-extglob + + + jonschlinkert/is-extglob + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-extglob + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-extglob/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-cli/node_modules/is-extglob + + + + Jon Schlinkert + is-glob + 2.0.1 + 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. + + + MIT + + + pkg:npm/is-glob@2.0.1?vcs_url=jonschlinkert/is-glob + + + jonschlinkert/is-glob + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-glob + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-glob/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-cli/node_modules/is-glob + + + + Jon Schlinkert (https://github.com/jonschlinkert) + kind-of + 3.2.2 + Get the native type of a value. + + + MIT + + + pkg:npm/kind-of@3.2.2?vcs_url=jonschlinkert/kind-of + + + jonschlinkert/kind-of + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/kind-of + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/kind-of/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-cli/node_modules/kind-of + + + + Jon Schlinkert (https://github.com/jonschlinkert) + normalize-path + 2.1.1 + 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. + + + MIT + + + pkg:npm/normalize-path@2.1.1?vcs_url=jonschlinkert/normalize-path + + + jonschlinkert/normalize-path + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/normalize-path + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/normalize-path/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-cli/node_modules/normalize-path + + + + Sindre Sorhus + slash + 1.0.0 + Convert Windows backslash paths to slash paths + + + MIT + + + pkg:npm/slash@1.0.0?vcs_url=sindresorhus/slash + + + sindresorhus/slash + as detected from PackageJson property "repository" + + + + node_modules/jest-cli/node_modules/slash + + + + Sindre Sorhus + strip-ansi + 4.0.0 + Strip ANSI escape codes + + + MIT + + + pkg:npm/strip-ansi@4.0.0?vcs_url=chalk/strip-ansi + + + chalk/strip-ansi + as detected from PackageJson property "repository" + + + + node_modules/jest-cli/node_modules/strip-ansi + + + + yargs + 11.1.1 + yargs the modern, pirate-themed, successor to optimist. + + + MIT + + + pkg:npm/yargs@11.1.1?vcs_url=http://github.com/yargs/yargs.git + + + http://github.com/yargs/yargs.git + as detected from PackageJson property "repository.url" + + + http://yargs.js.org/ + as detected from PackageJson property "homepage" + + + + node_modules/jest-cli/node_modules/yargs + + + + Ben Coe <ben@npmjs.com> + cliui + 4.1.0 + easily create complex multi-column command-line-interfaces + + + ISC + + + pkg:npm/cliui@4.1.0?vcs_url=http://github.com/yargs/cliui.git + + + http://github.com/yargs/cliui.git + as detected from PackageJson property "repository.url" + + + + node_modules/jest-cli/node_modules/cliui + + + + Sindre Sorhus + string-width + 2.1.1 + Get the visual width of a string - the number of columns required to display it + + + MIT + + + pkg:npm/string-width@2.1.1?vcs_url=sindresorhus/string-width + + + sindresorhus/string-width + as detected from PackageJson property "repository" + + + + node_modules/jest-cli/node_modules/string-width + + + + Sindre Sorhus + wrap-ansi + 2.1.0 + Wordwrap a string with ANSI escape codes + + + MIT + + + pkg:npm/wrap-ansi@2.1.0?vcs_url=chalk/wrap-ansi + + + chalk/wrap-ansi + as detected from PackageJson property "repository" + + + + + Sindre Sorhus + string-width + 1.0.2 + Get the visual width of a string - the number of columns required to display it + + + MIT + + + pkg:npm/string-width@1.0.2?vcs_url=sindresorhus/string-width + + + sindresorhus/string-width + as detected from PackageJson property "repository" + + + + node_modules/jest-cli/node_modules/wrap-ansi/node_modules/string-width + + + + Sindre Sorhus + is-fullwidth-code-point + 1.0.0 + Check if the character represented by a given Unicode code point is fullwidth + + + MIT + + + pkg:npm/is-fullwidth-code-point@1.0.0?vcs_url=sindresorhus/is-fullwidth-code-point + + + sindresorhus/is-fullwidth-code-point + as detected from PackageJson property "repository" + + + + node_modules/jest-cli/node_modules/wrap-ansi/node_modules/is-fullwidth-code-point + + + + Sindre Sorhus + strip-ansi + 3.0.1 + Strip ANSI escape codes + + + MIT + + + pkg:npm/strip-ansi@3.0.1?vcs_url=chalk/strip-ansi + + + chalk/strip-ansi + as detected from PackageJson property "repository" + + + + node_modules/jest-cli/node_modules/wrap-ansi/node_modules/strip-ansi + + + + Sindre Sorhus + ansi-regex + 2.1.1 + Regular expression for matching ANSI escape codes + + + MIT + + + pkg:npm/ansi-regex@2.1.1?vcs_url=chalk/ansi-regex + + + chalk/ansi-regex + as detected from PackageJson property "repository" + + + + node_modules/jest-cli/node_modules/wrap-ansi/node_modules/ansi-regex + + + + + node_modules/jest-cli/node_modules/wrap-ansi + + + + Stefan Penner + get-caller-file + 1.0.3 + + + ISC + + + pkg:npm/get-caller-file@1.0.3?vcs_url=git+https://github.com/stefanpenner/get-caller-file.git + + + git+https://github.com/stefanpenner/get-caller-file.git + as detected from PackageJson property "repository.url" + + + https://github.com/stefanpenner/get-caller-file#readme + as detected from PackageJson property "homepage" + + + https://github.com/stefanpenner/get-caller-file/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-cli/node_modules/get-caller-file + + + + Sindre Sorhus + is-fullwidth-code-point + 2.0.0 + Check if the character represented by a given Unicode code point is fullwidth + + + MIT + + + pkg:npm/is-fullwidth-code-point@2.0.0?vcs_url=sindresorhus/is-fullwidth-code-point + + + sindresorhus/is-fullwidth-code-point + as detected from PackageJson property "repository" + + + + node_modules/jest-cli/node_modules/is-fullwidth-code-point + + + + Ben Coe <ben@npmjs.com> + y18n + 3.2.2 + the bare-bones internationalization library used by yargs + + + ISC + + + pkg:npm/y18n@3.2.2?vcs_url=git@github.com:yargs/y18n.git + + + https://github.com/yargs/y18n + as detected from PackageJson property "homepage" + + + https://github.com/yargs/y18n/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-cli/node_modules/y18n + + + + Ben Coe <ben@npmjs.com> + yargs-parser + 9.0.2 + the mighty option parser used by yargs + + + ISC + + + pkg:npm/yargs-parser@9.0.2?vcs_url=git@github.com:yargs/yargs-parser.git + + node_modules/jest-cli/node_modules/yargs-parser + + + + Sindre Sorhus + camelcase + 4.1.0 + Convert a dash/dot/underscore/space separated string to camelCase: foo-bar -> fooBar + + + MIT + + + pkg:npm/camelcase@4.1.0?vcs_url=sindresorhus/camelcase + + + sindresorhus/camelcase + as detected from PackageJson property "repository" + + + + node_modules/jest-cli/node_modules/camelcase + + + + + node_modules/jest-cli + + + + "Cowboy" Ben Alman + exit + 0.1.2 + A replacement for process.exit that ensures stdio are fully drained before exiting. + + + MIT + https://github.com/cowboy/node-exit/blob/master/LICENSE-MIT + + + pkg:npm/exit@0.1.2?vcs_url=git://github.com/cowboy/node-exit.git + + + git://github.com/cowboy/node-exit.git + as detected from PackageJson property "repository.url" + + + https://github.com/cowboy/node-exit + as detected from PackageJson property "homepage" + + + https://github.com/cowboy/node-exit/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/exit + + + + Krishnan Anantheswaran <kananthmail-github@yahoo.com> + istanbul-api + 1.3.7 + High level API for istanbul features + + + BSD-3-Clause + + + pkg:npm/istanbul-api@1.3.7?vcs_url=git+ssh://git@github.com/istanbuljs/istanbuljs.git + + + git+ssh://git@github.com/istanbuljs/istanbuljs.git + as detected from PackageJson property "repository.url" + + + https://github.com/istanbuljs/istanbuljs#readme + as detected from PackageJson property "homepage" + + + https://github.com/istanbuljs/istanbuljs/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/istanbul-api + + + + Caolan McMahon + async + 2.6.4 + Higher-order functions and common patterns for asynchronous code + + + MIT + + + pkg:npm/async@2.6.4?vcs_url=https://github.com/caolan/async.git + + + https://github.com/caolan/async.git + as detected from PackageJson property "repository.url" + + + https://caolan.github.io/async/ + as detected from PackageJson property "homepage" + + + https://github.com/caolan/async/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/async + + + + mklabs + fileset + 2.0.3 + Wrapper around miniglob / minimatch combo to allow multiple patterns matching and include-exclude ability + + + MIT + + + pkg:npm/fileset@2.0.3?vcs_url=git://github.com/mklabs/node-fileset.git + + + git://github.com/mklabs/node-fileset.git + as detected from PackageJson property "repository.url" + + + https://github.com/mklabs/node-fileset + as detected from PackageJson property "homepage" + + + + node_modules/fileset + + + + Krishnan Anantheswaran <kananthmail-github@yahoo.com> + istanbul-lib-coverage + 1.2.1 + Data library for istanbul coverage objects + + + BSD-3-Clause + + + pkg:npm/istanbul-lib-coverage@1.2.1?vcs_url=git@github.com:istanbuljs/istanbuljs.git + + + https://github.com/istanbuljs/istanbuljs + as detected from PackageJson property "homepage" + + + https://github.com/istanbuljs/istanbuljs/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/istanbul-lib-coverage + + + + Krishnan Anantheswaran <kananthmail-github@yahoo.com> + istanbul-lib-hook + 1.2.2 + Hooks for require, vm and script used in istanbul + + + BSD-3-Clause + + + pkg:npm/istanbul-lib-hook@1.2.2?vcs_url=git+ssh://git@github.com/istanbuljs/istanbuljs.git + + + git+ssh://git@github.com/istanbuljs/istanbuljs.git + as detected from PackageJson property "repository.url" + + + https://github.com/istanbuljs/istanbuljs#readme + as detected from PackageJson property "homepage" + + + https://github.com/istanbuljs/istanbuljs/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/istanbul-lib-hook + + + + James Talmage + append-transform + 0.4.0 + Install a transform to `require.extensions` that always runs last, even if additional extensions are added later. + + + MIT + + + pkg:npm/append-transform@0.4.0?vcs_url=jamestalmage/append-transform + + + jamestalmage/append-transform + as detected from PackageJson property "repository" + + + + node_modules/append-transform + + + + James Talmage + default-require-extensions + 1.0.0 + Node's default require extensions as a separate module + + + MIT + + + pkg:npm/default-require-extensions@1.0.0?vcs_url=jamestalmage/default-require-extensions + + + jamestalmage/default-require-extensions + as detected from PackageJson property "repository" + + + + node_modules/default-require-extensions + + + + Sindre Sorhus + strip-bom + 2.0.0 + Strip UTF-8 byte order mark (BOM) from a string/buffer + + + MIT + + + pkg:npm/strip-bom@2.0.0?vcs_url=sindresorhus/strip-bom + + + sindresorhus/strip-bom + as detected from PackageJson property "repository" + + + + node_modules/strip-bom + + + + Krishnan Anantheswaran <kananthmail-github@yahoo.com> + istanbul-lib-instrument + 1.10.2 + Core istanbul API for JS code coverage + + + BSD-3-Clause + + + pkg:npm/istanbul-lib-instrument@1.10.2?vcs_url=git@github.com:istanbuljs/istanbuljs.git + + + https://github.com/istanbuljs/istanbuljs + as detected from PackageJson property "homepage" + + + https://github.com/istanbuljs/istanbuljs/issues + as detected from PackageJson property "bugs.url" + + + + + semver + 5.7.1 + The semantic version parser used by npm. + + + ISC + + + pkg:npm/semver@5.7.1?vcs_url=https://github.com/npm/node-semver + + + https://github.com/npm/node-semver + as detected from PackageJson property "repository" + + + + node_modules/istanbul-lib-instrument/node_modules/semver + + + + + node_modules/istanbul-lib-instrument + + + + Krishnan Anantheswaran <kananthmail-github@yahoo.com> + istanbul-lib-report + 1.1.5 + projx reporting library for istanbul + + + BSD-3-Clause + + + pkg:npm/istanbul-lib-report@1.1.5?vcs_url=git@github.com:istanbuljs/istanbuljs.git + + + https://github.com/istanbuljs/istanbuljs + as detected from PackageJson property "homepage" + + + https://github.com/istanbuljs/istanbuljs/issues + as detected from PackageJson property "bugs.url" + + + + + Sindre Sorhus + supports-color + 3.2.3 + Detect whether a terminal supports color + + + MIT + + + pkg:npm/supports-color@3.2.3?vcs_url=chalk/supports-color + + + chalk/supports-color + as detected from PackageJson property "repository" + + + + node_modules/istanbul-lib-report/node_modules/supports-color + + + + Sindre Sorhus + has-flag + 1.0.0 + Check if argv has a specific flag + + + MIT + + + pkg:npm/has-flag@1.0.0?vcs_url=sindresorhus/has-flag + + + sindresorhus/has-flag + as detected from PackageJson property "repository" + + + + node_modules/istanbul-lib-report/node_modules/has-flag + + + + + node_modules/istanbul-lib-report + + + + Javier Blanco <http://jbgutierrez.info> + path-parse + 1.0.7 + Node.js path.parse() ponyfill + + + MIT + + + pkg:npm/path-parse@1.0.7?vcs_url=https://github.com/jbgutierrez/path-parse.git + + + https://github.com/jbgutierrez/path-parse.git + as detected from PackageJson property "repository.url" + + + https://github.com/jbgutierrez/path-parse#readme + as detected from PackageJson property "homepage" + + + https://github.com/jbgutierrez/path-parse/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/path-parse + + + + Krishnan Anantheswaran <kananthmail-github@yahoo.com> + istanbul-lib-source-maps + 1.2.6 + Source maps support for istanbul + + + BSD-3-Clause + + + pkg:npm/istanbul-lib-source-maps@1.2.6?vcs_url=git+ssh://git@github.com/istanbuljs/istanbuljs.git + + + git+ssh://git@github.com/istanbuljs/istanbuljs.git + as detected from PackageJson property "repository.url" + + + https://github.com/istanbuljs/istanbuljs#readme + as detected from PackageJson property "homepage" + + + https://github.com/istanbuljs/istanbuljs/issues + as detected from PackageJson property "bugs.url" + + + + + TJ Holowaychuk <tj@vision-media.ca> + debug + 3.2.7 + small debugging utility + + + MIT + + + pkg:npm/debug@3.2.7?vcs_url=git://github.com/visionmedia/debug.git + + + git://github.com/visionmedia/debug.git + as detected from PackageJson property "repository.url" + + + + node_modules/istanbul-lib-source-maps/node_modules/debug + + + + Nick Fitzgerald <nfitzgerald@mozilla.com> + source-map + 0.5.7 + Generates and consumes source maps + + + BSD-3-Clause + + + pkg:npm/source-map@0.5.7?vcs_url=http://github.com/mozilla/source-map.git + + + http://github.com/mozilla/source-map.git + as detected from PackageJson property "repository.url" + + + https://github.com/mozilla/source-map + as detected from PackageJson property "homepage" + + + + node_modules/istanbul-lib-source-maps/node_modules/source-map + + + + + node_modules/istanbul-lib-source-maps + + + + Krishnan Anantheswaran <kananthmail-github@yahoo.com> + istanbul-reports + 1.5.1 + istanbul reports + + + BSD-3-Clause + + + pkg:npm/istanbul-reports@1.5.1?vcs_url=git@github.com:istanbuljs/istanbuljs + + + https://github.com/istanbuljs/istanbuljs + as detected from PackageJson property "homepage" + + + https://github.com/istanbuljs/istanbuljs/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/istanbul-reports + + + + Yehuda Katz + handlebars + 4.5.3 + Handlebars provides the power necessary to let you build semantic templates effectively with no frustration + + + MIT + + + pkg:npm/handlebars@4.5.3?vcs_url=https://github.com/wycats/handlebars.js.git + + + https://github.com/wycats/handlebars.js.git + as detected from PackageJson property "repository.url" + + + http://www.handlebarsjs.com/ + as detected from PackageJson property "homepage" + + + + node_modules/handlebars + + + + jest-changed-files + 23.4.2 + + + MIT + + + pkg:npm/jest-changed-files@23.4.2?vcs_url=https://github.com/facebook/jest.git + + + https://github.com/facebook/jest.git + as detected from PackageJson property "repository.url" + + + + node_modules/jest-changed-files + + + + ForbesLindesay + throat + 4.1.0 + Throttle the parallelism of an asynchronous (promise returning) function / functions + + + MIT + + + pkg:npm/throat@4.1.0?vcs_url=https://github.com/ForbesLindesay/throat.git + + + https://github.com/ForbesLindesay/throat.git + as detected from PackageJson property "repository.url" + + + + node_modules/throat + + + + jest-config + 23.6.0 + + + MIT + + + pkg:npm/jest-config@23.6.0?vcs_url=https://github.com/facebook/jest.git + + + https://github.com/facebook/jest.git + as detected from PackageJson property "repository.url" + + + + + Sebastian McKenzie <sebmck@gmail.com> + babel-core + 6.26.3 + Babel compiler core. + + + MIT + + + pkg:npm/babel-core@6.26.3?vcs_url=https://github.com/babel/babel/tree/master/packages/babel-core + + + https://github.com/babel/babel/tree/master/packages/babel-core + as detected from PackageJson property "repository" + + + https://babeljs.io/ + as detected from PackageJson property "homepage" + + + + node_modules/jest-config/node_modules/babel-core + + + + TJ Holowaychuk <tj@vision-media.ca> + debug + 2.6.9 + small debugging utility + + + MIT + + + pkg:npm/debug@2.6.9?vcs_url=git://github.com/visionmedia/debug.git + + + git://github.com/visionmedia/debug.git + as detected from PackageJson property "repository.url" + + + + node_modules/jest-config/node_modules/debug + + + + ms + 2.0.0 + Tiny milisecond conversion utility + + + MIT + + + pkg:npm/ms@2.0.0?vcs_url=zeit/ms + + + zeit/ms + as detected from PackageJson property "repository" + + + + node_modules/jest-config/node_modules/ms + + + + Aseem Kishore <aseem.kishore@gmail.com> + json5 + 0.5.1 + JSON for the ES5 era. + + + MIT + + + pkg:npm/json5@0.5.1?vcs_url=https://github.com/aseemk/json5.git + + + https://github.com/aseemk/json5.git + as detected from PackageJson property "repository.url" + + + http://json5.org/ + as detected from PackageJson property "homepage" + + + + node_modules/jest-config/node_modules/json5 + + + + Sindre Sorhus + slash + 1.0.0 + Convert Windows backslash paths to slash paths + + + MIT + + + pkg:npm/slash@1.0.0?vcs_url=sindresorhus/slash + + + sindresorhus/slash + as detected from PackageJson property "repository" + + + + node_modules/jest-config/node_modules/slash + + + + Nick Fitzgerald <nfitzgerald@mozilla.com> + source-map + 0.5.7 + Generates and consumes source maps + + + BSD-3-Clause + + + pkg:npm/source-map@0.5.7?vcs_url=http://github.com/mozilla/source-map.git + + + http://github.com/mozilla/source-map.git + as detected from PackageJson property "repository.url" + + + https://github.com/mozilla/source-map + as detected from PackageJson property "homepage" + + + + node_modules/jest-config/node_modules/source-map + + + + Jon Schlinkert (https://github.com/jonschlinkert) + micromatch + 2.3.11 + Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch. + + + MIT + + + pkg:npm/micromatch@2.3.11?vcs_url=jonschlinkert/micromatch + + + jonschlinkert/micromatch + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/micromatch + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/micromatch/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-config/node_modules/micromatch + + + + Jon Schlinkert (https://github.com/jonschlinkert) + arr-diff + 2.0.0 + Returns an array with only the unique values from the first array, by excluding all values from additional arrays using strict equality for comparisons. + + + MIT + + + pkg:npm/arr-diff@2.0.0?vcs_url=jonschlinkert/arr-diff + + + jonschlinkert/arr-diff + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/arr-diff + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/arr-diff/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-config/node_modules/arr-diff + + + + Jon Schlinkert + array-unique + 0.2.1 + Return an array free of duplicate values. Fastest ES5 implementation. + pkg:npm/array-unique@0.2.1?vcs_url=git://github.com/jonschlinkert/array-unique.git + + + git://github.com/jonschlinkert/array-unique.git + as detected from PackageJson property "repository.url" + + + https://github.com/jonschlinkert/array-unique + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/array-unique/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-config/node_modules/array-unique + + + + Jon Schlinkert (https://github.com/jonschlinkert) + braces + 1.8.5 + Fastest brace expansion for node.js, with the most complete support for the Bash 4.3 braces specification. + + + MIT + + + pkg:npm/braces@1.8.5?vcs_url=jonschlinkert/braces + + + jonschlinkert/braces + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/braces + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/braces/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-config/node_modules/braces + + + + Jon Schlinkert (https://github.com/jonschlinkert) + expand-brackets + 0.1.5 + Expand POSIX bracket expressions (character classes) in glob patterns. + + + MIT + + + pkg:npm/expand-brackets@0.1.5?vcs_url=jonschlinkert/expand-brackets + + + jonschlinkert/expand-brackets + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/expand-brackets + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/expand-brackets/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-config/node_modules/expand-brackets + + + + Jon Schlinkert + extglob + 0.3.2 + Convert extended globs to regex-compatible strings. Add (almost) the expressive power of regular expressions to glob patterns. + + + MIT + + + pkg:npm/extglob@0.3.2?vcs_url=git://github.com/jonschlinkert/extglob.git + + + git://github.com/jonschlinkert/extglob.git + as detected from PackageJson property "repository.url" + + + https://github.com/jonschlinkert/extglob + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/extglob/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-config/node_modules/extglob + + + + Jon Schlinkert + is-extglob + 1.0.0 + Returns true if a string has an extglob. + + + MIT + + + pkg:npm/is-extglob@1.0.0?vcs_url=jonschlinkert/is-extglob + + + jonschlinkert/is-extglob + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-extglob + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-extglob/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-config/node_modules/is-extglob + + + + Jon Schlinkert + is-glob + 2.0.1 + 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. + + + MIT + + + pkg:npm/is-glob@2.0.1?vcs_url=jonschlinkert/is-glob + + + jonschlinkert/is-glob + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-glob + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-glob/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-config/node_modules/is-glob + + + + Jon Schlinkert (https://github.com/jonschlinkert) + kind-of + 3.2.2 + Get the native type of a value. + + + MIT + + + pkg:npm/kind-of@3.2.2?vcs_url=jonschlinkert/kind-of + + + jonschlinkert/kind-of + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/kind-of + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/kind-of/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-config/node_modules/kind-of + + + + Jon Schlinkert (https://github.com/jonschlinkert) + normalize-path + 2.1.1 + 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. + + + MIT + + + pkg:npm/normalize-path@2.1.1?vcs_url=jonschlinkert/normalize-path + + + jonschlinkert/normalize-path + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/normalize-path + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/normalize-path/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-config/node_modules/normalize-path + + + + + node_modules/jest-config + + + + Sebastian McKenzie <sebmck@gmail.com> + babel-generator + 6.26.1 + Turns an AST into code. + + + MIT + + + pkg:npm/babel-generator@6.26.1?vcs_url=https://github.com/babel/babel/tree/master/packages/babel-generator + + + https://github.com/babel/babel/tree/master/packages/babel-generator + as detected from PackageJson property "repository" + + + https://babeljs.io/ + as detected from PackageJson property "homepage" + + + + + Mathias Bynens + jsesc + 1.3.0 + A JavaScript library for escaping JavaScript strings while generating the shortest possible valid output. + + + MIT + + + pkg:npm/jsesc@1.3.0?vcs_url=https://github.com/mathiasbynens/jsesc.git + + + https://github.com/mathiasbynens/jsesc.git + as detected from PackageJson property "repository.url" + + + https://mths.be/jsesc + as detected from PackageJson property "homepage" + + + https://github.com/mathiasbynens/jsesc/issues + as detected from PackageJson property "bugs" + + + + node_modules/babel-generator/node_modules/jsesc + + + + Nick Fitzgerald <nfitzgerald@mozilla.com> + source-map + 0.5.7 + Generates and consumes source maps + + + BSD-3-Clause + + + pkg:npm/source-map@0.5.7?vcs_url=http://github.com/mozilla/source-map.git + + + http://github.com/mozilla/source-map.git + as detected from PackageJson property "repository.url" + + + https://github.com/mozilla/source-map + as detected from PackageJson property "homepage" + + + + node_modules/babel-generator/node_modules/source-map + + + + + node_modules/babel-generator + + + + Sebastian McKenzie <sebmck@gmail.com> + babel-helpers + 6.24.1 + Collection of helper functions used by Babel transforms. + + + MIT + + + pkg:npm/babel-helpers@6.24.1?vcs_url=https://github.com/babel/babel/tree/master/packages/babel-helpers + + + https://github.com/babel/babel/tree/master/packages/babel-helpers + as detected from PackageJson property "repository" + + + https://babeljs.io/ + as detected from PackageJson property "homepage" + + + + node_modules/babel-helpers + + + + Sebastian McKenzie <sebmck@gmail.com> + babel-register + 6.26.0 + babel require hook + + + MIT + + + pkg:npm/babel-register@6.26.0?vcs_url=https://github.com/babel/babel/tree/master/packages/babel-register + + + https://github.com/babel/babel/tree/master/packages/babel-register + as detected from PackageJson property "repository" + + + + + Sebastian McKenzie <sebmck@gmail.com> + babel-core + 6.26.3 + Babel compiler core. + + + MIT + + + pkg:npm/babel-core@6.26.3?vcs_url=https://github.com/babel/babel/tree/master/packages/babel-core + + + https://github.com/babel/babel/tree/master/packages/babel-core + as detected from PackageJson property "repository" + + + https://babeljs.io/ + as detected from PackageJson property "homepage" + + + + node_modules/babel-register/node_modules/babel-core + + + + TJ Holowaychuk <tj@vision-media.ca> + debug + 2.6.9 + small debugging utility + + + MIT + + + pkg:npm/debug@2.6.9?vcs_url=git://github.com/visionmedia/debug.git + + + git://github.com/visionmedia/debug.git + as detected from PackageJson property "repository.url" + + + + node_modules/babel-register/node_modules/debug + + + + ms + 2.0.0 + Tiny milisecond conversion utility + + + MIT + + + pkg:npm/ms@2.0.0?vcs_url=zeit/ms + + + zeit/ms + as detected from PackageJson property "repository" + + + + node_modules/babel-register/node_modules/ms + + + + Aseem Kishore <aseem.kishore@gmail.com> + json5 + 0.5.1 + JSON for the ES5 era. + + + MIT + + + pkg:npm/json5@0.5.1?vcs_url=https://github.com/aseemk/json5.git + + + https://github.com/aseemk/json5.git + as detected from PackageJson property "repository.url" + + + http://json5.org/ + as detected from PackageJson property "homepage" + + + + node_modules/babel-register/node_modules/json5 + + + + Sindre Sorhus + slash + 1.0.0 + Convert Windows backslash paths to slash paths + + + MIT + + + pkg:npm/slash@1.0.0?vcs_url=sindresorhus/slash + + + sindresorhus/slash + as detected from PackageJson property "repository" + + + + node_modules/babel-register/node_modules/slash + + + + Nick Fitzgerald <nfitzgerald@mozilla.com> + source-map + 0.5.7 + Generates and consumes source maps + + + BSD-3-Clause + + + pkg:npm/source-map@0.5.7?vcs_url=http://github.com/mozilla/source-map.git + + + http://github.com/mozilla/source-map.git + as detected from PackageJson property "repository.url" + + + https://github.com/mozilla/source-map + as detected from PackageJson property "homepage" + + + + node_modules/babel-register/node_modules/source-map + + + + source-map-support + 0.4.18 + Fixes stack traces for files with source maps + + + MIT + + + pkg:npm/source-map-support@0.4.18?vcs_url=https://github.com/evanw/node-source-map-support + + + https://github.com/evanw/node-source-map-support + as detected from PackageJson property "repository.url" + + + https://github.com/evanw/node-source-map-support/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/babel-register/node_modules/source-map-support + + + + + node_modules/babel-register + + + + Ben Newman + private + 0.1.8 + Utility for associating truly private state with any JavaScript object + + + MIT + + + pkg:npm/private@0.1.8?vcs_url=git://github.com/benjamn/private.git + + + git://github.com/benjamn/private.git + as detected from PackageJson property "repository.url" + + + http://github.com/benjamn/private + as detected from PackageJson property "homepage" + + + + node_modules/private + + + + Sindre Sorhus + home-or-tmp + 2.0.0 + Get the user home directory with fallback to the system temp directory + + + MIT + + + pkg:npm/home-or-tmp@2.0.0?vcs_url=sindresorhus/home-or-tmp + + + sindresorhus/home-or-tmp + as detected from PackageJson property "repository" + + + + node_modules/home-or-tmp + + + + Sindre Sorhus + os-homedir + 1.0.2 + Node.js 4 `os.homedir()` ponyfill + + + MIT + + + pkg:npm/os-homedir@1.0.2?vcs_url=sindresorhus/os-homedir + + + sindresorhus/os-homedir + as detected from PackageJson property "repository" + + + + node_modules/os-homedir + + + + Sindre Sorhus + os-tmpdir + 1.0.2 + Node.js os.tmpdir() ponyfill + + + MIT + + + pkg:npm/os-tmpdir@1.0.2?vcs_url=sindresorhus/os-tmpdir + + + sindresorhus/os-tmpdir + as detected from PackageJson property "repository" + + + + node_modules/os-tmpdir + + + + jest-environment-jsdom + 23.4.0 + + + MIT + + + pkg:npm/jest-environment-jsdom@23.4.0?vcs_url=https://github.com/facebook/jest.git + + + https://github.com/facebook/jest.git + as detected from PackageJson property "repository.url" + + + + node_modules/jest-environment-jsdom + + + + jest-environment-node + 23.4.0 + + + MIT + + + pkg:npm/jest-environment-node@23.4.0?vcs_url=https://github.com/facebook/jest.git + + + https://github.com/facebook/jest.git + as detected from PackageJson property "repository.url" + + + + node_modules/jest-environment-node + + + + jest-mock + 23.2.0 + + + MIT + + + pkg:npm/jest-mock@23.2.0?vcs_url=https://github.com/facebook/jest.git + + + https://github.com/facebook/jest.git + as detected from PackageJson property "repository.url" + + + + node_modules/jest-mock + + + + jest-util + 23.4.0 + + + MIT + + + pkg:npm/jest-util@23.4.0?vcs_url=https://github.com/facebook/jest.git + + + https://github.com/facebook/jest.git + as detected from PackageJson property "repository.url" + + + + + Sindre Sorhus + slash + 1.0.0 + Convert Windows backslash paths to slash paths + + + MIT + + + pkg:npm/slash@1.0.0?vcs_url=sindresorhus/slash + + + sindresorhus/slash + as detected from PackageJson property "repository" + + + + node_modules/jest-util/node_modules/slash + + + + + node_modules/jest-util + + + + jest-get-type + 22.4.3 + A utility function to get the type of a value + + + MIT + + + pkg:npm/jest-get-type@22.4.3?vcs_url=https://github.com/facebook/jest.git + + + https://github.com/facebook/jest.git + as detected from PackageJson property "repository.url" + + + + node_modules/jest-get-type + + + + jest-jasmine2 + 23.6.0 + + + MIT + + + pkg:npm/jest-jasmine2@23.6.0?vcs_url=https://github.com/facebook/jest.git + + + https://github.com/facebook/jest.git + as detected from PackageJson property "repository.url" + + + + node_modules/jest-jasmine2 + + + + expect + 23.6.0 + + + MIT + + + pkg:npm/expect@23.6.0?vcs_url=https://github.com/facebook/jest.git + + + https://github.com/facebook/jest.git + as detected from PackageJson property "repository.url" + + + + node_modules/expect + + + + Sindre Sorhus + ansi-styles + 3.2.1 + ANSI escape codes for styling strings in the terminal + + + MIT + + + pkg:npm/ansi-styles@3.2.1?vcs_url=chalk/ansi-styles + + + chalk/ansi-styles + as detected from PackageJson property "repository" + + + + node_modules/ansi-styles + + + + jest-diff + 23.6.0 + + + MIT + + + pkg:npm/jest-diff@23.6.0?vcs_url=https://github.com/facebook/jest.git + + + https://github.com/facebook/jest.git + as detected from PackageJson property "repository.url" + + + + node_modules/jest-diff + + + + jest-matcher-utils + 23.6.0 + A set of utility functions for expect and related packages + + + MIT + + + pkg:npm/jest-matcher-utils@23.6.0?vcs_url=https://github.com/facebook/jest.git + + + https://github.com/facebook/jest.git + as detected from PackageJson property "repository.url" + + + + node_modules/jest-matcher-utils + + + + jest-message-util + 23.4.0 + + + MIT + + + pkg:npm/jest-message-util@23.4.0?vcs_url=https://github.com/facebook/jest.git + + + https://github.com/facebook/jest.git + as detected from PackageJson property "repository.url" + + + + + Jon Schlinkert (https://github.com/jonschlinkert) + micromatch + 2.3.11 + Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch. + + + MIT + + + pkg:npm/micromatch@2.3.11?vcs_url=jonschlinkert/micromatch + + + jonschlinkert/micromatch + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/micromatch + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/micromatch/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-message-util/node_modules/micromatch + + + + Jon Schlinkert (https://github.com/jonschlinkert) + arr-diff + 2.0.0 + Returns an array with only the unique values from the first array, by excluding all values from additional arrays using strict equality for comparisons. + + + MIT + + + pkg:npm/arr-diff@2.0.0?vcs_url=jonschlinkert/arr-diff + + + jonschlinkert/arr-diff + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/arr-diff + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/arr-diff/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-message-util/node_modules/arr-diff + + + + Jon Schlinkert + array-unique + 0.2.1 + Return an array free of duplicate values. Fastest ES5 implementation. + pkg:npm/array-unique@0.2.1?vcs_url=git://github.com/jonschlinkert/array-unique.git + + + git://github.com/jonschlinkert/array-unique.git + as detected from PackageJson property "repository.url" + + + https://github.com/jonschlinkert/array-unique + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/array-unique/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-message-util/node_modules/array-unique + + + + Jon Schlinkert (https://github.com/jonschlinkert) + braces + 1.8.5 + Fastest brace expansion for node.js, with the most complete support for the Bash 4.3 braces specification. + + + MIT + + + pkg:npm/braces@1.8.5?vcs_url=jonschlinkert/braces + + + jonschlinkert/braces + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/braces + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/braces/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-message-util/node_modules/braces + + + + Jon Schlinkert (https://github.com/jonschlinkert) + expand-brackets + 0.1.5 + Expand POSIX bracket expressions (character classes) in glob patterns. + + + MIT + + + pkg:npm/expand-brackets@0.1.5?vcs_url=jonschlinkert/expand-brackets + + + jonschlinkert/expand-brackets + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/expand-brackets + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/expand-brackets/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-message-util/node_modules/expand-brackets + + + + Jon Schlinkert + extglob + 0.3.2 + Convert extended globs to regex-compatible strings. Add (almost) the expressive power of regular expressions to glob patterns. + + + MIT + + + pkg:npm/extglob@0.3.2?vcs_url=git://github.com/jonschlinkert/extglob.git + + + git://github.com/jonschlinkert/extglob.git + as detected from PackageJson property "repository.url" + + + https://github.com/jonschlinkert/extglob + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/extglob/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-message-util/node_modules/extglob + + + + Jon Schlinkert + is-extglob + 1.0.0 + Returns true if a string has an extglob. + + + MIT + + + pkg:npm/is-extglob@1.0.0?vcs_url=jonschlinkert/is-extglob + + + jonschlinkert/is-extglob + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-extglob + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-extglob/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-message-util/node_modules/is-extglob + + + + Jon Schlinkert + is-glob + 2.0.1 + 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. + + + MIT + + + pkg:npm/is-glob@2.0.1?vcs_url=jonschlinkert/is-glob + + + jonschlinkert/is-glob + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-glob + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-glob/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-message-util/node_modules/is-glob + + + + Jon Schlinkert (https://github.com/jonschlinkert) + kind-of + 3.2.2 + Get the native type of a value. + + + MIT + + + pkg:npm/kind-of@3.2.2?vcs_url=jonschlinkert/kind-of + + + jonschlinkert/kind-of + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/kind-of + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/kind-of/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-message-util/node_modules/kind-of + + + + Jon Schlinkert (https://github.com/jonschlinkert) + normalize-path + 2.1.1 + 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. + + + MIT + + + pkg:npm/normalize-path@2.1.1?vcs_url=jonschlinkert/normalize-path + + + jonschlinkert/normalize-path + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/normalize-path + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/normalize-path/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-message-util/node_modules/normalize-path + + + + Sindre Sorhus + slash + 1.0.0 + Convert Windows backslash paths to slash paths + + + MIT + + + pkg:npm/slash@1.0.0?vcs_url=sindresorhus/slash + + + sindresorhus/slash + as detected from PackageJson property "repository" + + + + node_modules/jest-message-util/node_modules/slash + + + + + node_modules/jest-message-util + + + + jest-regex-util + 23.3.0 + + + MIT + + + pkg:npm/jest-regex-util@23.3.0?vcs_url=https://github.com/facebook/jest.git + + + https://github.com/facebook/jest.git + as detected from PackageJson property "repository.url" + + + + node_modules/jest-regex-util + + + + Sindre Sorhus + is-generator-fn + 1.0.0 + Check if something is a generator function + + + MIT + + + pkg:npm/is-generator-fn@1.0.0?vcs_url=sindresorhus/is-generator-fn + + + sindresorhus/is-generator-fn + as detected from PackageJson property "repository" + + + + node_modules/is-generator-fn + + + + Matt Phillips (mattphillips) + jest-each + 23.6.0 + Parameterised tests for Jest + + + MIT + + + pkg:npm/jest-each@23.6.0?vcs_url=https://github.com/facebook/jest.git + + + https://github.com/facebook/jest.git + as detected from PackageJson property "repository.url" + + + + node_modules/jest-each + + + + James Kyle <me@thejameskyle.com> + pretty-format + 23.6.0 + Stringify any JavaScript value. + + + MIT + + + pkg:npm/pretty-format@23.6.0?vcs_url=https://github.com/facebook/jest.git + + + https://github.com/facebook/jest.git + as detected from PackageJson property "repository.url" + + + + node_modules/pretty-format + + + + jest-snapshot + 23.6.0 + + + MIT + + + pkg:npm/jest-snapshot@23.6.0?vcs_url=https://github.com/facebook/jest.git + + + https://github.com/facebook/jest.git + as detected from PackageJson property "repository.url" + + + + + semver + 5.7.1 + The semantic version parser used by npm. + + + ISC + + + pkg:npm/semver@5.7.1?vcs_url=https://github.com/npm/node-semver + + + https://github.com/npm/node-semver + as detected from PackageJson property "repository" + + + + node_modules/jest-snapshot/node_modules/semver + + + + + node_modules/jest-snapshot + + + + jest-resolve + 23.6.0 + + + MIT + + + pkg:npm/jest-resolve@23.6.0?vcs_url=https://github.com/facebook/jest.git + + + https://github.com/facebook/jest.git + as detected from PackageJson property "repository.url" + + + + node_modules/jest-resolve + + + + Roman Shtylman <shtylman@gmail.com> + browser-resolve + 1.11.3 + resolve which handles browser field support in package.json + + + MIT + + + pkg:npm/browser-resolve@1.11.3?vcs_url=git://github.com/shtylman/node-browser-resolve.git + + + git://github.com/shtylman/node-browser-resolve.git + as detected from PackageJson property "repository.url" + + + + + James Halliday + resolve + 1.1.7 + resolve like require.resolve() on behalf of files asynchronously and synchronously + + + MIT + + + pkg:npm/resolve@1.1.7?vcs_url=git://github.com/substack/node-resolve.git + + + git://github.com/substack/node-resolve.git + as detected from PackageJson property "repository.url" + + + + node_modules/browser-resolve/node_modules/resolve + + + + + node_modules/browser-resolve + + + + Simen Bekkhus <sbekkhus91@gmail.com> + realpath-native + 1.1.0 + Use the system's native `realpath` + + + MIT + + + pkg:npm/realpath-native@1.1.0?vcs_url=SimenB/realpath-native + + + SimenB/realpath-native + as detected from PackageJson property "repository" + + + + node_modules/realpath-native + + + + jest-validate + 23.6.0 + + + MIT + + + pkg:npm/jest-validate@23.6.0?vcs_url=https://github.com/facebook/jest.git + + + https://github.com/facebook/jest.git + as detected from PackageJson property "repository.url" + + + + node_modules/jest-validate + + + + Jon Schlinkert (https://github.com/jonschlinkert) + expand-range + 1.8.2 + Fast, bash-like range expansion. Expand a range of numbers or letters, uppercase or lowercase. See the benchmarks. Used by micromatch. + + + MIT + + + pkg:npm/expand-range@1.8.2?vcs_url=jonschlinkert/expand-range + + + jonschlinkert/expand-range + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/expand-range + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/expand-range/issues + as detected from PackageJson property "bugs.url" + + + + + Jon Schlinkert (https://github.com/jonschlinkert) + fill-range + 2.2.4 + Fill in a range of numbers or letters, optionally passing an increment or multiplier to use. + + + MIT + + + pkg:npm/fill-range@2.2.4?vcs_url=jonschlinkert/fill-range + + + jonschlinkert/fill-range + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/fill-range + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/fill-range/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/expand-range/node_modules/fill-range + + + + Jon Schlinkert (https://github.com/jonschlinkert) + is-number + 2.1.0 + Returns true if the value is a number. comprehensive tests. + + + MIT + + + pkg:npm/is-number@2.1.0?vcs_url=jonschlinkert/is-number + + + jonschlinkert/is-number + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-number + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-number/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/expand-range/node_modules/is-number + + + + Jon Schlinkert (https://github.com/jonschlinkert) + kind-of + 3.2.2 + Get the native type of a value. + + + MIT + + + pkg:npm/kind-of@3.2.2?vcs_url=jonschlinkert/kind-of + + + jonschlinkert/kind-of + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/kind-of + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/kind-of/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/expand-range/node_modules/kind-of + + + + Jon Schlinkert (https://github.com/jonschlinkert) + isobject + 2.1.0 + Returns true if the value is an object and not an array or null. + + + MIT + + + pkg:npm/isobject@2.1.0?vcs_url=jonschlinkert/isobject + + + jonschlinkert/isobject + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/isobject + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/isobject/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/expand-range/node_modules/isobject + + + + + node_modules/expand-range + + + + Jon Schlinkert + preserve + 0.2.0 + Temporarily substitute tokens in the given `string` with placeholders, then put them back after transforming the string. + pkg:npm/preserve@0.2.0?vcs_url=git://github.com/jonschlinkert/preserve.git + + + git://github.com/jonschlinkert/preserve.git + as detected from PackageJson property "repository.url" + + + https://github.com/jonschlinkert/preserve + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/preserve/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/preserve + + + + Jon Schlinkert (https://github.com/jonschlinkert) + is-posix-bracket + 0.1.1 + Returns true if the given string is a POSIX bracket expression (POSIX character class). + + + MIT + + + pkg:npm/is-posix-bracket@0.1.1?vcs_url=jonschlinkert/is-posix-bracket + + + jonschlinkert/is-posix-bracket + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-posix-bracket + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-posix-bracket/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/is-posix-bracket + + + + Jon Schlinkert (https://github.com/jonschlinkert) + filename-regex + 2.0.1 + Regular expression for matching file names, with or without extension. + + + MIT + + + pkg:npm/filename-regex@2.0.1?vcs_url=regexhq/filename-regex + + + regexhq/filename-regex + as detected from PackageJson property "repository" + + + https://github.com/regexhq/filename-regex + as detected from PackageJson property "homepage" + + + https://github.com/regexhq/filename-regex/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/filename-regex + + + + darsain + remove-trailing-separator + 1.1.0 + Removes separators from the end of the string. + + + ISC + + + pkg:npm/remove-trailing-separator@1.1.0?vcs_url=git+https://github.com/darsain/remove-trailing-separator.git + + + git+https://github.com/darsain/remove-trailing-separator.git + as detected from PackageJson property "repository.url" + + + https://github.com/darsain/remove-trailing-separator#readme + as detected from PackageJson property "homepage" + + + https://github.com/darsain/remove-trailing-separator/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/remove-trailing-separator + + + + Jon Schlinkert (https://github.com/jonschlinkert) + object.omit + 2.0.1 + Return a copy of an object excluding the given key, or array of keys. Also accepts an optional filter function as the last argument. + + + MIT + + + pkg:npm/object.omit@2.0.1?vcs_url=jonschlinkert/object.omit + + + jonschlinkert/object.omit + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/object.omit + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/object.omit/issues + as detected from PackageJson property "bugs.url" + + + + + Jon Schlinkert (https://github.com/jonschlinkert) + is-extendable + 0.1.1 + 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?" + + + MIT + + + pkg:npm/is-extendable@0.1.1?vcs_url=jonschlinkert/is-extendable + + + jonschlinkert/is-extendable + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-extendable + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-extendable/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/object.omit/node_modules/is-extendable + + + + + node_modules/object.omit + + + + Jon Schlinkert (https://github.com/jonschlinkert) + parse-glob + 3.0.4 + Parse a glob pattern into an object of tokens. + + + MIT + + + pkg:npm/parse-glob@3.0.4?vcs_url=jonschlinkert/parse-glob + + + jonschlinkert/parse-glob + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/parse-glob + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/parse-glob/issues + as detected from PackageJson property "bugs.url" + + + + + Jon Schlinkert + is-extglob + 1.0.0 + Returns true if a string has an extglob. + + + MIT + + + pkg:npm/is-extglob@1.0.0?vcs_url=jonschlinkert/is-extglob + + + jonschlinkert/is-extglob + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-extglob + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-extglob/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/parse-glob/node_modules/is-extglob + + + + Jon Schlinkert + is-glob + 2.0.1 + 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. + + + MIT + + + pkg:npm/is-glob@2.0.1?vcs_url=jonschlinkert/is-glob + + + jonschlinkert/is-glob + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-glob + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-glob/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/parse-glob/node_modules/is-glob + + + + + node_modules/parse-glob + + + + Jon Schlinkert (https://github.com/jonschlinkert) + regex-cache + 0.4.4 + 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. + + + MIT + + + pkg:npm/regex-cache@0.4.4?vcs_url=jonschlinkert/regex-cache + + + jonschlinkert/regex-cache + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/regex-cache + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/regex-cache/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/regex-cache + + + + jsdom + 11.12.0 + A JavaScript implementation of many web standards + + + MIT + + + pkg:npm/jsdom@11.12.0?vcs_url=jsdom/jsdom + + + jsdom/jsdom + as detected from PackageJson property "repository" + + + + + acorn + 5.7.4 + ECMAScript parser + + + MIT + + + pkg:npm/acorn@5.7.4?vcs_url=https://github.com/acornjs/acorn.git + + + https://github.com/acornjs/acorn.git + as detected from PackageJson property "repository.url" + + + https://github.com/acornjs/acorn + as detected from PackageJson property "homepage" + + + + node_modules/jsdom/node_modules/acorn + + + + Ivan Nikulin <ifaaan@gmail.com> (https://github.com/inikulin) + parse5 + 4.0.0 + HTML parsing/serialization toolset for Node.js. WHATWG HTML Living Standard (aka HTML5)-compliant. + + + MIT + + + pkg:npm/parse5@4.0.0?vcs_url=git://github.com/inikulin/parse5.git + + + git://github.com/inikulin/parse5.git + as detected from PackageJson property "repository.url" + + + https://github.com/inikulin/parse5 + as detected from PackageJson property "homepage" + + + + node_modules/jsdom/node_modules/parse5 + + + + + node_modules/jsdom + + + + Jeff Carpenter <gcarpenterv@gmail.com> + abab + 2.0.6 + WHATWG spec-compliant implementations of window.atob and window.btoa. + + + BSD-3-Clause + + + pkg:npm/abab@2.0.6?vcs_url=git+https://github.com/jsdom/abab.git + + + git+https://github.com/jsdom/abab.git + as detected from PackageJson property "repository.url" + + + https://github.com/jsdom/abab#readme + as detected from PackageJson property "homepage" + + + https://github.com/jsdom/abab/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/abab + + + + ForbesLindesay + acorn-globals + 4.3.4 + Detect global variables in JavaScript using acorn + + + MIT + + + pkg:npm/acorn-globals@4.3.4?vcs_url=https://github.com/ForbesLindesay/acorn-globals.git + + + https://github.com/ForbesLindesay/acorn-globals.git + as detected from PackageJson property "repository.url" + + + + node_modules/acorn-globals + + + + acorn-walk + 6.2.0 + ECMAScript (ESTree) AST walker + + + MIT + + + pkg:npm/acorn-walk@6.2.0?vcs_url=https://github.com/acornjs/acorn.git + + + https://github.com/acornjs/acorn.git + as detected from PackageJson property "repository.url" + + + https://github.com/acornjs/acorn + as detected from PackageJson property "homepage" + + + + node_modules/acorn-walk + + + + Jonathan Ong + array-equal + 1.0.0 + check if two arrays are equal + + + MIT + + + pkg:npm/array-equal@1.0.0?vcs_url=component/array-equal + + + component/array-equal + as detected from PackageJson property "repository" + + + + node_modules/array-equal + + + + Nikita Vasilyev <me@elv1s.ru> + cssom + 0.3.8 + CSS Object Model implementation and CSS parser + + + MIT + + + pkg:npm/cssom@0.3.8?vcs_url=NV/CSSOM + + + NV/CSSOM + as detected from PackageJson property "repository" + + + + node_modules/cssom + + + + cssstyle + 1.4.0 + CSSStyleDeclaration Object Model implementation + + + MIT + + + pkg:npm/cssstyle@1.4.0?vcs_url=jsakas/CSSStyleDeclaration + + + jsakas/CSSStyleDeclaration + as detected from PackageJson property "repository" + + + https://github.com/jsakas/CSSStyleDeclaration + as detected from PackageJson property "homepage" + + + https://github.com/jsakas/CSSStyleDeclaration/issues + as detected from PackageJson property "bugs" + + + + node_modules/cssstyle + + + + Domenic Denicola <d@domenic.me> (https://domenic.me/) + data-urls + 1.1.0 + Parses data: URLs + + + MIT + + + pkg:npm/data-urls@1.1.0?vcs_url=jsdom/data-urls + + + jsdom/data-urls + as detected from PackageJson property "repository" + + + + + Sebastian Mayr <github@smayr.name> + whatwg-url + 7.1.0 + An implementation of the WHATWG URL Standard's URL API and parsing machinery + + + MIT + + + pkg:npm/whatwg-url@7.1.0?vcs_url=jsdom/whatwg-url + + + jsdom/whatwg-url + as detected from PackageJson property "repository" + + + + node_modules/data-urls/node_modules/whatwg-url + + + + + node_modules/data-urls + + + + Domenic Denicola <d@domenic.me> (https://domenic.me/) + whatwg-mimetype + 2.3.0 + Parses, serializes, and manipulates MIME types, according to the WHATWG MIME Sniffing Standard + + + MIT + + + pkg:npm/whatwg-mimetype@2.3.0?vcs_url=jsdom/whatwg-mimetype + + + jsdom/whatwg-mimetype + as detected from PackageJson property "repository" + + + + node_modules/whatwg-mimetype + + + + John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/) + lodash.sortby + 4.7.0 + The lodash method `_.sortBy` exported as a module. + + + MIT + + + pkg:npm/lodash.sortby@4.7.0?vcs_url=lodash/lodash + + + lodash/lodash + as detected from PackageJson property "repository" + + + https://lodash.com/ + as detected from PackageJson property "homepage" + + + + node_modules/lodash.sortby + + + + Sebastian Mayr <npm@smayr.name> + tr46 + 1.0.1 + An implementation of the Unicode TR46 spec + + + MIT + + + pkg:npm/tr46@1.0.1?vcs_url=Sebmaster/tr46.js + + + Sebmaster/tr46.js + as detected from PackageJson property "repository" + + + + + Mathias Bynens + punycode + 2.1.1 + A robust Punycode converter that fully complies to RFC 3492 and RFC 5891, and works on nearly all JavaScript platforms. + + + MIT + + + pkg:npm/punycode@2.1.1?vcs_url=https://github.com/bestiejs/punycode.js.git + + + https://github.com/bestiejs/punycode.js.git + as detected from PackageJson property "repository.url" + + + https://mths.be/punycode + as detected from PackageJson property "homepage" + + + https://github.com/bestiejs/punycode.js/issues + as detected from PackageJson property "bugs" + + + + node_modules/tr46/node_modules/punycode + + + + + node_modules/tr46 + + + + Domenic Denicola <d@domenic.me> (https://domenic.me/) + webidl-conversions + 4.0.2 + Implements the WebIDL algorithms for converting to and from JavaScript values + + + BSD-2-Clause + + + pkg:npm/webidl-conversions@4.0.2?vcs_url=jsdom/webidl-conversions + + + jsdom/webidl-conversions + as detected from PackageJson property "repository" + + + + node_modules/webidl-conversions + + + + Domenic Denicola <d@domenic.me> (https://domenic.me/) + domexception + 1.0.1 + An implementation of the DOMException class from browsers + + + MIT + + + pkg:npm/domexception@1.0.1?vcs_url=jsdom/domexception + + + jsdom/domexception + as detected from PackageJson property "repository" + + + + node_modules/domexception + + + + escodegen + 1.14.3 + ECMAScript code generator + + + BSD-2-Clause + + + pkg:npm/escodegen@1.14.3?vcs_url=http://github.com/estools/escodegen.git + + + http://github.com/estools/escodegen.git + as detected from PackageJson property "repository.url" + + + http://github.com/estools/escodegen + as detected from PackageJson property "homepage" + + + + node_modules/escodegen + + + + Nick Fitzgerald <nfitzgerald@mozilla.com> + source-map + 0.6.1 + Generates and consumes source maps + + + BSD-3-Clause + + + pkg:npm/source-map@0.6.1?vcs_url=http://github.com/mozilla/source-map.git + + + http://github.com/mozilla/source-map.git + as detected from PackageJson property "repository.url" + + + https://github.com/mozilla/source-map + as detected from PackageJson property "homepage" + + + + node_modules/source-map + + + + Domenic Denicola <d@domenic.me> (https://domenic.me/) + html-encoding-sniffer + 1.0.2 + Sniff the encoding from a HTML byte stream + + + MIT + + + pkg:npm/html-encoding-sniffer@1.0.2?vcs_url=jsdom/html-encoding-sniffer + + + jsdom/html-encoding-sniffer + as detected from PackageJson property "repository" + + + + node_modules/html-encoding-sniffer + + + + Domenic Denicola <d@domenic.me> (https://domenic.me/) + whatwg-encoding + 1.0.5 + Decode strings according to the WHATWG Encoding Standard + + + MIT + + + pkg:npm/whatwg-encoding@1.0.5?vcs_url=jsdom/whatwg-encoding + + + jsdom/whatwg-encoding + as detected from PackageJson property "repository" + + + + node_modules/whatwg-encoding + + + + azer + left-pad + 1.3.0 + String left pad + + + WTFPL + + + pkg:npm/left-pad@1.3.0?vcs_url=git@github.com:stevemao/left-pad.git + + node_modules/left-pad + + + + Diego Perini + nwsapi + 2.2.2 + Fast CSS Selectors API Engine + + + MIT + + + pkg:npm/nwsapi@2.2.2?vcs_url=git://github.com/dperini/nwsapi.git + + + git://github.com/dperini/nwsapi.git + as detected from PackageJson property "repository.url" + + + http://javascript.nwbox.com/nwsapi/ + as detected from PackageJson property "homepage" + + + http://github.com/dperini/nwsapi/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/nwsapi + + + + C. Scott Ananian + pn + 1.1.0 + Promisify the node standard library. + + + MIT + + + pkg:npm/pn@1.1.0?vcs_url=git://github.com/cscott/node-pn + + + git://github.com/cscott/node-pn + as detected from PackageJson property "repository.url" + + + https://github.com/cscott/node-pn/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/pn + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + sax + 1.2.4 + An evented streaming XML parser in JavaScript + + + ISC + + + pkg:npm/sax@1.2.4?vcs_url=git://github.com/isaacs/sax-js.git + + + git://github.com/isaacs/sax-js.git + as detected from PackageJson property "repository" + + + + node_modules/sax + + + + Joris van der Wel <joris@jorisvanderwel.com> + symbol-tree + 3.2.4 + Turn any collection of objects into its own efficient tree or linked list using Symbol + + + MIT + + + pkg:npm/symbol-tree@3.2.4?vcs_url=https://github.com/jsdom/js-symbol-tree.git + + + https://github.com/jsdom/js-symbol-tree.git + as detected from PackageJson property "repository.url" + + + https://github.com/jsdom/js-symbol-tree#symbol-tree + as detected from PackageJson property "homepage" + + + https://github.com/jsdom/js-symbol-tree/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/symbol-tree + + + + Timothy Gu <timothygu99@gmail.com> + w3c-hr-time + 1.0.2 + An implementation of the W3C High Resolution Time Level 2 specification. + + + MIT + + + pkg:npm/w3c-hr-time@1.0.2?vcs_url=https://github.com/jsdom/w3c-hr-time + + + https://github.com/jsdom/w3c-hr-time + as detected from PackageJson property "repository" + + + + node_modules/w3c-hr-time + + + + kumavis + browser-process-hrtime + 1.0.0 + Shim for process.hrtime in the browser + + + BSD-2-Clause + + + pkg:npm/browser-process-hrtime@1.0.0?vcs_url=git://github.com/kumavis/browser-process-hrtime.git + + + git://github.com/kumavis/browser-process-hrtime.git + as detected from PackageJson property "repository.url" + + + + node_modules/browser-process-hrtime + + + + Sebastian Mayr <github@smayr.name> + whatwg-url + 6.5.0 + An implementation of the WHATWG URL Standard's URL API and parsing machinery + + + MIT + + + pkg:npm/whatwg-url@6.5.0?vcs_url=jsdom/whatwg-url + + + jsdom/whatwg-url + as detected from PackageJson property "repository" + + + + node_modules/whatwg-url + + + + Einar Otto Stangvik <einaros@gmail.com> (http://2x.io) + ws + 5.2.3 + Simple to use, blazing fast and thoroughly tested websocket client and server for Node.js + + + MIT + + + pkg:npm/ws@5.2.3?vcs_url=websockets/ws + + + websockets/ws + as detected from PackageJson property "repository" + + + https://github.com/websockets/ws + as detected from PackageJson property "homepage" + + + https://github.com/websockets/ws/issues + as detected from PackageJson property "bugs" + + + + node_modules/ws + + + + Samuel Reed <samuel.trace.reed@gmail.com + async-limiter + 1.0.1 + asynchronous function queue with adjustable concurrency + + + MIT + + + pkg:npm/async-limiter@1.0.1?vcs_url=https://github.com/strml/async-limiter.git + + + https://github.com/strml/async-limiter.git + as detected from PackageJson property "repository" + + + + node_modules/async-limiter + + + + Domenic Denicola <d@domenic.me> (https://domenic.me/) + xml-name-validator + 3.0.0 + Validates whether a string matches the production for an XML name or qualified name + + + Apache-2.0 + + + pkg:npm/xml-name-validator@3.0.0?vcs_url=jsdom/xml-name-validator + + + jsdom/xml-name-validator + as detected from PackageJson property "repository" + + + + node_modules/xml-name-validator + + + + jest-haste-map + 23.6.0 + + + MIT + + + pkg:npm/jest-haste-map@23.6.0?vcs_url=https://github.com/facebook/jest.git + + + https://github.com/facebook/jest.git + as detected from PackageJson property "repository.url" + + + + + Jon Schlinkert (https://github.com/jonschlinkert) + micromatch + 2.3.11 + Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch. + + + MIT + + + pkg:npm/micromatch@2.3.11?vcs_url=jonschlinkert/micromatch + + + jonschlinkert/micromatch + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/micromatch + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/micromatch/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-haste-map/node_modules/micromatch + + + + Jon Schlinkert (https://github.com/jonschlinkert) + arr-diff + 2.0.0 + Returns an array with only the unique values from the first array, by excluding all values from additional arrays using strict equality for comparisons. + + + MIT + + + pkg:npm/arr-diff@2.0.0?vcs_url=jonschlinkert/arr-diff + + + jonschlinkert/arr-diff + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/arr-diff + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/arr-diff/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-haste-map/node_modules/arr-diff + + + + Jon Schlinkert + array-unique + 0.2.1 + Return an array free of duplicate values. Fastest ES5 implementation. + pkg:npm/array-unique@0.2.1?vcs_url=git://github.com/jonschlinkert/array-unique.git + + + git://github.com/jonschlinkert/array-unique.git + as detected from PackageJson property "repository.url" + + + https://github.com/jonschlinkert/array-unique + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/array-unique/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-haste-map/node_modules/array-unique + + + + Jon Schlinkert (https://github.com/jonschlinkert) + braces + 1.8.5 + Fastest brace expansion for node.js, with the most complete support for the Bash 4.3 braces specification. + + + MIT + + + pkg:npm/braces@1.8.5?vcs_url=jonschlinkert/braces + + + jonschlinkert/braces + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/braces + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/braces/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-haste-map/node_modules/braces + + + + Jon Schlinkert (https://github.com/jonschlinkert) + expand-brackets + 0.1.5 + Expand POSIX bracket expressions (character classes) in glob patterns. + + + MIT + + + pkg:npm/expand-brackets@0.1.5?vcs_url=jonschlinkert/expand-brackets + + + jonschlinkert/expand-brackets + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/expand-brackets + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/expand-brackets/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-haste-map/node_modules/expand-brackets + + + + Jon Schlinkert + extglob + 0.3.2 + Convert extended globs to regex-compatible strings. Add (almost) the expressive power of regular expressions to glob patterns. + + + MIT + + + pkg:npm/extglob@0.3.2?vcs_url=git://github.com/jonschlinkert/extglob.git + + + git://github.com/jonschlinkert/extglob.git + as detected from PackageJson property "repository.url" + + + https://github.com/jonschlinkert/extglob + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/extglob/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-haste-map/node_modules/extglob + + + + Jon Schlinkert + is-extglob + 1.0.0 + Returns true if a string has an extglob. + + + MIT + + + pkg:npm/is-extglob@1.0.0?vcs_url=jonschlinkert/is-extglob + + + jonschlinkert/is-extglob + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-extglob + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-extglob/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-haste-map/node_modules/is-extglob + + + + Jon Schlinkert + is-glob + 2.0.1 + 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. + + + MIT + + + pkg:npm/is-glob@2.0.1?vcs_url=jonschlinkert/is-glob + + + jonschlinkert/is-glob + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-glob + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-glob/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-haste-map/node_modules/is-glob + + + + Jon Schlinkert (https://github.com/jonschlinkert) + kind-of + 3.2.2 + Get the native type of a value. + + + MIT + + + pkg:npm/kind-of@3.2.2?vcs_url=jonschlinkert/kind-of + + + jonschlinkert/kind-of + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/kind-of + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/kind-of/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-haste-map/node_modules/kind-of + + + + Jon Schlinkert (https://github.com/jonschlinkert) + normalize-path + 2.1.1 + 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. + + + MIT + + + pkg:npm/normalize-path@2.1.1?vcs_url=jonschlinkert/normalize-path + + + jonschlinkert/normalize-path + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/normalize-path + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/normalize-path/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-haste-map/node_modules/normalize-path + + + + + node_modules/jest-haste-map + + + + Wez Furlong <wez@fb.com> (http://wezfurlong.org) + fb-watchman + 2.0.2 + Bindings for the Watchman file watching service + + + Apache-2.0 + + + pkg:npm/fb-watchman@2.0.2?vcs_url=git@github.com:facebook/watchman.git + + + https://facebook.github.io/watchman/ + as detected from PackageJson property "homepage" + + + https://github.com/facebook/watchman/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/fb-watchman + + + + Wez Furlong <wez@fb.com> (http://wezfurlong.org) + bser + 2.1.1 + JavaScript implementation of the BSER Binary Serialization + + + Apache-2.0 + + + pkg:npm/bser@2.1.1?vcs_url=https://github.com/facebook/watchman + + + https://github.com/facebook/watchman + as detected from PackageJson property "repository.url" + + + https://facebook.github.io/watchman/docs/bser.html + as detected from PackageJson property "homepage" + + + https://github.com/facebook/watchman/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/bser + + + + Robert Kieffer <robert@broofa.com> + node-int64 + 0.4.0 + Support for representing 64-bit integers in JavaScript + + + MIT + + + pkg:npm/node-int64@0.4.0?vcs_url=https://github.com/broofa/node-int64 + + + https://github.com/broofa/node-int64 + as detected from PackageJson property "repository.url" + + + + node_modules/node-int64 + + + + jest-docblock + 23.2.0 + + + MIT + + + pkg:npm/jest-docblock@23.2.0?vcs_url=https://github.com/facebook/jest.git + + + https://github.com/facebook/jest.git + as detected from PackageJson property "repository.url" + + + + node_modules/jest-docblock + + + + Sindre Sorhus + detect-newline + 2.1.0 + Detect the dominant newline character of a string + + + MIT + + + pkg:npm/detect-newline@2.1.0?vcs_url=sindresorhus/detect-newline + + + sindresorhus/detect-newline + as detected from PackageJson property "repository" + + + + node_modules/detect-newline + + + + jest-serializer + 23.0.1 + + + MIT + + + pkg:npm/jest-serializer@23.0.1?vcs_url=https://github.com/facebook/jest.git + + + https://github.com/facebook/jest.git + as detected from PackageJson property "repository.url" + + + + node_modules/jest-serializer + + + + jest-worker + 23.2.0 + + + MIT + + + pkg:npm/jest-worker@23.2.0?vcs_url=https://github.com/facebook/jest.git + + + https://github.com/facebook/jest.git + as detected from PackageJson property "repository.url" + + + + node_modules/jest-worker + + + + amasad + sane + 2.5.2 + Sane aims to be fast, small, and reliable file system watcher. + + + MIT + + + pkg:npm/sane@2.5.2?vcs_url=https://github.com/amasad/sane + + + https://github.com/amasad/sane + as detected from PackageJson property "repository.url" + + + https://github.com/amasad/sane + as detected from PackageJson property "homepage" + + + https://github.com/amasad/sane/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/sane + + + + Stefan Penner <stefan.penner@gmail.com> + capture-exit + 1.2.0 + safely cleanup in signal handlers + + + ISC + + + pkg:npm/capture-exit@1.2.0?vcs_url=git+https://github.com/stefanpenner/capture-exit.git + + + git+https://github.com/stefanpenner/capture-exit.git + as detected from PackageJson property "repository.url" + + + https://github.com/stefanpenner/capture-exit#readme + as detected from PackageJson property "homepage" + + + https://github.com/stefanpenner/capture-exit/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/capture-exit + + + + Tilde, Inc. & Stefan Penner + rsvp + 3.6.2 + A lightweight library that provides tools for organizing asynchronous code + + + MIT + + + pkg:npm/rsvp@3.6.2?vcs_url=https://github.com/tildeio/rsvp.js.git + + + https://github.com/tildeio/rsvp.js.git + as detected from PackageJson property "repository.url" + + + https://github.com/tildeio/rsvp.js/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/rsvp + + + + Aleksandr Tsertkov <tsertkov@gmail.com> + exec-sh + 0.2.2 + Execute shell command forwarding all stdio. + pkg:npm/exec-sh@0.2.2?vcs_url=git@github.com:tsertkov/exec-sh.git + + + https://github.com/tsertkov/exec-sh/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/exec-sh + + + + yeikos + merge + 1.2.1 + 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. + + + MIT + + + pkg:npm/merge@1.2.1?vcs_url=https://github.com/yeikos/js.merge.git + + + https://github.com/yeikos/js.merge.git + as detected from PackageJson property "repository.url" + + + https://github.com/yeikos/js.merge + as detected from PackageJson property "homepage" + + + + node_modules/merge + + + + Naitik Shah <n@daaku.org> + walker + 1.0.8 + A simple directory tree walker. + + + Apache-2.0 + + + pkg:npm/walker@1.0.8?vcs_url=https://github.com/daaku/nodejs-walker + + + https://github.com/daaku/nodejs-walker + as detected from PackageJson property "repository.url" + + + https://github.com/daaku/nodejs-walker + as detected from PackageJson property "homepage" + + + + node_modules/walker + + + + Naitik Shah <n@daaku.org> + makeerror + 1.0.12 + A library to make errors. + + + BSD-3-Clause + + + pkg:npm/makeerror@1.0.12?vcs_url=https://github.com/daaku/nodejs-makeerror + + + https://github.com/daaku/nodejs-makeerror + as detected from PackageJson property "repository.url" + + + + node_modules/makeerror + + + + Naitik Shah <n@daaku.org> + tmpl + 1.0.5 + JavaScript micro templates. + + + BSD-3-Clause + + + pkg:npm/tmpl@1.0.5?vcs_url=https://github.com/daaku/nodejs-tmpl + + + https://github.com/daaku/nodejs-tmpl + as detected from PackageJson property "repository.url" + + + https://github.com/daaku/nodejs-tmpl + as detected from PackageJson property "homepage" + + + + node_modules/tmpl + + + + Mikeal Rogers <mikeal.rogers@gmail.com> + watch + 0.18.0 + Utilities for watching file trees. + + + Apache-2.0 + + + pkg:npm/watch@0.18.0?vcs_url=git://github.com/mikeal/watch.git + + + git://github.com/mikeal/watch.git + as detected from PackageJson property "repository.url" + + + https://github.com/mikeal/watch + as detected from PackageJson property "homepage" + + + https://github.com/mikeal/watch/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/watch + + + + James Talmage + stack-utils + 1.0.5 + Captures and cleans stack traces + + + MIT + + + pkg:npm/stack-utils@1.0.5?vcs_url=tapjs/stack-utils + + + tapjs/stack-utils + as detected from PackageJson property "repository" + + + + + Sindre Sorhus + escape-string-regexp + 2.0.0 + Escape RegExp special characters + + + MIT + + + pkg:npm/escape-string-regexp@2.0.0?vcs_url=sindresorhus/escape-string-regexp + + + sindresorhus/escape-string-regexp + as detected from PackageJson property "repository" + + + + node_modules/stack-utils/node_modules/escape-string-regexp + + + + + node_modules/stack-utils + + + + jest-resolve-dependencies + 23.6.0 + + + MIT + + + pkg:npm/jest-resolve-dependencies@23.6.0?vcs_url=https://github.com/facebook/jest.git + + + https://github.com/facebook/jest.git + as detected from PackageJson property "repository.url" + + + + node_modules/jest-resolve-dependencies + + + + jest-runner + 23.6.0 + + + MIT + + + pkg:npm/jest-runner@23.6.0?vcs_url=https://github.com/facebook/jest.git + + + https://github.com/facebook/jest.git + as detected from PackageJson property "repository.url" + + + + node_modules/jest-runner + + + + jest-leak-detector + 23.6.0 + + + MIT + + + pkg:npm/jest-leak-detector@23.6.0?vcs_url=https://github.com/facebook/jest.git + + + https://github.com/facebook/jest.git + as detected from PackageJson property "repository.url" + + + + node_modules/jest-leak-detector + + + + jest-runtime + 23.6.0 + + + MIT + + + pkg:npm/jest-runtime@23.6.0?vcs_url=https://github.com/facebook/jest.git + + + https://github.com/facebook/jest.git + as detected from PackageJson property "repository.url" + + + + + Sebastian McKenzie <sebmck@gmail.com> + babel-core + 6.26.3 + Babel compiler core. + + + MIT + + + pkg:npm/babel-core@6.26.3?vcs_url=https://github.com/babel/babel/tree/master/packages/babel-core + + + https://github.com/babel/babel/tree/master/packages/babel-core + as detected from PackageJson property "repository" + + + https://babeljs.io/ + as detected from PackageJson property "homepage" + + + + node_modules/jest-runtime/node_modules/babel-core + + + + TJ Holowaychuk <tj@vision-media.ca> + debug + 2.6.9 + small debugging utility + + + MIT + + + pkg:npm/debug@2.6.9?vcs_url=git://github.com/visionmedia/debug.git + + + git://github.com/visionmedia/debug.git + as detected from PackageJson property "repository.url" + + + + node_modules/jest-runtime/node_modules/debug + + + + ms + 2.0.0 + Tiny milisecond conversion utility + + + MIT + + + pkg:npm/ms@2.0.0?vcs_url=zeit/ms + + + zeit/ms + as detected from PackageJson property "repository" + + + + node_modules/jest-runtime/node_modules/ms + + + + Aseem Kishore <aseem.kishore@gmail.com> + json5 + 0.5.1 + JSON for the ES5 era. + + + MIT + + + pkg:npm/json5@0.5.1?vcs_url=https://github.com/aseemk/json5.git + + + https://github.com/aseemk/json5.git + as detected from PackageJson property "repository.url" + + + http://json5.org/ + as detected from PackageJson property "homepage" + + + + node_modules/jest-runtime/node_modules/json5 + + + + Sindre Sorhus + slash + 1.0.0 + Convert Windows backslash paths to slash paths + + + MIT + + + pkg:npm/slash@1.0.0?vcs_url=sindresorhus/slash + + + sindresorhus/slash + as detected from PackageJson property "repository" + + + + node_modules/jest-runtime/node_modules/slash + + + + Nick Fitzgerald <nfitzgerald@mozilla.com> + source-map + 0.5.7 + Generates and consumes source maps + + + BSD-3-Clause + + + pkg:npm/source-map@0.5.7?vcs_url=http://github.com/mozilla/source-map.git + + + http://github.com/mozilla/source-map.git + as detected from PackageJson property "repository.url" + + + https://github.com/mozilla/source-map + as detected from PackageJson property "homepage" + + + + node_modules/jest-runtime/node_modules/source-map + + + + Jon Schlinkert (https://github.com/jonschlinkert) + micromatch + 2.3.11 + Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch. + + + MIT + + + pkg:npm/micromatch@2.3.11?vcs_url=jonschlinkert/micromatch + + + jonschlinkert/micromatch + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/micromatch + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/micromatch/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-runtime/node_modules/micromatch + + + + Jon Schlinkert (https://github.com/jonschlinkert) + arr-diff + 2.0.0 + Returns an array with only the unique values from the first array, by excluding all values from additional arrays using strict equality for comparisons. + + + MIT + + + pkg:npm/arr-diff@2.0.0?vcs_url=jonschlinkert/arr-diff + + + jonschlinkert/arr-diff + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/arr-diff + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/arr-diff/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-runtime/node_modules/arr-diff + + + + Jon Schlinkert + array-unique + 0.2.1 + Return an array free of duplicate values. Fastest ES5 implementation. + pkg:npm/array-unique@0.2.1?vcs_url=git://github.com/jonschlinkert/array-unique.git + + + git://github.com/jonschlinkert/array-unique.git + as detected from PackageJson property "repository.url" + + + https://github.com/jonschlinkert/array-unique + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/array-unique/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-runtime/node_modules/array-unique + + + + Jon Schlinkert (https://github.com/jonschlinkert) + braces + 1.8.5 + Fastest brace expansion for node.js, with the most complete support for the Bash 4.3 braces specification. + + + MIT + + + pkg:npm/braces@1.8.5?vcs_url=jonschlinkert/braces + + + jonschlinkert/braces + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/braces + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/braces/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-runtime/node_modules/braces + + + + Jon Schlinkert (https://github.com/jonschlinkert) + expand-brackets + 0.1.5 + Expand POSIX bracket expressions (character classes) in glob patterns. + + + MIT + + + pkg:npm/expand-brackets@0.1.5?vcs_url=jonschlinkert/expand-brackets + + + jonschlinkert/expand-brackets + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/expand-brackets + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/expand-brackets/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-runtime/node_modules/expand-brackets + + + + Jon Schlinkert + extglob + 0.3.2 + Convert extended globs to regex-compatible strings. Add (almost) the expressive power of regular expressions to glob patterns. + + + MIT + + + pkg:npm/extglob@0.3.2?vcs_url=git://github.com/jonschlinkert/extglob.git + + + git://github.com/jonschlinkert/extglob.git + as detected from PackageJson property "repository.url" + + + https://github.com/jonschlinkert/extglob + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/extglob/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-runtime/node_modules/extglob + + + + Jon Schlinkert + is-extglob + 1.0.0 + Returns true if a string has an extglob. + + + MIT + + + pkg:npm/is-extglob@1.0.0?vcs_url=jonschlinkert/is-extglob + + + jonschlinkert/is-extglob + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-extglob + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-extglob/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-runtime/node_modules/is-extglob + + + + Jon Schlinkert + is-glob + 2.0.1 + 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. + + + MIT + + + pkg:npm/is-glob@2.0.1?vcs_url=jonschlinkert/is-glob + + + jonschlinkert/is-glob + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-glob + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-glob/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-runtime/node_modules/is-glob + + + + Jon Schlinkert (https://github.com/jonschlinkert) + kind-of + 3.2.2 + Get the native type of a value. + + + MIT + + + pkg:npm/kind-of@3.2.2?vcs_url=jonschlinkert/kind-of + + + jonschlinkert/kind-of + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/kind-of + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/kind-of/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-runtime/node_modules/kind-of + + + + Jon Schlinkert (https://github.com/jonschlinkert) + normalize-path + 2.1.1 + 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. + + + MIT + + + pkg:npm/normalize-path@2.1.1?vcs_url=jonschlinkert/normalize-path + + + jonschlinkert/normalize-path + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/normalize-path + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/normalize-path/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-runtime/node_modules/normalize-path + + + + Sindre Sorhus + strip-bom + 3.0.0 + Strip UTF-8 byte order mark (BOM) from a string + + + MIT + + + pkg:npm/strip-bom@3.0.0?vcs_url=sindresorhus/strip-bom + + + sindresorhus/strip-bom + as detected from PackageJson property "repository" + + + + node_modules/jest-runtime/node_modules/strip-bom + + + + yargs + 11.1.1 + yargs the modern, pirate-themed, successor to optimist. + + + MIT + + + pkg:npm/yargs@11.1.1?vcs_url=http://github.com/yargs/yargs.git + + + http://github.com/yargs/yargs.git + as detected from PackageJson property "repository.url" + + + http://yargs.js.org/ + as detected from PackageJson property "homepage" + + + + node_modules/jest-runtime/node_modules/yargs + + + + Ben Coe <ben@npmjs.com> + cliui + 4.1.0 + easily create complex multi-column command-line-interfaces + + + ISC + + + pkg:npm/cliui@4.1.0?vcs_url=http://github.com/yargs/cliui.git + + + http://github.com/yargs/cliui.git + as detected from PackageJson property "repository.url" + + + + node_modules/jest-runtime/node_modules/cliui + + + + Sindre Sorhus + string-width + 2.1.1 + Get the visual width of a string - the number of columns required to display it + + + MIT + + + pkg:npm/string-width@2.1.1?vcs_url=sindresorhus/string-width + + + sindresorhus/string-width + as detected from PackageJson property "repository" + + + + node_modules/jest-runtime/node_modules/string-width + + + + Sindre Sorhus + strip-ansi + 4.0.0 + Strip ANSI escape codes + + + MIT + + + pkg:npm/strip-ansi@4.0.0?vcs_url=chalk/strip-ansi + + + chalk/strip-ansi + as detected from PackageJson property "repository" + + + + node_modules/jest-runtime/node_modules/strip-ansi + + + + Sindre Sorhus + wrap-ansi + 2.1.0 + Wordwrap a string with ANSI escape codes + + + MIT + + + pkg:npm/wrap-ansi@2.1.0?vcs_url=chalk/wrap-ansi + + + chalk/wrap-ansi + as detected from PackageJson property "repository" + + + + + Sindre Sorhus + string-width + 1.0.2 + Get the visual width of a string - the number of columns required to display it + + + MIT + + + pkg:npm/string-width@1.0.2?vcs_url=sindresorhus/string-width + + + sindresorhus/string-width + as detected from PackageJson property "repository" + + + + node_modules/jest-runtime/node_modules/wrap-ansi/node_modules/string-width + + + + Sindre Sorhus + is-fullwidth-code-point + 1.0.0 + Check if the character represented by a given Unicode code point is fullwidth + + + MIT + + + pkg:npm/is-fullwidth-code-point@1.0.0?vcs_url=sindresorhus/is-fullwidth-code-point + + + sindresorhus/is-fullwidth-code-point + as detected from PackageJson property "repository" + + + + node_modules/jest-runtime/node_modules/wrap-ansi/node_modules/is-fullwidth-code-point + + + + Sindre Sorhus + strip-ansi + 3.0.1 + Strip ANSI escape codes + + + MIT + + + pkg:npm/strip-ansi@3.0.1?vcs_url=chalk/strip-ansi + + + chalk/strip-ansi + as detected from PackageJson property "repository" + + + + node_modules/jest-runtime/node_modules/wrap-ansi/node_modules/strip-ansi + + + + Sindre Sorhus + ansi-regex + 2.1.1 + Regular expression for matching ANSI escape codes + + + MIT + + + pkg:npm/ansi-regex@2.1.1?vcs_url=chalk/ansi-regex + + + chalk/ansi-regex + as detected from PackageJson property "repository" + + + + node_modules/jest-runtime/node_modules/wrap-ansi/node_modules/ansi-regex + + + + + node_modules/jest-runtime/node_modules/wrap-ansi + + + + Stefan Penner + get-caller-file + 1.0.3 + + + ISC + + + pkg:npm/get-caller-file@1.0.3?vcs_url=git+https://github.com/stefanpenner/get-caller-file.git + + + git+https://github.com/stefanpenner/get-caller-file.git + as detected from PackageJson property "repository.url" + + + https://github.com/stefanpenner/get-caller-file#readme + as detected from PackageJson property "homepage" + + + https://github.com/stefanpenner/get-caller-file/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-runtime/node_modules/get-caller-file + + + + Sindre Sorhus + is-fullwidth-code-point + 2.0.0 + Check if the character represented by a given Unicode code point is fullwidth + + + MIT + + + pkg:npm/is-fullwidth-code-point@2.0.0?vcs_url=sindresorhus/is-fullwidth-code-point + + + sindresorhus/is-fullwidth-code-point + as detected from PackageJson property "repository" + + + + node_modules/jest-runtime/node_modules/is-fullwidth-code-point + + + + Ben Coe <ben@npmjs.com> + y18n + 3.2.2 + the bare-bones internationalization library used by yargs + + + ISC + + + pkg:npm/y18n@3.2.2?vcs_url=git@github.com:yargs/y18n.git + + + https://github.com/yargs/y18n + as detected from PackageJson property "homepage" + + + https://github.com/yargs/y18n/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-runtime/node_modules/y18n + + + + Ben Coe <ben@npmjs.com> + yargs-parser + 9.0.2 + the mighty option parser used by yargs + + + ISC + + + pkg:npm/yargs-parser@9.0.2?vcs_url=git@github.com:yargs/yargs-parser.git + + node_modules/jest-runtime/node_modules/yargs-parser + + + + Sindre Sorhus + camelcase + 4.1.0 + Convert a dash/dot/underscore/space separated string to camelCase: foo-bar -> fooBar + + + MIT + + + pkg:npm/camelcase@4.1.0?vcs_url=sindresorhus/camelcase + + + sindresorhus/camelcase + as detected from PackageJson property "repository" + + + + node_modules/jest-runtime/node_modules/camelcase + + + + + node_modules/jest-runtime + + + + source-map-support + 0.5.21 + Fixes stack traces for files with source maps + + + MIT + + + pkg:npm/source-map-support@0.5.21?vcs_url=https://github.com/evanw/node-source-map-support + + + https://github.com/evanw/node-source-map-support + as detected from PackageJson property "repository.url" + + + https://github.com/evanw/node-source-map-support/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/source-map-support + + + + Thai Pangsakulyanont @dtinth + babel-plugin-istanbul + 4.1.6 + A babel plugin that adds istanbul instrumentation to ES6 code + + + BSD-3-Clause + + + pkg:npm/babel-plugin-istanbul@4.1.6?vcs_url=git+https://github.com/istanbuljs/babel-plugin-istanbul.git + + + git+https://github.com/istanbuljs/babel-plugin-istanbul.git + as detected from PackageJson property "repository.url" + + + https://github.com/istanbuljs/babel-plugin-istanbul#readme + as detected from PackageJson property "homepage" + + + https://github.com/istanbuljs/babel-plugin-istanbul/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/babel-plugin-istanbul + + + + Rebecca Turner <me@re-becca.org> (http://re-becca.org) + write-file-atomic + 2.4.3 + Write files in an atomic fashion w/configurable ownership + + + ISC + + + pkg:npm/write-file-atomic@2.4.3?vcs_url=git@github.com:iarna/write-file-atomic.git + + + https://github.com/iarna/write-file-atomic + as detected from PackageJson property "homepage" + + + https://github.com/iarna/write-file-atomic/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/write-file-atomic + + + + Sindre Sorhus + code-point-at + 1.1.0 + ES2015 `String#codePointAt()` ponyfill + + + MIT + + + pkg:npm/code-point-at@1.1.0?vcs_url=sindresorhus/code-point-at + + + sindresorhus/code-point-at + as detected from PackageJson property "repository" + + + + node_modules/code-point-at + + + + Sindre Sorhus + number-is-nan + 1.0.1 + ES2015 Number.isNaN() ponyfill + + + MIT + + + pkg:npm/number-is-nan@1.0.1?vcs_url=sindresorhus/number-is-nan + + + sindresorhus/number-is-nan + as detected from PackageJson property "repository" + + + + node_modules/number-is-nan + + + + Sindre Sorhus + decamelize + 1.2.0 + Convert a camelized string into a lowercased one with a custom separator: unicornRainbow -> unicorn_rainbow + + + MIT + + + pkg:npm/decamelize@1.2.0?vcs_url=sindresorhus/decamelize + + + sindresorhus/decamelize + as detected from PackageJson property "repository" + + + + node_modules/decamelize + + + + Sindre Sorhus + os-locale + 3.1.0 + Get the system locale + + + MIT + + + pkg:npm/os-locale@3.1.0?vcs_url=sindresorhus/os-locale + + + sindresorhus/os-locale + as detected from PackageJson property "repository" + + + + node_modules/os-locale + + + + Troy Goode <troygoode@gmail.com> (http://github.com/troygoode/) + require-directory + 2.1.1 + Recursively iterates over specified directory, require()'ing each file, and returning a nested hash structure containing those modules. + + + MIT + + + pkg:npm/require-directory@2.1.1?vcs_url=git://github.com/troygoode/node-require-directory.git + + + git://github.com/troygoode/node-require-directory.git + as detected from PackageJson property "repository.url" + + + https://github.com/troygoode/node-require-directory/ + as detected from PackageJson property "homepage" + + + http://github.com/troygoode/node-require-directory/issues/ + as detected from PackageJson property "bugs.url" + + + + node_modules/require-directory + + + + Ben Coe <ben@npmjs.com> + require-main-filename + 1.0.1 + shim for require.main.filename() that works in as many environments as possible + + + ISC + + + pkg:npm/require-main-filename@1.0.1?vcs_url=git+ssh://git@github.com/yargs/require-main-filename.git + + + git+ssh://git@github.com/yargs/require-main-filename.git + as detected from PackageJson property "repository.url" + + + https://github.com/yargs/require-main-filename#readme + as detected from PackageJson property "homepage" + + + https://github.com/yargs/require-main-filename/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/require-main-filename + + + + Ben Coe <ben@npmjs.com> + set-blocking + 2.0.0 + set blocking stdio and stderr ensuring that terminal output does not truncate + + + ISC + + + pkg:npm/set-blocking@2.0.0?vcs_url=git+https://github.com/yargs/set-blocking.git + + + git+https://github.com/yargs/set-blocking.git + as detected from PackageJson property "repository.url" + + + https://github.com/yargs/set-blocking#readme + as detected from PackageJson property "homepage" + + + https://github.com/yargs/set-blocking/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/set-blocking + + + + nexdrew + which-module + 2.0.0 + Find the module object for something that was require()d + + + ISC + + + pkg:npm/which-module@2.0.0?vcs_url=git+https://github.com/nexdrew/which-module.git + + + git+https://github.com/nexdrew/which-module.git + as detected from PackageJson property "repository.url" + + + https://github.com/nexdrew/which-module#readme + as detected from PackageJson property "homepage" + + + https://github.com/nexdrew/which-module/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/which-module + + + + diff + 3.5.0 + A javascript text diff implementation. + + + BSD-3-Clause + + + pkg:npm/diff@3.5.0?vcs_url=git://github.com/kpdecker/jsdiff.git + + + git://github.com/kpdecker/jsdiff.git + as detected from PackageJson property "repository.url" + + + http://github.com/kpdecker/jsdiff/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/diff + + + + Sindre Sorhus + callsites + 2.0.0 + Get callsites from the V8 stack trace API + + + MIT + + + pkg:npm/callsites@2.0.0?vcs_url=sindresorhus/callsites + + + sindresorhus/callsites + as detected from PackageJson property "repository" + + + + node_modules/callsites + + + + Sindre Sorhus + leven + 2.1.0 + Measure the difference between two strings using the fastest JS implementation of the Levenshtein distance algorithm + + + MIT + + + pkg:npm/leven@2.1.0?vcs_url=sindresorhus/leven + + + sindresorhus/leven + as detected from PackageJson property "repository" + + + + node_modules/leven + + + + Stephen Sugden <me@stephensugden.com> + merge-stream + 1.0.1 + Create a stream that emits events from multiple other streams + + + MIT + + + pkg:npm/merge-stream@1.0.1?vcs_url=grncdr/merge-stream + + + grncdr/merge-stream + as detected from PackageJson property "repository" + + + + node_modules/merge-stream + + + + Jon Schlinkert (https://github.com/jonschlinkert) + randomatic + 3.1.1 + Generate randomized strings of a specified length using simple character sequences. The original generate-password. + + + MIT + + + pkg:npm/randomatic@3.1.1?vcs_url=jonschlinkert/randomatic + + + jonschlinkert/randomatic + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/randomatic + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/randomatic/issues + as detected from PackageJson property "bugs.url" + + + + + Jon Schlinkert (https://github.com/jonschlinkert) + is-number + 4.0.0 + Returns true if the value is a number. comprehensive tests. + + + MIT + + + pkg:npm/is-number@4.0.0?vcs_url=jonschlinkert/is-number + + + jonschlinkert/is-number + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-number + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-number/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/randomatic/node_modules/is-number + + + + + node_modules/randomatic + + + + Michael Rhodes + math-random + 1.0.4 + + + MIT + + + pkg:npm/math-random@1.0.4?vcs_url=github:michaelrhodes/math-random + + + github:michaelrhodes/math-random + as detected from PackageJson property "repository" + + + + node_modules/math-random + + + + Jon Schlinkert (https://github.com/jonschlinkert) + for-own + 0.1.5 + 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. + + + MIT + + + pkg:npm/for-own@0.1.5?vcs_url=jonschlinkert/for-own + + + jonschlinkert/for-own + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/for-own + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/for-own/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/for-own + + + + Jon Schlinkert + glob-projx + 0.3.0 + Returns an object with the (non-glob) projx path and the actual pattern. + pkg:npm/glob-projx@0.3.0?vcs_url=git://github.com/jonschlinkert/glob-projx.git + + + git://github.com/jonschlinkert/glob-projx.git + as detected from PackageJson property "repository.url" + + + https://github.com/jonschlinkert/glob-projx + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/glob-projx/issues + as detected from PackageJson property "bugs.url" + + + + + Elan Shanker + glob-parent + 2.0.0 + Strips glob magic from a string to provide the parent path + + + ISC + + + pkg:npm/glob-parent@2.0.0?vcs_url=https://github.com/es128/glob-parent + + + https://github.com/es128/glob-parent + as detected from PackageJson property "repository.url" + + + https://github.com/es128/glob-parent + as detected from PackageJson property "homepage" + + + https://github.com/es128/glob-parent/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/glob-projx/node_modules/glob-parent + + + + Jon Schlinkert + is-glob + 2.0.1 + 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. + + + MIT + + + pkg:npm/is-glob@2.0.1?vcs_url=jonschlinkert/is-glob + + + jonschlinkert/is-glob + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-glob + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-glob/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/glob-projx/node_modules/is-glob + + + + Jon Schlinkert + is-extglob + 1.0.0 + Returns true if a string has an extglob. + + + MIT + + + pkg:npm/is-extglob@1.0.0?vcs_url=jonschlinkert/is-extglob + + + jonschlinkert/is-extglob + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-extglob + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-extglob/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/glob-projx/node_modules/is-extglob + + + + + node_modules/glob-projx + + + + Jon Schlinkert (https://github.com/jonschlinkert) + is-dotfile + 1.0.3 + Return true if a file path is (or has) a dotfile. Returns false if the path is a dot directory. + + + MIT + + + pkg:npm/is-dotfile@1.0.3?vcs_url=jonschlinkert/is-dotfile + + + jonschlinkert/is-dotfile + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-dotfile + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-dotfile/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/is-dotfile + + + + Jon Schlinkert + is-equal-shallow + 0.1.3 + Does a shallow comparison of two objects, returning false if the keys or values differ. + + + MIT + + + pkg:npm/is-equal-shallow@0.1.3?vcs_url=git://github.com/jonschlinkert/is-equal-shallow.git + + + git://github.com/jonschlinkert/is-equal-shallow.git + as detected from PackageJson property "repository.url" + + + https://github.com/jonschlinkert/is-equal-shallow + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-equal-shallow/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/is-equal-shallow + + + + Jon Schlinkert + is-primitive + 2.0.0 + Returns `true` if the value is a primitive. + pkg:npm/is-primitive@2.0.0?vcs_url=git://github.com/jonschlinkert/is-primitive.git + + + git://github.com/jonschlinkert/is-primitive.git + as detected from PackageJson property "repository.url" + + + https://github.com/jonschlinkert/is-primitive + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-primitive/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/is-primitive + + + + Mikael Brevik + node-notifier + 5.4.5 + A Node.js module for sending notifications on native Mac, Windows (post and pre 8) and Linux (or Growl as fallback) + + + MIT + + + pkg:npm/node-notifier@5.4.5?vcs_url=git+ssh://git@github.com/mikaelbr/node-notifier.git + + + git+ssh://git@github.com/mikaelbr/node-notifier.git + as detected from PackageJson property "repository.url" + + + https://github.com/mikaelbr/node-notifier#readme + as detected from PackageJson property "homepage" + + + https://github.com/mikaelbr/node-notifier/issues + as detected from PackageJson property "bugs.url" + + + + + Sindre Sorhus + is-wsl + 1.1.0 + Check if the process is running inside Windows Subsystem for Linux (Bash on Windows) + + + MIT + + + pkg:npm/is-wsl@1.1.0?vcs_url=sindresorhus/is-wsl + + + sindresorhus/is-wsl + as detected from PackageJson property "repository" + + + + node_modules/node-notifier/node_modules/is-wsl + + + + semver + 5.7.1 + The semantic version parser used by npm. + + + ISC + + + pkg:npm/semver@5.7.1?vcs_url=https://github.com/npm/node-semver + + + https://github.com/npm/node-semver + as detected from PackageJson property "repository" + + + + node_modules/node-notifier/node_modules/semver + + + + + node_modules/node-notifier + + + + Ibrahim Al-Rajhi <abrahamalrajhi@gmail.com> (http://ibrahimalrajhi.com/) + growly + 1.3.0 + Simple zero-dependency Growl notifications using GNTP. + + + MIT + + + pkg:npm/growly@1.3.0?vcs_url=http://github.com/theabraham/growly + + + http://github.com/theabraham/growly + as detected from PackageJson property "repository" + + + http://github.com/theabraham/growly/issues + as detected from PackageJson property "bugs" + + + + node_modules/growly + + + + Jimmy Cuadra <jimmy@jimmycuadra.com> (http://jimmycuadra.com/) + shellwords + 0.1.1 + Manipulate strings according to the word parsing rules of the UNIX Bourne shell. + + + MIT + + + pkg:npm/shellwords@0.1.1?vcs_url=git://github.com/jimmycuadra/shellwords.git + + + git://github.com/jimmycuadra/shellwords.git + as detected from PackageJson property "repository.url" + + + https://github.com/jimmycuadra/shellwords + as detected from PackageJson property "homepage" + + + + node_modules/shellwords + + + + Terkel Gjervig + prompts + 0.1.14 + Lightweight, beautiful and user-friendly prompts + pkg:npm/prompts@0.1.14?vcs_url=terkelg/prompts + + + terkelg/prompts + as detected from PackageJson property "repository" + + + https://github.com/terkelg/prompts + as detected from PackageJson property "homepage" + + + + node_modules/prompts + + + + Luke Edwards + kleur + 2.0.2 + The fastest Node.js library for formatting terminal text with ANSI colors~! + + + MIT + + + pkg:npm/kleur@2.0.2?vcs_url=lukeed/kleur + + + lukeed/kleur + as detected from PackageJson property "repository" + + + + node_modules/kleur + + + + Terkel Gjervig + sisteransi + 0.1.1 + ANSI escape codes for some terminal swag + + + MIT + + + pkg:npm/sisteransi@0.1.1?vcs_url=https://github.com/terkelg/sisteransi + + + https://github.com/terkelg/sisteransi + as detected from PackageJson property "repository.url" + + + https://github.com/terkelg/sisteransi + as detected from PackageJson property "homepage" + + + + node_modules/sisteransi + + + + Jordan Harband <ljharb@gmail.com> + util.promisify + 1.0.0 + Polyfill/shim for util.promisify in node versions < v8 + + + MIT + + + pkg:npm/util.promisify@1.0.0?vcs_url=git+https://github.com/ljharb/util.promisify.git + + + git+https://github.com/ljharb/util.promisify.git + as detected from PackageJson property "repository.url" + + + https://github.com/ljharb/util.promisify#readme + as detected from PackageJson property "homepage" + + + https://github.com/ljharb/util.promisify/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/util.promisify + + + + Sindre Sorhus + lcid + 2.0.0 + Mapping between standard locale identifiers and Windows locale identifiers (LCID) + + + MIT + + + pkg:npm/lcid@2.0.0?vcs_url=sindresorhus/lcid + + + sindresorhus/lcid + as detected from PackageJson property "repository" + + + + node_modules/lcid + + + + Sindre Sorhus + invert-kv + 2.0.0 + Invert the key/value of an object. Example: `{foo: 'bar'}` -> `{bar: 'foo'}` + + + MIT + + + pkg:npm/invert-kv@2.0.0?vcs_url=sindresorhus/invert-kv + + + sindresorhus/invert-kv + as detected from PackageJson property "repository" + + + + node_modules/invert-kv + + + + Sindre Sorhus + mem + 4.3.0 + Memoize functions - An optimization used to speed up consecutive function calls by caching the result of calls with identical input + + + MIT + + + pkg:npm/mem@4.3.0?vcs_url=sindresorhus/mem + + + sindresorhus/mem + as detected from PackageJson property "repository" + + + + + Sindre Sorhus + mimic-fn + 2.1.0 + Make a function mimic another one + + + MIT + + + pkg:npm/mimic-fn@2.1.0?vcs_url=sindresorhus/mimic-fn + + + sindresorhus/mimic-fn + as detected from PackageJson property "repository" + + + + node_modules/mem/node_modules/mimic-fn + + + + + node_modules/mem + + + + Sam Verschueren + map-age-cleaner + 0.1.3 + Automatically cleanup expired items in a Map + + + MIT + + + pkg:npm/map-age-cleaner@0.1.3?vcs_url=SamVerschueren/map-age-cleaner + + + SamVerschueren/map-age-cleaner + as detected from PackageJson property "repository" + + + + node_modules/map-age-cleaner + + + + Sindre Sorhus + p-defer + 1.0.0 + Create a deferred promise + + + MIT + + + pkg:npm/p-defer@1.0.0?vcs_url=sindresorhus/p-defer + + + sindresorhus/p-defer + as detected from PackageJson property "repository" + + + + node_modules/p-defer + + + + Sindre Sorhus + p-is-promise + 2.1.0 + Check if something is a promise + + + MIT + + + pkg:npm/p-is-promise@2.1.0?vcs_url=sindresorhus/p-is-promise + + + sindresorhus/p-is-promise + as detected from PackageJson property "repository" + + + + node_modules/p-is-promise + + + + Edd Yerburgh + vue-jest + 3.0.7 + Jest Vue transform + + + MIT + + + pkg:npm/vue-jest@3.0.7?vcs_url=git+https://github.com/vuejs/vue-jest.git + + + git+https://github.com/vuejs/vue-jest.git + as detected from PackageJson property "repository.url" + + + + + Nick Fitzgerald <nfitzgerald@mozilla.com> + source-map + 0.5.7 + Generates and consumes source maps + + + BSD-3-Clause + + + pkg:npm/source-map@0.5.7?vcs_url=http://github.com/mozilla/source-map.git + + + http://github.com/mozilla/source-map.git + as detected from PackageJson property "repository.url" + + + https://github.com/mozilla/source-map + as detected from PackageJson property "homepage" + + + + node_modules/vue-jest/node_modules/source-map + + + + + node_modules/vue-jest + + + + Logan Smyth <loganfsmyth@gmail.com> + babel-core + 7.0.0-bridge.0 + A placeholder package that bridges babel-core to @babel/core. + + + MIT + + + pkg:npm/babel-core@7.0.0-bridge.0 + + node_modules/babel-core + + + + Vladimir Kurchatkin <vladimir.kurchatkin@gmail.com> + deasync + 0.1.28 + Turns async function into sync via JavaScript wrapper of Node event loop + + + MIT + + + pkg:npm/deasync@0.1.28?vcs_url=https://github.com/abbr/deasync.git + + + https://github.com/abbr/deasync.git + as detected from PackageJson property "repository.url" + + + https://github.com/abbr/deasync + as detected from PackageJson property "homepage" + + + + node_modules/deasync + + + + Nathan Rajlich <nathan@tootallnate.net> (http://tootallnate.net) + bindings + 1.5.0 + Helper module for loading your native module's .node file + + + MIT + + + pkg:npm/bindings@1.5.0?vcs_url=git://github.com/TooTallNate/node-bindings.git + + + git://github.com/TooTallNate/node-bindings.git + as detected from PackageJson property "repository.url" + + + https://github.com/TooTallNate/node-bindings + as detected from PackageJson property "homepage" + + + https://github.com/TooTallNate/node-bindings/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/bindings + + + + Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/) + file-uri-to-path + 1.0.0 + Convert a file: URI to a file path + + + MIT + + + pkg:npm/file-uri-to-path@1.0.0?vcs_url=git://github.com/TooTallNate/file-uri-to-path.git + + + git://github.com/TooTallNate/file-uri-to-path.git + as detected from PackageJson property "repository.url" + + + https://github.com/TooTallNate/file-uri-to-path + as detected from PackageJson property "homepage" + + + https://github.com/TooTallNate/file-uri-to-path/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/file-uri-to-path + + + + node-addon-api + 1.7.2 + Node.js API (N-API) + + + MIT + + + pkg:npm/node-addon-api@1.7.2?vcs_url=git://github.com/nodejs/node-addon-api.git + + + git://github.com/nodejs/node-addon-api.git + as detected from PackageJson property "repository.url" + + + https://github.com/nodejs/node-addon-api + as detected from PackageJson property "homepage" + + + https://github.com/nodejs/node-addon-api/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/node-addon-api + + + + Ruben Norte <rubennorte@gmail.com> + extract-from-css + 0.4.4 + Extract information from CSS code + + + MIT + + + pkg:npm/extract-from-css@0.4.4?vcs_url=https://github.com/rubennorte/extract-from-css.git + + + https://github.com/rubennorte/extract-from-css.git + as detected from PackageJson property "repository.url" + + + https://github.com/rubennorte/extract-from-css/issues + as detected from PackageJson property "bugs" + + + + node_modules/extract-from-css + + + + TJ Holowaychuk <tj@vision-media.ca> + css + 2.2.4 + CSS parser / stringifier + + + MIT + + + pkg:npm/css@2.2.4?vcs_url=https://github.com/reworkcss/css.git + + + https://github.com/reworkcss/css.git + as detected from PackageJson property "repository.url" + + + + node_modules/css + + + + Sindre Sorhus + path-exists + 3.0.0 + Check if a path exists + + + MIT + + + pkg:npm/path-exists@3.0.0?vcs_url=sindresorhus/path-exists + + + sindresorhus/path-exists + as detected from PackageJson property "repository" + + + + node_modules/path-exists + + + + Dominic Tarr <dominic.tarr@gmail.com> (http://dominictarr.com) + config-chain + 1.1.13 + HANDLE CONFIGURATION ONCE AND FOR ALL + pkg:npm/config-chain@1.1.13?vcs_url=https://github.com/dominictarr/config-chain.git + + + https://github.com/dominictarr/config-chain.git + as detected from PackageJson property "repository.url" + + + http://github.com/dominictarr/config-chain + as detected from PackageJson property "homepage" + + + + node_modules/config-chain + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + ini + 1.3.8 + An ini encoder/decoder for node + + + ISC + + + pkg:npm/ini@1.3.8?vcs_url=git://github.com/isaacs/ini.git + + + git://github.com/isaacs/ini.git + as detected from PackageJson property "repository.url" + + + + node_modules/ini + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + proto-list + 1.2.4 + A utility for managing a prototype chain + + + ISC + + + pkg:npm/proto-list@1.2.4?vcs_url=https://github.com/isaacs/proto-list + + + https://github.com/isaacs/proto-list + as detected from PackageJson property "repository.url" + + + + node_modules/proto-list + + + + EditorConfig Team + editorconfig + 0.15.3 + EditorConfig File Locator and Interpreter for Node.js + + + MIT + + + pkg:npm/editorconfig@0.15.3?vcs_url=git://github.com/editorconfig/editorconfig-core-js.git + + + git://github.com/editorconfig/editorconfig-core-js.git + as detected from PackageJson property "repository.url" + + + https://github.com/editorconfig/editorconfig-core-js/issues + as detected from PackageJson property "bugs" + + + + + TJ Holowaychuk <tj@vision-media.ca> + commander + 2.20.3 + the complete solution for node.js command-line programs + + + MIT + + + pkg:npm/commander@2.20.3?vcs_url=https://github.com/tj/commander.js.git + + + https://github.com/tj/commander.js.git + as detected from PackageJson property "repository.url" + + + + node_modules/editorconfig/node_modules/commander + + + + Isaac Z. Schlueter <i@izs.me> + lru-cache + 4.1.5 + A cache object that deletes the least-recently-used items. + + + ISC + + + pkg:npm/lru-cache@4.1.5?vcs_url=git://github.com/isaacs/node-lru-cache.git + + + git://github.com/isaacs/node-lru-cache.git + as detected from PackageJson property "repository" + + + + node_modules/editorconfig/node_modules/lru-cache + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + yallist + 2.1.2 + Yet Another Linked List + + + ISC + + + pkg:npm/yallist@2.1.2?vcs_url=git+https://github.com/isaacs/yallist.git + + + git+https://github.com/isaacs/yallist.git + as detected from PackageJson property "repository.url" + + + + node_modules/editorconfig/node_modules/yallist + + + + semver + 5.7.1 + The semantic version parser used by npm. + + + ISC + + + pkg:npm/semver@5.7.1?vcs_url=https://github.com/npm/node-semver + + + https://github.com/npm/node-semver + as detected from PackageJson property "repository" + + + + node_modules/editorconfig/node_modules/semver + + + + + node_modules/editorconfig + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + sigmund + 1.0.1 + Quick and dirty signatures for Objects. + + + ISC + + + pkg:npm/sigmund@1.0.1?vcs_url=git://github.com/isaacs/sigmund + + + git://github.com/isaacs/sigmund + as detected from PackageJson property "repository.url" + + + + node_modules/sigmund + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + fs.realpath + 1.0.0 + Use node's fs.realpath, but fall back to the JS implementation if the native one fails + + + ISC + + + pkg:npm/fs.realpath@1.0.0?vcs_url=git+https://github.com/isaacs/fs.realpath.git + + + git+https://github.com/isaacs/fs.realpath.git + as detected from PackageJson property "repository.url" + + + + node_modules/fs.realpath + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + inflight + 1.0.6 + Add callbacks to requests in flight to avoid async duplication + + + ISC + + + pkg:npm/inflight@1.0.6?vcs_url=https://github.com/npm/inflight.git + + + https://github.com/npm/inflight.git + as detected from PackageJson property "repository.url" + + + https://github.com/isaacs/inflight + as detected from PackageJson property "homepage" + + + https://github.com/isaacs/inflight/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/inflight + + + + Julian Gruber + balanced-match + 1.0.2 + Match balanced character pairs, like "{" and "}" + + + MIT + + + pkg:npm/balanced-match@1.0.2?vcs_url=git://github.com/juliangruber/balanced-match.git + + + git://github.com/juliangruber/balanced-match.git + as detected from PackageJson property "repository.url" + + + https://github.com/juliangruber/balanced-match + as detected from PackageJson property "homepage" + + + + node_modules/balanced-match + + + + Isaac Z. Schlueter <i@izs.me> + abbrev + 1.1.1 + Like ruby's abbrev module, but in js + + + ISC + + + pkg:npm/abbrev@1.1.1?vcs_url=http://github.com/isaacs/abbrev-js + + + http://github.com/isaacs/abbrev-js + as detected from PackageJson property "repository" + + + + node_modules/abbrev + + + + mpneuried <mp@tcs.de> + node-cache + 4.2.1 + Simple and fast NodeJS internal caching. Node internal in memory cache like memcached. + + + MIT + + + pkg:npm/node-cache@4.2.1?vcs_url=git://github.com/mpneuried/nodecache.git + + + git://github.com/mpneuried/nodecache.git + as detected from PackageJson property "repository.url" + + + https://github.com/mpneuried/nodecache + as detected from PackageJson property "homepage" + + + + node_modules/node-cache + + + + Paul Vorbach <paul@vorba.ch> (http://paul.vorba.ch/) + clone + 2.1.2 + deep cloning of objects and arrays + + + MIT + + + pkg:npm/clone@2.1.2?vcs_url=git://github.com/pvorb/node-clone.git + + + git://github.com/pvorb/node-clone.git + as detected from PackageJson property "repository.url" + + + https://github.com/pvorb/node-clone/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/clone + + + + Blake Embrey + tsconfig + 7.0.0 + Resole and parse `tsconfig.json`, replicating to TypeScript's behaviour + + + MIT + + + pkg:npm/tsconfig@7.0.0?vcs_url=https://github.com/TypeStrong/tsconfig.git + + + https://github.com/TypeStrong/tsconfig.git + as detected from PackageJson property "repository.url" + + + https://github.com/TypeStrong/tsconfig + as detected from PackageJson property "homepage" + + + https://github.com/TypeStrong/tsconfig/issues + as detected from PackageJson property "bugs.url" + + + + + Sindre Sorhus + strip-bom + 3.0.0 + Strip UTF-8 byte order mark (BOM) from a string + + + MIT + + + pkg:npm/strip-bom@3.0.0?vcs_url=sindresorhus/strip-bom + + + sindresorhus/strip-bom + as detected from PackageJson property "repository" + + + + node_modules/tsconfig/node_modules/strip-bom + + + + + node_modules/tsconfig + + + + Mohamed Hegazy <https://github.com/mhegazy> + @types + strip-bom + 3.0.0 + TypeScript definitions for strip-bom + + + MIT + + + pkg:npm/%40types/strip-bom@3.0.0?vcs_url=https://www.github.com/DefinitelyTyped/DefinitelyTyped.git + + + https://www.github.com/DefinitelyTyped/DefinitelyTyped.git + as detected from PackageJson property "repository.url" + + + + node_modules/@types/strip-bom + + + + @types + strip-json-comments + 0.0.30 + TypeScript definitions for strip-json-comments + + + MIT + + + pkg:npm/%40types/strip-json-comments@0.0.30?vcs_url=https://www.github.com/DefinitelyTyped/DefinitelyTyped.git + + + https://www.github.com/DefinitelyTyped/DefinitelyTyped.git + as detected from PackageJson property "repository.url" + + + + node_modules/@types/strip-json-comments + + + + Evan You + vue-template-compiler + 2.7.10 + template compiler for Vue 2.0 + + + MIT + + + pkg:npm/vue-template-compiler@2.7.10?vcs_url=git+https://github.com/vuejs/vue.git + + + git+https://github.com/vuejs/vue.git + as detected from PackageJson property "repository.url" + + + https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme + as detected from PackageJson property "homepage" + + + https://github.com/vuejs/vue/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/vue-template-compiler + + + + Evan You + vue-template-es2015-compiler + 1.9.1 + Post compiler for Vue template render functions to support ES2015+ features + + + MIT + + + pkg:npm/vue-template-es2015-compiler@1.9.1?vcs_url=https://github.com/vuejs/vue-template-es2015-compiler + + + https://github.com/vuejs/vue-template-es2015-compiler + as detected from PackageJson property "repository.url" + + + + node_modules/vue-template-es2015-compiler + + + + Evan You + @vue + cli-service + 3.12.1 + local service for vue-cli projects + + + MIT + + + pkg:npm/%40vue/cli-service@3.12.1?vcs_url=git+https://github.com/vuejs/vue-cli.git#packages/@vue/cli-service + + + git+https://github.com/vuejs/vue-cli.git#packages/@vue/cli-service + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://cli.vuejs.org/ + as detected from PackageJson property "homepage" + + + https://github.com/vuejs/vue-cli/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/@vue/cli-service + + + + Shkarupa Alex + @intervolga + optimize-cssnano-plugin + 1.0.6 + WebPack 2+ plugin for CSS minification after ExtractTextPluging + + + MIT + + + pkg:npm/%40intervolga/optimize-cssnano-plugin@1.0.6?vcs_url=git+https://github.com/intervolga/optimize-cssnano-plugin + + + git+https://github.com/intervolga/optimize-cssnano-plugin + as detected from PackageJson property "repository.url" + + + https://github.com/intervolga/optimize-cssnano-plugin#readme + as detected from PackageJson property "homepage" + + + https://github.com/intervolga/optimize-cssnano-plugin/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/@intervolga/optimize-cssnano-plugin + + + + Ben Briggs + cssnano-preset-default + 4.0.8 + Safe defaults for cssnano which require minimal configuration. + + + MIT + + + pkg:npm/cssnano-preset-default@4.0.8?vcs_url=cssnano/cssnano + + + cssnano/cssnano + as detected from PackageJson property "repository" + + + https://github.com/cssnano/cssnano + as detected from PackageJson property "homepage" + + + https://github.com/cssnano/cssnano/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/cssnano-preset-default + + + + Selwyn <talk@selwyn.cc> (https://selwyn.cc/) + css-declaration-sorter + 4.0.1 + Sorts CSS declarations fast and automatically in a certain order. + + + MIT + + + pkg:npm/css-declaration-sorter@4.0.1?vcs_url=https://github.com/Siilwyn/css-declaration-sorter.git + + + https://github.com/Siilwyn/css-declaration-sorter.git + as detected from PackageJson property "repository.url" + + + + node_modules/css-declaration-sorter + + + + Andrey Sitnik <andrey@sitnik.ru> + postcss + 7.0.39 + Tool for transforming styles with JS plugins + + + MIT + + + pkg:npm/postcss@7.0.39?vcs_url=postcss/postcss + + + postcss/postcss + as detected from PackageJson property "repository" + + + https://postcss.org/ + as detected from PackageJson property "homepage" + + + + node_modules/postcss + + + + Marco Ziccardi + timsort + 0.3.0 + TimSort: Fast Sorting for Node.js + + + MIT + + + pkg:npm/timsort@0.3.0?vcs_url=https://github.com/mziccard/node-timsort.git + + + https://github.com/mziccard/node-timsort.git + as detected from PackageJson property "repository.url" + + + https://github.com/mziccard/node-timsort + as detected from PackageJson property "homepage" + + + https://github.com/mziccard/node-timsort/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/timsort + + + + Ben Briggs + cssnano-util-raw-cache + 4.0.1 + Manages the raw value formatting for generated AST nodes. + + + MIT + + + pkg:npm/cssnano-util-raw-cache@4.0.1?vcs_url=cssnano/cssnano + + + cssnano/cssnano + as detected from PackageJson property "repository" + + + https://github.com/cssnano/cssnano + as detected from PackageJson property "homepage" + + + https://github.com/cssnano/cssnano/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/cssnano-util-raw-cache + + + + Andy Jansson + postcss-calc + 7.0.5 + PostCSS plugin to reduce calc() + + + MIT + + + pkg:npm/postcss-calc@7.0.5?vcs_url=https://github.com/postcss/postcss-calc.git + + + https://github.com/postcss/postcss-calc.git + as detected from PackageJson property "repository" + + + + node_modules/postcss-calc + + + + postcss-selector-parser + 6.0.10 + + + MIT + + + pkg:npm/postcss-selector-parser@6.0.10?vcs_url=postcss/postcss-selector-parser + + + postcss/postcss-selector-parser + as detected from PackageJson property "repository" + + + https://github.com/postcss/postcss-selector-parser + as detected from PackageJson property "homepage" + + + + node_modules/postcss-selector-parser + + + + Bogdan Chadkin <trysound@yandex.ru> + postcss-value-parser + 4.2.0 + Transforms css values and at-rule params into the tree + + + MIT + + + pkg:npm/postcss-value-parser@4.2.0?vcs_url=https://github.com/TrySound/postcss-value-parser.git + + + https://github.com/TrySound/postcss-value-parser.git + as detected from PackageJson property "repository.url" + + + https://github.com/TrySound/postcss-value-parser + as detected from PackageJson property "homepage" + + + https://github.com/TrySound/postcss-value-parser/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/postcss-value-parser + + + + Ben Briggs + postcss-colormin + 4.0.3 + Minify colors in your CSS files with PostCSS. + + + MIT + + + pkg:npm/postcss-colormin@4.0.3?vcs_url=cssnano/cssnano + + + cssnano/cssnano + as detected from PackageJson property "repository" + + + https://github.com/cssnano/cssnano + as detected from PackageJson property "homepage" + + + https://github.com/cssnano/cssnano/issues + as detected from PackageJson property "bugs.url" + + + + + Bogdan Chadkin <trysound@yandex.ru> + postcss-value-parser + 3.3.1 + Transforms css values and at-rule params into the tree + + + MIT + + + pkg:npm/postcss-value-parser@3.3.1?vcs_url=https://github.com/TrySound/postcss-value-parser.git + + + https://github.com/TrySound/postcss-value-parser.git + as detected from PackageJson property "repository.url" + + + https://github.com/TrySound/postcss-value-parser + as detected from PackageJson property "homepage" + + + https://github.com/TrySound/postcss-value-parser/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/postcss-colormin/node_modules/postcss-value-parser + + + + + node_modules/postcss-colormin + + + + color + 3.2.1 + Color conversion and manipulation with CSS string support + + + MIT + + + pkg:npm/color@3.2.1?vcs_url=Qix-/color + + + Qix-/color + as detected from PackageJson property "repository" + + + + node_modules/color + + + + Heather Arthur <fayearthur@gmail.com> + color-convert + 1.9.3 + Plain color conversion functions + + + MIT + + + pkg:npm/color-convert@1.9.3?vcs_url=Qix-/color-convert + + + Qix-/color-convert + as detected from PackageJson property "repository" + + + + node_modules/color-convert + + + + Heather Arthur <fayearthur@gmail.com> + color-string + 1.9.1 + Parser and generator for CSS color strings + + + MIT + + + pkg:npm/color-string@1.9.1?vcs_url=Qix-/color-string + + + Qix-/color-string + as detected from PackageJson property "repository" + + + + node_modules/color-string + + + + DY <dfcreative@gmail.com> + color-name + 1.1.3 + A list of color names and its values + + + MIT + + + pkg:npm/color-name@1.1.3?vcs_url=git@github.com:dfcreative/color-name.git + + + https://github.com/dfcreative/color-name + as detected from PackageJson property "homepage" + + + https://github.com/dfcreative/color-name/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/color-name + + + + Qix (http://github.com/qix-) + simple-swizzle + 0.2.2 + Simply swizzle your arguments + + + MIT + + + pkg:npm/simple-swizzle@0.2.2?vcs_url=qix-/node-simple-swizzle + + + qix-/node-simple-swizzle + as detected from PackageJson property "repository" + + + + + Qix (http://github.com/qix-) + is-arrayish + 0.3.2 + Determines if an object can be used as an array + + + MIT + + + pkg:npm/is-arrayish@0.3.2?vcs_url=https://github.com/qix-/node-is-arrayish.git + + + https://github.com/qix-/node-is-arrayish.git + as detected from PackageJson property "repository.url" + + + + node_modules/simple-swizzle/node_modules/is-arrayish + + + + + node_modules/simple-swizzle + + + + Thiago de Arruda + has + 1.0.3 + Object.prototype.hasOwnProperty.call shortcut + + + MIT + + + pkg:npm/has@1.0.3?vcs_url=git://github.com/tarruda/has.git + + + git://github.com/tarruda/has.git + as detected from PackageJson property "repository.url" + + + https://github.com/tarruda/has + as detected from PackageJson property "homepage" + + + https://github.com/tarruda/has/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/has + + + + Ben Briggs + postcss-convert-values + 4.0.1 + Convert values with PostCSS (e.g. ms -> s) + + + MIT + + + pkg:npm/postcss-convert-values@4.0.1?vcs_url=cssnano/cssnano + + + cssnano/cssnano + as detected from PackageJson property "repository" + + + https://github.com/cssnano/cssnano + as detected from PackageJson property "homepage" + + + https://github.com/cssnano/cssnano/issues + as detected from PackageJson property "bugs.url" + + + + + Bogdan Chadkin <trysound@yandex.ru> + postcss-value-parser + 3.3.1 + Transforms css values and at-rule params into the tree + + + MIT + + + pkg:npm/postcss-value-parser@3.3.1?vcs_url=https://github.com/TrySound/postcss-value-parser.git + + + https://github.com/TrySound/postcss-value-parser.git + as detected from PackageJson property "repository.url" + + + https://github.com/TrySound/postcss-value-parser + as detected from PackageJson property "homepage" + + + https://github.com/TrySound/postcss-value-parser/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/postcss-convert-values/node_modules/postcss-value-parser + + + + + node_modules/postcss-convert-values + + + + Ben Briggs + postcss-discard-comments + 4.0.2 + Discard comments in your CSS files with PostCSS. + + + MIT + + + pkg:npm/postcss-discard-comments@4.0.2?vcs_url=cssnano/cssnano + + + cssnano/cssnano + as detected from PackageJson property "repository" + + + https://github.com/cssnano/cssnano + as detected from PackageJson property "homepage" + + + https://github.com/cssnano/cssnano/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/postcss-discard-comments + + + + Ben Briggs + postcss-discard-duplicates + 4.0.2 + Discard duplicate rules in your CSS files with PostCSS. + + + MIT + + + pkg:npm/postcss-discard-duplicates@4.0.2?vcs_url=cssnano/cssnano + + + cssnano/cssnano + as detected from PackageJson property "repository" + + + https://github.com/cssnano/cssnano + as detected from PackageJson property "homepage" + + + https://github.com/cssnano/cssnano/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/postcss-discard-duplicates + + + + Ben Briggs + postcss-discard-empty + 4.0.1 + Discard empty rules and values with PostCSS. + + + MIT + + + pkg:npm/postcss-discard-empty@4.0.1?vcs_url=cssnano/cssnano + + + cssnano/cssnano + as detected from PackageJson property "repository" + + + https://github.com/cssnano/cssnano + as detected from PackageJson property "homepage" + + + https://github.com/cssnano/cssnano/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/postcss-discard-empty + + + + Justineo <justice360@gmail.com> + postcss-discard-overridden + 4.0.1 + PostCSS plugin to discard overridden @keyframes or @counter-style. + + + MIT + + + pkg:npm/postcss-discard-overridden@4.0.1?vcs_url=cssnano/cssnano + + + cssnano/cssnano + as detected from PackageJson property "repository" + + + https://github.com/cssnano/cssnano + as detected from PackageJson property "homepage" + + + https://github.com/cssnano/cssnano/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/postcss-discard-overridden + + + + Ben Briggs + postcss-merge-longhand + 4.0.11 + Merge longhand properties into shorthand with PostCSS. + + + MIT + + + pkg:npm/postcss-merge-longhand@4.0.11?vcs_url=cssnano/cssnano + + + cssnano/cssnano + as detected from PackageJson property "repository" + + + https://github.com/cssnano/cssnano + as detected from PackageJson property "homepage" + + + https://github.com/cssnano/cssnano/issues + as detected from PackageJson property "bugs.url" + + + + + Bogdan Chadkin <trysound@yandex.ru> + postcss-value-parser + 3.3.1 + Transforms css values and at-rule params into the tree + + + MIT + + + pkg:npm/postcss-value-parser@3.3.1?vcs_url=https://github.com/TrySound/postcss-value-parser.git + + + https://github.com/TrySound/postcss-value-parser.git + as detected from PackageJson property "repository.url" + + + https://github.com/TrySound/postcss-value-parser + as detected from PackageJson property "homepage" + + + https://github.com/TrySound/postcss-value-parser/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/postcss-merge-longhand/node_modules/postcss-value-parser + + + + + node_modules/postcss-merge-longhand + + + + Dave Eddy <dave@daveeddy.com> (http://www.daveeddy.com) + css-color-names + 0.0.4 + A JSON Object of css color names mapped to their hex value + + + MIT + + + pkg:npm/css-color-names@0.0.4?vcs_url=git://github.com/bahamas10/css-color-names.git + + + git://github.com/bahamas10/css-color-names.git + as detected from PackageJson property "repository.url" + + + + node_modules/css-color-names + + + + Ben Briggs + stylehacks + 4.0.3 + Detect/remove browser hacks from CSS files. + + + MIT + + + pkg:npm/stylehacks@4.0.3?vcs_url=cssnano/cssnano + + + cssnano/cssnano + as detected from PackageJson property "repository" + + + https://github.com/cssnano/cssnano + as detected from PackageJson property "homepage" + + + https://github.com/cssnano/cssnano/issues + as detected from PackageJson property "bugs.url" + + + + + postcss-selector-parser + 3.1.2 + + + MIT + + + pkg:npm/postcss-selector-parser@3.1.2?vcs_url=postcss/postcss-selector-parser + + + postcss/postcss-selector-parser + as detected from PackageJson property "repository" + + + https://github.com/postcss/postcss-selector-parser + as detected from PackageJson property "homepage" + + + + node_modules/stylehacks/node_modules/postcss-selector-parser + + + + + node_modules/stylehacks + + + + Sindre Sorhus + dot-prop + 5.3.0 + Get, set, or delete a property from a nested object using a dot path + + + MIT + + + pkg:npm/dot-prop@5.3.0?vcs_url=sindresorhus/dot-prop + + + sindresorhus/dot-prop + as detected from PackageJson property "repository" + + + + node_modules/dot-prop + + + + Dominic Tarr <dominic.tarr@gmail.com> (dominictarr.com) + indexes-of + 1.0.1 + line String/Array#indexOf but return all the indexes in an array + + + MIT + + + pkg:npm/indexes-of@1.0.1?vcs_url=git://github.com/dominictarr/indexes-of.git + + + git://github.com/dominictarr/indexes-of.git + as detected from PackageJson property "repository.url" + + + https://github.com/dominictarr/indexes-of + as detected from PackageJson property "homepage" + + + + node_modules/indexes-of + + + + Mikola Lysenko + uniq + 1.0.1 + Removes duplicates from a sorted array in place + + + MIT + + + pkg:npm/uniq@1.0.1?vcs_url=git://github.com/mikolalysenko/uniq.git + + + git://github.com/mikolalysenko/uniq.git + as detected from PackageJson property "repository.url" + + + + node_modules/uniq + + + + Ben Briggs + postcss-merge-rules + 4.0.3 + Merge CSS rules with PostCSS. + + + MIT + + + pkg:npm/postcss-merge-rules@4.0.3?vcs_url=cssnano/cssnano + + + cssnano/cssnano + as detected from PackageJson property "repository" + + + https://github.com/cssnano/cssnano + as detected from PackageJson property "homepage" + + + https://github.com/cssnano/cssnano/issues + as detected from PackageJson property "bugs.url" + + + + + postcss-selector-parser + 3.1.2 + + + MIT + + + pkg:npm/postcss-selector-parser@3.1.2?vcs_url=postcss/postcss-selector-parser + + + postcss/postcss-selector-parser + as detected from PackageJson property "repository" + + + https://github.com/postcss/postcss-selector-parser + as detected from PackageJson property "homepage" + + + + node_modules/postcss-merge-rules/node_modules/postcss-selector-parser + + + + + node_modules/postcss-merge-rules + + + + caniuse-api + 3.0.0 + request the caniuse data to check browsers compatibilities + + + MIT + + + pkg:npm/caniuse-api@3.0.0?vcs_url=https://github.com/nyalab/caniuse-api.git + + + https://github.com/nyalab/caniuse-api.git + as detected from PackageJson property "repository" + + + + node_modules/caniuse-api + + + + Ben Briggs + caniuse-lite + 1.0.30001410 + A smaller version of caniuse-db, with only the essentials! + + + CC-BY-4.0 + + + pkg:npm/caniuse-lite@1.0.30001410?vcs_url=browserslist/caniuse-lite + + + browserslist/caniuse-lite + as detected from PackageJson property "repository" + + + + node_modules/caniuse-lite + + + + John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/) + lodash.memoize + 4.1.2 + The lodash method `_.memoize` exported as a module. + + + MIT + + + pkg:npm/lodash.memoize@4.1.2?vcs_url=lodash/lodash + + + lodash/lodash + as detected from PackageJson property "repository" + + + https://lodash.com/ + as detected from PackageJson property "homepage" + + + + node_modules/lodash.memoize + + + + John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/) + lodash.uniq + 4.5.0 + The lodash method `_.uniq` exported as a module. + + + MIT + + + pkg:npm/lodash.uniq@4.5.0?vcs_url=lodash/lodash + + + lodash/lodash + as detected from PackageJson property "repository" + + + https://lodash.com/ + as detected from PackageJson property "homepage" + + + + node_modules/lodash.uniq + + + + Ben Briggs + cssnano-util-same-parent + 4.0.1 + Check that two PostCSS nodes share the same parent. + + + MIT + + + pkg:npm/cssnano-util-same-parent@4.0.1?vcs_url=cssnano/cssnano + + + cssnano/cssnano + as detected from PackageJson property "repository" + + + https://github.com/cssnano/cssnano + as detected from PackageJson property "homepage" + + + https://github.com/cssnano/cssnano/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/cssnano-util-same-parent + + + + Sindre Sorhus + is-obj + 2.0.0 + Check if a value is an object + + + MIT + + + pkg:npm/is-obj@2.0.0?vcs_url=sindresorhus/is-obj + + + sindresorhus/is-obj + as detected from PackageJson property "repository" + + + + node_modules/is-obj + + + + Titus Wormer <tituswormer@gmail.com> (https://wooorm.com) + vendors + 1.0.4 + List of vendor prefixes known to the web platform + + + MIT + + + pkg:npm/vendors@1.0.4?vcs_url=wooorm/vendors + + + wooorm/vendors + as detected from PackageJson property "repository" + + + https://github.com/wooorm/vendors/issues + as detected from PackageJson property "bugs" + + + + node_modules/vendors + + + + Bogdan Chadkin <trysound@yandex.ru> + postcss-minify-font-values + 4.0.2 + Minify font declarations with PostCSS + + + MIT + + + pkg:npm/postcss-minify-font-values@4.0.2?vcs_url=cssnano/cssnano + + + cssnano/cssnano + as detected from PackageJson property "repository" + + + https://github.com/cssnano/cssnano + as detected from PackageJson property "homepage" + + + https://github.com/cssnano/cssnano/issues + as detected from PackageJson property "bugs.url" + + + + + Bogdan Chadkin <trysound@yandex.ru> + postcss-value-parser + 3.3.1 + Transforms css values and at-rule params into the tree + + + MIT + + + pkg:npm/postcss-value-parser@3.3.1?vcs_url=https://github.com/TrySound/postcss-value-parser.git + + + https://github.com/TrySound/postcss-value-parser.git + as detected from PackageJson property "repository.url" + + + https://github.com/TrySound/postcss-value-parser + as detected from PackageJson property "homepage" + + + https://github.com/TrySound/postcss-value-parser/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/postcss-minify-font-values/node_modules/postcss-value-parser + + + + + node_modules/postcss-minify-font-values + + + + Ben Briggs + postcss-minify-gradients + 4.0.2 + Minify gradient parameters with PostCSS. + + + MIT + + + pkg:npm/postcss-minify-gradients@4.0.2?vcs_url=cssnano/cssnano + + + cssnano/cssnano + as detected from PackageJson property "repository" + + + https://github.com/cssnano/cssnano + as detected from PackageJson property "homepage" + + + https://github.com/cssnano/cssnano/issues + as detected from PackageJson property "bugs.url" + + + + + Bogdan Chadkin <trysound@yandex.ru> + postcss-value-parser + 3.3.1 + Transforms css values and at-rule params into the tree + + + MIT + + + pkg:npm/postcss-value-parser@3.3.1?vcs_url=https://github.com/TrySound/postcss-value-parser.git + + + https://github.com/TrySound/postcss-value-parser.git + as detected from PackageJson property "repository.url" + + + https://github.com/TrySound/postcss-value-parser + as detected from PackageJson property "homepage" + + + https://github.com/TrySound/postcss-value-parser/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/postcss-minify-gradients/node_modules/postcss-value-parser + + + + + node_modules/postcss-minify-gradients + + + + Ben Briggs + cssnano-util-get-arguments + 4.0.0 + Get a list of arguments, separated by a comma. + + + MIT + + + pkg:npm/cssnano-util-get-arguments@4.0.0?vcs_url=cssnano/cssnano + + + cssnano/cssnano + as detected from PackageJson property "repository" + + + https://github.com/cssnano/cssnano + as detected from PackageJson property "homepage" + + + https://github.com/cssnano/cssnano/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/cssnano-util-get-arguments + + + + pigcan <jiangjay818@gmail.com> + is-color-stop + 1.1.0 + Check if a string is CSS color stop + + + MIT + + + pkg:npm/is-color-stop@1.1.0?vcs_url=git+https://github.com/pigcan/is-color-stop.git + + + git+https://github.com/pigcan/is-color-stop.git + as detected from PackageJson property "repository.url" + + + https://github.com/pigcan/is-color-stop#readme + as detected from PackageJson property "homepage" + + + https://github.com/pigcan/is-color-stop/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/is-color-stop + + + + Charlike Mike Reagent <@tunnckoCore> (http://www.tunnckocore.tk) + hex-color-regex + 1.1.0 + The best regular expression (regex) for matching hex color values from string. + + + MIT + + + pkg:npm/hex-color-regex@1.1.0?vcs_url=regexps/hex-color-regex + + + regexps/hex-color-regex + as detected from PackageJson property "repository" + + + + node_modules/hex-color-regex + + + + John Otander + hsl-regex + 1.0.0 + Regex for matching HSL colors. + + + MIT + + + pkg:npm/hsl-regex@1.0.0?vcs_url=https://github.com/regexps/hsl-regex.git + + + https://github.com/regexps/hsl-regex.git + as detected from PackageJson property "repository.url" + + + https://github.com/regexps/hsl-regex + as detected from PackageJson property "homepage" + + + https://github.com/regexps/hsl-regex/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/hsl-regex + + + + John Otander + hsla-regex + 1.0.0 + Regex for matching HSLA colors. + + + MIT + + + pkg:npm/hsla-regex@1.0.0?vcs_url=https://github.com/regexps/hsla-regex.git + + + https://github.com/regexps/hsla-regex.git + as detected from PackageJson property "repository.url" + + + https://github.com/regexps/hsla-regex + as detected from PackageJson property "homepage" + + + https://github.com/regexps/hsla-regex/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/hsla-regex + + + + John Otander + rgb-regex + 1.0.1 + Regex for RGB color strings. + + + MIT + + + pkg:npm/rgb-regex@1.0.1?vcs_url=https://github.com/regexps/rgb-regex.git + + + https://github.com/regexps/rgb-regex.git + as detected from PackageJson property "repository.url" + + + https://github.com/regexps/rgb-regex + as detected from PackageJson property "homepage" + + + https://github.com/regexps/rgb-regex/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/rgb-regex + + + + John Otander + rgba-regex + 1.0.0 + Regex for matching RGBA color strings. + + + MIT + + + pkg:npm/rgba-regex@1.0.0?vcs_url=https://github.com/johnotander/rgba-regex.git + + + https://github.com/johnotander/rgba-regex.git + as detected from PackageJson property "repository.url" + + + https://github.com/johnotander/rgba-regex + as detected from PackageJson property "homepage" + + + https://github.com/johnotander/rgba-regex/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/rgba-regex + + + + Bogdan Chadkin <trysound@yandex.ru> + postcss-minify-params + 4.0.2 + Minify at-rule params with PostCSS + + + MIT + + + pkg:npm/postcss-minify-params@4.0.2?vcs_url=cssnano/cssnano + + + cssnano/cssnano + as detected from PackageJson property "repository" + + + https://github.com/cssnano/cssnano + as detected from PackageJson property "homepage" + + + https://github.com/cssnano/cssnano/issues + as detected from PackageJson property "bugs.url" + + + + + Bogdan Chadkin <trysound@yandex.ru> + postcss-value-parser + 3.3.1 + Transforms css values and at-rule params into the tree + + + MIT + + + pkg:npm/postcss-value-parser@3.3.1?vcs_url=https://github.com/TrySound/postcss-value-parser.git + + + https://github.com/TrySound/postcss-value-parser.git + as detected from PackageJson property "repository.url" + + + https://github.com/TrySound/postcss-value-parser + as detected from PackageJson property "homepage" + + + https://github.com/TrySound/postcss-value-parser/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/postcss-minify-params/node_modules/postcss-value-parser + + + + + node_modules/postcss-minify-params + + + + Bogdan Chadkin <trysound@yandex.ru> + alphanum-sort + 1.0.2 + Alphanumeric sorting algorithm + + + MIT + + + pkg:npm/alphanum-sort@1.0.2?vcs_url=https://github.com/TrySound/alphanum-sort.git + + + https://github.com/TrySound/alphanum-sort.git + as detected from PackageJson property "repository.url" + + + https://github.com/TrySound/alphanum-sort + as detected from PackageJson property "homepage" + + + https://github.com/TrySound/alphanum-sort/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/alphanum-sort + + + + Felix Gnass <fgnass@gmail.com> + uniqs + 2.0.0 + Tiny utility to create unions and de-duplicated lists + + + MIT + + + pkg:npm/uniqs@2.0.0?vcs_url=git://github.com/fgnass/uniqs.git + + + git://github.com/fgnass/uniqs.git + as detected from PackageJson property "repository.url" + + + + node_modules/uniqs + + + + Ben Briggs + postcss-minify-selectors + 4.0.2 + Minify selectors with PostCSS. + + + MIT + + + pkg:npm/postcss-minify-selectors@4.0.2?vcs_url=cssnano/cssnano + + + cssnano/cssnano + as detected from PackageJson property "repository" + + + https://github.com/cssnano/cssnano + as detected from PackageJson property "homepage" + + + https://github.com/cssnano/cssnano/issues + as detected from PackageJson property "bugs.url" + + + + + postcss-selector-parser + 3.1.2 + + + MIT + + + pkg:npm/postcss-selector-parser@3.1.2?vcs_url=postcss/postcss-selector-parser + + + postcss/postcss-selector-parser + as detected from PackageJson property "repository" + + + https://github.com/postcss/postcss-selector-parser + as detected from PackageJson property "homepage" + + + + node_modules/postcss-minify-selectors/node_modules/postcss-selector-parser + + + + + node_modules/postcss-minify-selectors + + + + Bogdan Chadkin <trysound@yandex.ru> + postcss-normalize-charset + 4.0.1 + Add necessary or remove extra charset with PostCSS + + + MIT + + + pkg:npm/postcss-normalize-charset@4.0.1?vcs_url=cssnano/cssnano + + + cssnano/cssnano + as detected from PackageJson property "repository" + + + https://github.com/cssnano/cssnano + as detected from PackageJson property "homepage" + + + https://github.com/cssnano/cssnano/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/postcss-normalize-charset + + + + Ben Briggs + postcss-normalize-display-values + 4.0.2 + Normalize multiple value display syntaxes into single values. + + + MIT + + + pkg:npm/postcss-normalize-display-values@4.0.2?vcs_url=cssnano/cssnano + + + cssnano/cssnano + as detected from PackageJson property "repository" + + + https://github.com/cssnano/cssnano + as detected from PackageJson property "homepage" + + + https://github.com/cssnano/cssnano/issues + as detected from PackageJson property "bugs.url" + + + + + Bogdan Chadkin <trysound@yandex.ru> + postcss-value-parser + 3.3.1 + Transforms css values and at-rule params into the tree + + + MIT + + + pkg:npm/postcss-value-parser@3.3.1?vcs_url=https://github.com/TrySound/postcss-value-parser.git + + + https://github.com/TrySound/postcss-value-parser.git + as detected from PackageJson property "repository.url" + + + https://github.com/TrySound/postcss-value-parser + as detected from PackageJson property "homepage" + + + https://github.com/TrySound/postcss-value-parser/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/postcss-normalize-display-values/node_modules/postcss-value-parser + + + + + node_modules/postcss-normalize-display-values + + + + Ben Briggs + cssnano-util-get-match + 4.0.0 + Convert a list of keywords into a single keyword match. + + + MIT + + + pkg:npm/cssnano-util-get-match@4.0.0?vcs_url=cssnano/cssnano + + + cssnano/cssnano + as detected from PackageJson property "repository" + + + https://github.com/cssnano/cssnano + as detected from PackageJson property "homepage" + + + https://github.com/cssnano/cssnano/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/cssnano-util-get-match + + + + Ben Briggs + postcss-normalize-positions + 4.0.2 + Normalize keyword values for position into length values. + + + MIT + + + pkg:npm/postcss-normalize-positions@4.0.2?vcs_url=cssnano/cssnano + + + cssnano/cssnano + as detected from PackageJson property "repository" + + + https://github.com/cssnano/cssnano + as detected from PackageJson property "homepage" + + + https://github.com/cssnano/cssnano/issues + as detected from PackageJson property "bugs.url" + + + + + Bogdan Chadkin <trysound@yandex.ru> + postcss-value-parser + 3.3.1 + Transforms css values and at-rule params into the tree + + + MIT + + + pkg:npm/postcss-value-parser@3.3.1?vcs_url=https://github.com/TrySound/postcss-value-parser.git + + + https://github.com/TrySound/postcss-value-parser.git + as detected from PackageJson property "repository.url" + + + https://github.com/TrySound/postcss-value-parser + as detected from PackageJson property "homepage" + + + https://github.com/TrySound/postcss-value-parser/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/postcss-normalize-positions/node_modules/postcss-value-parser + + + + + node_modules/postcss-normalize-positions + + + + Ben Briggs + postcss-normalize-repeat-style + 4.0.2 + Convert two value syntax for repeat-style into one value. + + + MIT + + + pkg:npm/postcss-normalize-repeat-style@4.0.2?vcs_url=cssnano/cssnano + + + cssnano/cssnano + as detected from PackageJson property "repository" + + + https://github.com/cssnano/cssnano + as detected from PackageJson property "homepage" + + + https://github.com/cssnano/cssnano/issues + as detected from PackageJson property "bugs.url" + + + + + Bogdan Chadkin <trysound@yandex.ru> + postcss-value-parser + 3.3.1 + Transforms css values and at-rule params into the tree + + + MIT + + + pkg:npm/postcss-value-parser@3.3.1?vcs_url=https://github.com/TrySound/postcss-value-parser.git + + + https://github.com/TrySound/postcss-value-parser.git + as detected from PackageJson property "repository.url" + + + https://github.com/TrySound/postcss-value-parser + as detected from PackageJson property "homepage" + + + https://github.com/TrySound/postcss-value-parser/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/postcss-normalize-repeat-style/node_modules/postcss-value-parser + + + + + node_modules/postcss-normalize-repeat-style + + + + Ben Briggs + postcss-normalize-string + 4.0.2 + Normalize wrapping quotes for CSS string literals. + + + MIT + + + pkg:npm/postcss-normalize-string@4.0.2?vcs_url=cssnano/cssnano + + + cssnano/cssnano + as detected from PackageJson property "repository" + + + https://github.com/cssnano/cssnano + as detected from PackageJson property "homepage" + + + https://github.com/cssnano/cssnano/issues + as detected from PackageJson property "bugs.url" + + + + + Bogdan Chadkin <trysound@yandex.ru> + postcss-value-parser + 3.3.1 + Transforms css values and at-rule params into the tree + + + MIT + + + pkg:npm/postcss-value-parser@3.3.1?vcs_url=https://github.com/TrySound/postcss-value-parser.git + + + https://github.com/TrySound/postcss-value-parser.git + as detected from PackageJson property "repository.url" + + + https://github.com/TrySound/postcss-value-parser + as detected from PackageJson property "homepage" + + + https://github.com/TrySound/postcss-value-parser/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/postcss-normalize-string/node_modules/postcss-value-parser + + + + + node_modules/postcss-normalize-string + + + + Ben Briggs + postcss-normalize-timing-functions + 4.0.2 + Normalize CSS animation/transition timing functions. + + + MIT + + + pkg:npm/postcss-normalize-timing-functions@4.0.2?vcs_url=cssnano/cssnano + + + cssnano/cssnano + as detected from PackageJson property "repository" + + + https://github.com/cssnano/cssnano + as detected from PackageJson property "homepage" + + + https://github.com/cssnano/cssnano/issues + as detected from PackageJson property "bugs.url" + + + + + Bogdan Chadkin <trysound@yandex.ru> + postcss-value-parser + 3.3.1 + Transforms css values and at-rule params into the tree + + + MIT + + + pkg:npm/postcss-value-parser@3.3.1?vcs_url=https://github.com/TrySound/postcss-value-parser.git + + + https://github.com/TrySound/postcss-value-parser.git + as detected from PackageJson property "repository.url" + + + https://github.com/TrySound/postcss-value-parser + as detected from PackageJson property "homepage" + + + https://github.com/TrySound/postcss-value-parser/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/postcss-normalize-timing-functions/node_modules/postcss-value-parser + + + + + node_modules/postcss-normalize-timing-functions + + + + Ben Briggs + postcss-normalize-unicode + 4.0.1 + Normalize unicode-range descriptors, and can convert to wildcard ranges. + + + MIT + + + pkg:npm/postcss-normalize-unicode@4.0.1?vcs_url=cssnano/cssnano + + + cssnano/cssnano + as detected from PackageJson property "repository" + + + https://github.com/cssnano/cssnano + as detected from PackageJson property "homepage" + + + https://github.com/cssnano/cssnano/issues + as detected from PackageJson property "bugs.url" + + + + + Bogdan Chadkin <trysound@yandex.ru> + postcss-value-parser + 3.3.1 + Transforms css values and at-rule params into the tree + + + MIT + + + pkg:npm/postcss-value-parser@3.3.1?vcs_url=https://github.com/TrySound/postcss-value-parser.git + + + https://github.com/TrySound/postcss-value-parser.git + as detected from PackageJson property "repository.url" + + + https://github.com/TrySound/postcss-value-parser + as detected from PackageJson property "homepage" + + + https://github.com/TrySound/postcss-value-parser/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/postcss-normalize-unicode/node_modules/postcss-value-parser + + + + + node_modules/postcss-normalize-unicode + + + + Ben Briggs + postcss-normalize-url + 4.0.1 + Normalize URLs with PostCSS + + + MIT + + + pkg:npm/postcss-normalize-url@4.0.1?vcs_url=cssnano/cssnano + + + cssnano/cssnano + as detected from PackageJson property "repository" + + + https://github.com/cssnano/cssnano + as detected from PackageJson property "homepage" + + + https://github.com/cssnano/cssnano/issues + as detected from PackageJson property "bugs.url" + + + + + Sindre Sorhus + normalize-url + 3.3.0 + Normalize a URL + + + MIT + + + pkg:npm/normalize-url@3.3.0?vcs_url=sindresorhus/normalize-url + + + sindresorhus/normalize-url + as detected from PackageJson property "repository" + + + + node_modules/postcss-normalize-url/node_modules/normalize-url + + + + Bogdan Chadkin <trysound@yandex.ru> + postcss-value-parser + 3.3.1 + Transforms css values and at-rule params into the tree + + + MIT + + + pkg:npm/postcss-value-parser@3.3.1?vcs_url=https://github.com/TrySound/postcss-value-parser.git + + + https://github.com/TrySound/postcss-value-parser.git + as detected from PackageJson property "repository.url" + + + https://github.com/TrySound/postcss-value-parser + as detected from PackageJson property "homepage" + + + https://github.com/TrySound/postcss-value-parser/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/postcss-normalize-url/node_modules/postcss-value-parser + + + + + node_modules/postcss-normalize-url + + + + Sindre Sorhus + is-absolute-url + 2.1.0 + Check if an URL is absolute + + + MIT + + + pkg:npm/is-absolute-url@2.1.0?vcs_url=sindresorhus/is-absolute-url + + + sindresorhus/is-absolute-url + as detected from PackageJson property "repository" + + + + node_modules/is-absolute-url + + + + Ben Briggs + postcss-normalize-whitespace + 4.0.2 + Trim whitespace inside and around CSS rules & declarations. + + + MIT + + + pkg:npm/postcss-normalize-whitespace@4.0.2?vcs_url=cssnano/cssnano + + + cssnano/cssnano + as detected from PackageJson property "repository" + + + https://github.com/cssnano/cssnano + as detected from PackageJson property "homepage" + + + https://github.com/cssnano/cssnano/issues + as detected from PackageJson property "bugs.url" + + + + + Bogdan Chadkin <trysound@yandex.ru> + postcss-value-parser + 3.3.1 + Transforms css values and at-rule params into the tree + + + MIT + + + pkg:npm/postcss-value-parser@3.3.1?vcs_url=https://github.com/TrySound/postcss-value-parser.git + + + https://github.com/TrySound/postcss-value-parser.git + as detected from PackageJson property "repository.url" + + + https://github.com/TrySound/postcss-value-parser + as detected from PackageJson property "homepage" + + + https://github.com/TrySound/postcss-value-parser/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/postcss-normalize-whitespace/node_modules/postcss-value-parser + + + + + node_modules/postcss-normalize-whitespace + + + + Ben Briggs + postcss-ordered-values + 4.1.2 + Ensure values are ordered consistently in your CSS. + + + MIT + + + pkg:npm/postcss-ordered-values@4.1.2?vcs_url=cssnano/cssnano + + + cssnano/cssnano + as detected from PackageJson property "repository" + + + https://github.com/cssnano/cssnano + as detected from PackageJson property "homepage" + + + https://github.com/cssnano/cssnano/issues + as detected from PackageJson property "bugs.url" + + + + + Bogdan Chadkin <trysound@yandex.ru> + postcss-value-parser + 3.3.1 + Transforms css values and at-rule params into the tree + + + MIT + + + pkg:npm/postcss-value-parser@3.3.1?vcs_url=https://github.com/TrySound/postcss-value-parser.git + + + https://github.com/TrySound/postcss-value-parser.git + as detected from PackageJson property "repository.url" + + + https://github.com/TrySound/postcss-value-parser + as detected from PackageJson property "homepage" + + + https://github.com/TrySound/postcss-value-parser/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/postcss-ordered-values/node_modules/postcss-value-parser + + + + + node_modules/postcss-ordered-values + + + + Ben Briggs + postcss-reduce-initial + 4.0.3 + Reduce initial definitions to the actual initial value, where possible. + + + MIT + + + pkg:npm/postcss-reduce-initial@4.0.3?vcs_url=cssnano/cssnano + + + cssnano/cssnano + as detected from PackageJson property "repository" + + + https://github.com/cssnano/cssnano + as detected from PackageJson property "homepage" + + + https://github.com/cssnano/cssnano/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/postcss-reduce-initial + + + + Ben Briggs + postcss-reduce-transforms + 4.0.2 + Reduce transform functions with PostCSS. + + + MIT + + + pkg:npm/postcss-reduce-transforms@4.0.2?vcs_url=cssnano/cssnano + + + cssnano/cssnano + as detected from PackageJson property "repository" + + + https://github.com/cssnano/cssnano + as detected from PackageJson property "homepage" + + + https://github.com/cssnano/cssnano/issues + as detected from PackageJson property "bugs.url" + + + + + Bogdan Chadkin <trysound@yandex.ru> + postcss-value-parser + 3.3.1 + Transforms css values and at-rule params into the tree + + + MIT + + + pkg:npm/postcss-value-parser@3.3.1?vcs_url=https://github.com/TrySound/postcss-value-parser.git + + + https://github.com/TrySound/postcss-value-parser.git + as detected from PackageJson property "repository.url" + + + https://github.com/TrySound/postcss-value-parser + as detected from PackageJson property "homepage" + + + https://github.com/TrySound/postcss-value-parser/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/postcss-reduce-transforms/node_modules/postcss-value-parser + + + + + node_modules/postcss-reduce-transforms + + + + Ben Briggs + postcss-svgo + 4.0.3 + Optimise inline SVG with PostCSS. + + + MIT + + + pkg:npm/postcss-svgo@4.0.3?vcs_url=cssnano/cssnano + + + cssnano/cssnano + as detected from PackageJson property "repository" + + + https://github.com/cssnano/cssnano + as detected from PackageJson property "homepage" + + + https://github.com/cssnano/cssnano/issues + as detected from PackageJson property "bugs.url" + + + + + Bogdan Chadkin <trysound@yandex.ru> + postcss-value-parser + 3.3.1 + Transforms css values and at-rule params into the tree + + + MIT + + + pkg:npm/postcss-value-parser@3.3.1?vcs_url=https://github.com/TrySound/postcss-value-parser.git + + + https://github.com/TrySound/postcss-value-parser.git + as detected from PackageJson property "repository.url" + + + https://github.com/TrySound/postcss-value-parser + as detected from PackageJson property "homepage" + + + https://github.com/TrySound/postcss-value-parser/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/postcss-svgo/node_modules/postcss-value-parser + + + + + node_modules/postcss-svgo + + + + Kir Belevich + svgo + 1.3.2 + Nodejs-projxd tool for optimizing SVG vector graphics files + + + MIT + + + pkg:npm/svgo@1.3.2?vcs_url=git://github.com/svg/svgo.git + + + git://github.com/svg/svgo.git + as detected from PackageJson property "repository.url" + + + https://github.com/svg/svgo + as detected from PackageJson property "homepage" + + + https://github.com/svg/svgo/issues + as detected from PackageJson property "bugs.url" + + + + + Felix Boehm <me@feedic.com> + css-select + 2.1.0 + a CSS selector compiler/engine + + + BSD-2-Clause + + + pkg:npm/css-select@2.1.0?vcs_url=git://github.com/fb55/css-select.git + + + git://github.com/fb55/css-select.git + as detected from PackageJson property "repository.url" + + + + node_modules/svgo/node_modules/css-select + + + + Felix Bohm <me@feedic.com> (http://feedic.com) + css-what + 3.4.2 + a CSS selector parser + + + BSD-2-Clause + + + pkg:npm/css-what@3.4.2?vcs_url=https://github.com/fb55/css-what + + + https://github.com/fb55/css-what + as detected from PackageJson property "repository.url" + + + + node_modules/svgo/node_modules/css-what + + + + Felix Boehm <me@feedic.com> + domutils + 1.7.0 + utilities for working with htmlparser2's dom + + + BSD-2-Clause + + + pkg:npm/domutils@1.7.0?vcs_url=git://github.com/FB55/domutils.git + + + git://github.com/FB55/domutils.git + as detected from PackageJson property "repository.url" + + + + + Felix Boehm <me@feedic.com> + domelementtype + 1.3.1 + all the types of nodes in htmlparser2's dom + + + BSD-2-Clause + + + pkg:npm/domelementtype@1.3.1?vcs_url=git://github.com/fb55/domelementtype.git + + + git://github.com/fb55/domelementtype.git + as detected from PackageJson property "repository.url" + + + + node_modules/svgo/node_modules/domutils/node_modules/domelementtype + + + + + node_modules/svgo/node_modules/domutils + + + + Felix Boehm <me@feedic.com> + dom-serializer + 0.2.2 + render dom nodes to string + + + MIT + + + pkg:npm/dom-serializer@0.2.2?vcs_url=git://github.com/cheeriojs/dom-renderer.git + + + git://github.com/cheeriojs/dom-renderer.git + as detected from PackageJson property "repository.url" + + + + node_modules/svgo/node_modules/dom-serializer + + + + Felix Boehm <me@feedic.com> + nth-check + 1.0.2 + performant nth-check parser & compiler + + + BSD-2-Clause + + + pkg:npm/nth-check@1.0.2?vcs_url=https://github.com/fb55/nth-check + + + https://github.com/fb55/nth-check + as detected from PackageJson property "repository.url" + + + https://github.com/fb55/nth-check + as detected from PackageJson property "homepage" + + + https://github.com/fb55/nth-check/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/svgo/node_modules/nth-check + + + + + node_modules/svgo + + + + Sergey Berezhnoy <veged@ya.ru> (http://github.com/veged) + coa + 2.0.2 + Command-Option-Argument: Yet another parser for command line options. + + + MIT + + + pkg:npm/coa@2.0.2?vcs_url=git://github.com/veged/coa.git + + + git://github.com/veged/coa.git + as detected from PackageJson property "repository.url" + + + http://github.com/veged/coa + as detected from PackageJson property "homepage" + + + + node_modules/coa + + + + @types + q + 1.5.5 + TypeScript definitions for Q + + + MIT + + + pkg:npm/%40types/q@1.5.5?vcs_url=https://github.com/DefinitelyTyped/DefinitelyTyped.git#types/q + + + https://github.com/DefinitelyTyped/DefinitelyTyped.git#types/q + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/q + as detected from PackageJson property "homepage" + + + + node_modules/@types/q + + + + Kris Kowal <kris@cixar.com> (https://github.com/kriskowal) + q + 1.5.1 + A library for promises (CommonJS/Promises/A,B,D) + + + MIT + + + pkg:npm/q@1.5.1?vcs_url=git://github.com/kriskowal/q.git + + + git://github.com/kriskowal/q.git + as detected from PackageJson property "repository.url" + + + https://github.com/kriskowal/q + as detected from PackageJson property "homepage" + + + http://github.com/kriskowal/q/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/q + + + + Nik Coughlin <nrkn.com@gmail.com> + css-select-projx-adapter + 0.1.1 + Provides some projx functions needed by a css-select adapter so that you don't have to implement the whole thing. + + + MIT + + + pkg:npm/css-select-projx-adapter@0.1.1?vcs_url=https://github.com/nrkn/css-select-projx-adapter.git + + + https://github.com/nrkn/css-select-projx-adapter.git + as detected from PackageJson property "repository.url" + + + https://github.com/nrkn/css-select-projx-adapter#readme + as detected from PackageJson property "homepage" + + + https://github.com/nrkn/css-select-projx-adapter/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/css-select-projx-adapter + + + + Felix Boehm <me@feedic.com> + boolprojx + 1.0.0 + two functions: One that returns true, one that returns false + + + ISC + + + pkg:npm/boolprojx@1.0.0?vcs_url=https://github.com/fb55/boolprojx + + + https://github.com/fb55/boolprojx + as detected from PackageJson property "repository.url" + + + https://github.com/fb55/boolprojx + as detected from PackageJson property "homepage" + + + https://github.com/fb55/boolprojx/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/boolprojx + + + + Felix Boehm <me@feedic.com> + domelementtype + 2.3.0 + all the types of nodes in htmlparser2's dom + + + BSD-2-Clause + + + pkg:npm/domelementtype@2.3.0?vcs_url=git://github.com/fb55/domelementtype.git + + + git://github.com/fb55/domelementtype.git + as detected from PackageJson property "repository.url" + + + + node_modules/domelementtype + + + + Felix Boehm <me@feedic.com> + entities + 2.2.0 + Encode & decode XML and HTML entities with ease + + + BSD-2-Clause + + + pkg:npm/entities@2.2.0?vcs_url=git://github.com/fb55/entities.git + + + git://github.com/fb55/entities.git + as detected from PackageJson property "repository.url" + + + + node_modules/entities + + + + Roman Dvornov <rdvornov@gmail.com> (https://github.com/lahmatiy) + css-tree + 1.0.0-alpha.37 + 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) projxd on knowledge of spec and browser implementations + + + MIT + + + pkg:npm/css-tree@1.0.0-alpha.37?vcs_url=csstree/csstree + + + csstree/csstree + as detected from PackageJson property "repository" + + + + node_modules/css-tree + + + + Mozilla Developer Network + mdn-data + 2.0.4 + Open Web data by the Mozilla Developer Network + + + CC0-1.0 + + + pkg:npm/mdn-data@2.0.4?vcs_url=https://github.com/mdn/data.git + + + https://github.com/mdn/data.git + as detected from PackageJson property "repository.url" + + + https://developer.mozilla.org + as detected from PackageJson property "homepage" + + + https://github.com/mdn/data/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/mdn-data + + + + Sergey Kryzhanovsky <skryzhanovsky@ya.ru> (https://github.com/afelix) + csso + 4.2.0 + CSS minifier with structural optimisations + + + MIT + + + pkg:npm/csso@4.2.0?vcs_url=css/csso + + + css/csso + as detected from PackageJson property "repository" + + + https://github.com/css/csso + as detected from PackageJson property "homepage" + + + https://github.com/css/csso/issues + as detected from PackageJson property "bugs.url" + + + + + Roman Dvornov <rdvornov@gmail.com> (https://github.com/lahmatiy) + css-tree + 1.1.3 + A tool set for CSS: fast detailed parser (CSS -> AST), walker (AST traversal), generator (AST -> CSS) and lexer (validation and matching) projxd on specs and browser implementations + + + MIT + + + pkg:npm/css-tree@1.1.3?vcs_url=csstree/csstree + + + csstree/csstree + as detected from PackageJson property "repository" + + + + node_modules/csso/node_modules/css-tree + + + + Mozilla Developer Network + mdn-data + 2.0.14 + Open Web data by the Mozilla Developer Network + + + CC0-1.0 + + + pkg:npm/mdn-data@2.0.14?vcs_url=https://github.com/mdn/data.git + + + https://github.com/mdn/data.git + as detected from PackageJson property "repository.url" + + + https://developer.mozilla.org + as detected from PackageJson property "homepage" + + + https://github.com/mdn/data/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/csso/node_modules/mdn-data + + + + + node_modules/csso + + + + Jordan Harband <ljharb@gmail.com> + object.values + 1.1.5 + ES2017 spec-compliant Object.values shim. + + + MIT + + + pkg:npm/object.values@1.1.5?vcs_url=git://github.com/es-shims/Object.values.git + + + git://github.com/es-shims/Object.values.git + as detected from PackageJson property "repository.url" + + + + node_modules/object.values + + + + Angry Bytes <info@angrybytes.com> + stable + 0.1.8 + A stable array sort for JavaScript + + + MIT + + + pkg:npm/stable@0.1.8?vcs_url=https://github.com/Two-Screen/stable.git + + + https://github.com/Two-Screen/stable.git + as detected from PackageJson property "repository.url" + + + + node_modules/stable + + + + Cameron Lakenen <cameron@lakenen.com> + unquote + 1.1.1 + Remove wrapping quotes from a string. + + + MIT + + + pkg:npm/unquote@1.1.1?vcs_url=https://github.com/lakenen/node-unquote.git + + + https://github.com/lakenen/node-unquote.git + as detected from PackageJson property "repository.url" + + + https://github.com/lakenen/node-unquote + as detected from PackageJson property "homepage" + + + https://github.com/lakenen/node-unquote/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/unquote + + + + Ben Briggs + postcss-unique-selectors + 4.0.1 + Ensure CSS selectors are unique. + + + MIT + + + pkg:npm/postcss-unique-selectors@4.0.1?vcs_url=cssnano/cssnano + + + cssnano/cssnano + as detected from PackageJson property "repository" + + + https://github.com/cssnano/cssnano + as detected from PackageJson property "homepage" + + + https://github.com/cssnano/cssnano/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/postcss-unique-selectors + + + + Ben Briggs + cssnano + 4.1.11 + A modular minifier, built on top of the PostCSS ecosystem. + + + MIT + + + pkg:npm/cssnano@4.1.11?vcs_url=cssnano/cssnano + + + cssnano/cssnano + as detected from PackageJson property "repository" + + + https://github.com/cssnano/cssnano + as detected from PackageJson property "homepage" + + + https://github.com/cssnano/cssnano/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/cssnano + + + + Alexey Raspopov + picocolors + 0.2.1 + The tiniest and the fastest coloring library ever + + + ISC + + + pkg:npm/picocolors@0.2.1?vcs_url=alexeyraspopov/picocolors + + + alexeyraspopov/picocolors + as detected from PackageJson property "repository" + + + + node_modules/picocolors + + + + Geoffroy Warin + @soda + friendly-errors-webpack-plugin + 1.8.1 + Recognizes certain classes of webpack errors and cleans, aggregates and prioritizes them to provide a better Developer Experience + + + MIT + + + pkg:npm/%40soda/friendly-errors-webpack-plugin@1.8.1?vcs_url=git+https://github.com/sodatea/friendly-errors-webpack-plugin.git + + + git+https://github.com/sodatea/friendly-errors-webpack-plugin.git + as detected from PackageJson property "repository.url" + + + https://github.com/sodatea/friendly-errors-webpack-plugin/issues + as detected from PackageJson property "bugs.url" + + + + + chalk + 3.0.0 + Terminal string styling done right + + + MIT + + + pkg:npm/chalk@3.0.0?vcs_url=chalk/chalk + + + chalk/chalk + as detected from PackageJson property "repository" + + + + node_modules/@soda/friendly-errors-webpack-plugin/node_modules/chalk + + + + Sindre Sorhus + ansi-styles + 4.3.0 + ANSI escape codes for styling strings in the terminal + + + MIT + + + pkg:npm/ansi-styles@4.3.0?vcs_url=chalk/ansi-styles + + + chalk/ansi-styles + as detected from PackageJson property "repository" + + + + node_modules/@soda/friendly-errors-webpack-plugin/node_modules/ansi-styles + + + + Heather Arthur <fayearthur@gmail.com> + color-convert + 2.0.1 + Plain color conversion functions + + + MIT + + + pkg:npm/color-convert@2.0.1?vcs_url=Qix-/color-convert + + + Qix-/color-convert + as detected from PackageJson property "repository" + + + + node_modules/@soda/friendly-errors-webpack-plugin/node_modules/color-convert + + + + DY <dfcreative@gmail.com> + color-name + 1.1.4 + A list of color names and its values + + + MIT + + + pkg:npm/color-name@1.1.4?vcs_url=git@github.com:colorjs/color-name.git + + + https://github.com/colorjs/color-name + as detected from PackageJson property "homepage" + + + https://github.com/colorjs/color-name/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/@soda/friendly-errors-webpack-plugin/node_modules/color-name + + + + Sindre Sorhus + supports-color + 7.2.0 + Detect whether a terminal supports color + + + MIT + + + pkg:npm/supports-color@7.2.0?vcs_url=chalk/supports-color + + + chalk/supports-color + as detected from PackageJson property "repository" + + + + node_modules/@soda/friendly-errors-webpack-plugin/node_modules/supports-color + + + + Sindre Sorhus + has-flag + 4.0.0 + Check if argv has a specific flag + + + MIT + + + pkg:npm/has-flag@4.0.0?vcs_url=sindresorhus/has-flag + + + sindresorhus/has-flag + as detected from PackageJson property "repository" + + + + node_modules/@soda/friendly-errors-webpack-plugin/node_modules/has-flag + + + + + node_modules/@soda/friendly-errors-webpack-plugin + + + + error-stack-parser + 2.1.4 + Extract meaning from JS Errors + + + MIT + + + pkg:npm/error-stack-parser@2.1.4?vcs_url=git://github.com/stacktracejs/error-stack-parser.git + + + git://github.com/stacktracejs/error-stack-parser.git + as detected from PackageJson property "repository.url" + + + https://www.stacktracejs.com + as detected from PackageJson property "homepage" + + + https://github.com/stacktracejs/error-stack-parser/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/error-stack-parser + + + + stackframe + 1.3.4 + JS Object representation of a stack frame + + + MIT + + + pkg:npm/stackframe@1.3.4?vcs_url=git://github.com/stacktracejs/stackframe.git + + + git://github.com/stacktracejs/stackframe.git + as detected from PackageJson property "repository.url" + + + https://www.stacktracejs.com + as detected from PackageJson property "homepage" + + + https://github.com/stacktracejs/stackframe/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/stackframe + + + + Sindre Sorhus + string-width + 4.2.3 + Get the visual width of a string - the number of columns required to display it + + + MIT + + + pkg:npm/string-width@4.2.3?vcs_url=sindresorhus/string-width + + + sindresorhus/string-width + as detected from PackageJson property "repository" + + + + node_modules/string-width + + + + Mathias Bynens + emoji-regex + 8.0.0 + A regular expression to match all Emoji-only symbols as per the Unicode Standard. + + + MIT + + + pkg:npm/emoji-regex@8.0.0?vcs_url=https://github.com/mathiasbynens/emoji-regex.git + + + https://github.com/mathiasbynens/emoji-regex.git + as detected from PackageJson property "repository.url" + + + https://mths.be/emoji-regex + as detected from PackageJson property "homepage" + + + https://github.com/mathiasbynens/emoji-regex/issues + as detected from PackageJson property "bugs" + + + + node_modules/emoji-regex + + + + Sindre Sorhus + is-fullwidth-code-point + 3.0.0 + Check if the character represented by a given Unicode code point is fullwidth + + + MIT + + + pkg:npm/is-fullwidth-code-point@3.0.0?vcs_url=sindresorhus/is-fullwidth-code-point + + + sindresorhus/is-fullwidth-code-point + as detected from PackageJson property "repository" + + + + node_modules/is-fullwidth-code-point + + + + Sindre Sorhus + strip-ansi + 6.0.1 + Strip ANSI escape codes from a string + + + MIT + + + pkg:npm/strip-ansi@6.0.1?vcs_url=chalk/strip-ansi + + + chalk/strip-ansi + as detected from PackageJson property "repository" + + + + + Sindre Sorhus + ansi-regex + 5.0.1 + Regular expression for matching ANSI escape codes + + + MIT + + + pkg:npm/ansi-regex@5.0.1?vcs_url=chalk/ansi-regex + + + chalk/ansi-regex + as detected from PackageJson property "repository" + + + + node_modules/strip-ansi/node_modules/ansi-regex + + + + + node_modules/strip-ansi + + + + Evan You + @vue + cli-overlay + 3.12.1 + error overlay & dev server middleware for vue-cli + + + MIT + + + pkg:npm/%40vue/cli-overlay@3.12.1?vcs_url=git+https://github.com/vuejs/vue-cli.git#packages/@vue/cli-overlay + + + git+https://github.com/vuejs/vue-cli.git#packages/@vue/cli-overlay + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://github.com/vuejs/vue-cli/tree/dev/packages/@vue/cli-overlay#readme + as detected from PackageJson property "homepage" + + + https://github.com/vuejs/vue-cli/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/@vue/cli-overlay + + + + Evan You + @vue + component-compiler-utils + 3.3.0 + Lower level utilities for compiling Vue single file components + + + MIT + + + pkg:npm/%40vue/component-compiler-utils@3.3.0?vcs_url=git+https://github.com/vuejs/component-compiler-utils.git + + + git+https://github.com/vuejs/component-compiler-utils.git + as detected from PackageJson property "repository.url" + + + https://github.com/vuejs/component-compiler-utils#readme + as detected from PackageJson property "homepage" + + + https://github.com/vuejs/component-compiler-utils/issues + as detected from PackageJson property "bugs.url" + + + + + Isaac Z. Schlueter <i@izs.me> + lru-cache + 4.1.5 + A cache object that deletes the least-recently-used items. + + + ISC + + + pkg:npm/lru-cache@4.1.5?vcs_url=git://github.com/isaacs/node-lru-cache.git + + + git://github.com/isaacs/node-lru-cache.git + as detected from PackageJson property "repository" + + + + node_modules/@vue/component-compiler-utils/node_modules/lru-cache + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + yallist + 2.1.2 + Yet Another Linked List + + + ISC + + + pkg:npm/yallist@2.1.2?vcs_url=git+https://github.com/isaacs/yallist.git + + + git+https://github.com/isaacs/yallist.git + as detected from PackageJson property "repository.url" + + + + node_modules/@vue/component-compiler-utils/node_modules/yallist + + + + + node_modules/@vue/component-compiler-utils + + + + TJ Holowaychuk <tj@vision-media.ca> + consolidate + 0.15.1 + Template engine consolidation library + + + MIT + + + pkg:npm/consolidate@0.15.1?vcs_url=tj/consolidate.js + + + tj/consolidate.js + as detected from PackageJson property "repository" + + + https://github.com/tj/consolidate.js + as detected from PackageJson property "homepage" + + + https://github.com/tj/consolidate.js/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/consolidate + + + + Petka Antonov + bluebird + 3.7.2 + Full featured Promises/A+ implementation with exceptionally good performance + + + MIT + + + pkg:npm/bluebird@3.7.2?vcs_url=git://github.com/petkaantonov/bluebird.git + + + git://github.com/petkaantonov/bluebird.git + as detected from PackageJson property "repository.url" + + + https://github.com/petkaantonov/bluebird + as detected from PackageJson property "homepage" + + + http://github.com/petkaantonov/bluebird/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/bluebird + + + + hash-sum + 1.0.2 + Blazing fast unique hash generator + + + MIT + + + pkg:npm/hash-sum@1.0.2?vcs_url=git://github.com/bevacqua/hash-sum.git + + + git://github.com/bevacqua/hash-sum.git + as detected from PackageJson property "repository.url" + + + https://github.com/bevacqua/hash-sum + as detected from PackageJson property "homepage" + + + https://github.com/bevacqua/hash-sum/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/hash-sum + + + + keik <k4t0.kei@gmail.com> + merge-source-map + 1.1.0 + Merge old source map and new source map in multi-transform flow + + + MIT + + + pkg:npm/merge-source-map@1.1.0?vcs_url=git+https://github.com/keik/merge-source-map.git + + + git+https://github.com/keik/merge-source-map.git + as detected from PackageJson property "repository.url" + + + https://github.com/keik/merge-source-map/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/merge-source-map + + + + Mathias Bynens + cssesc + 3.0.0 + A JavaScript library for escaping CSS strings and identifiers while generating the shortest possible ASCII-only output. + + + MIT + + + pkg:npm/cssesc@3.0.0?vcs_url=https://github.com/mathiasbynens/cssesc.git + + + https://github.com/mathiasbynens/cssesc.git + as detected from PackageJson property "repository.url" + + + https://mths.be/cssesc + as detected from PackageJson property "homepage" + + + https://github.com/mathiasbynens/cssesc/issues + as detected from PackageJson property "bugs" + + + + node_modules/cssesc + + + + James Long + prettier + 2.7.1 + Prettier is an opinionated code formatter + + + MIT + + + pkg:npm/prettier@2.7.1?vcs_url=prettier/prettier + + + prettier/prettier + as detected from PackageJson property "repository" + + + https://prettier.io + as detected from PackageJson property "homepage" + + + + node_modules/prettier + + + + Addy Osmani <addy.osmani@gmail.com> (https://github.com/addyosmani) + @vue + preload-webpack-plugin + 1.1.2 + A webpack plugin for injecting <link rel='preload|prefecth'> into HtmlWebpackPlugin pages, with async chunk support + + + Apache-2.0 + + + pkg:npm/%40vue/preload-webpack-plugin@1.1.2?vcs_url=https://github.com/vuejs/preload-webpack-plugin.git + + + https://github.com/vuejs/preload-webpack-plugin.git + as detected from PackageJson property "repository.url" + + + https://github.com/vuejs/preload-webpack-plugin + as detected from PackageJson property "homepage" + + + https://github.com/vuejs/preload-webpack-plugin/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/@vue/preload-webpack-plugin + + + + Charles Blaxland <charles.blaxland@gmail.com> (https://github.com/ampedandwired) + html-webpack-plugin + 3.2.0 + Simplifies creation of HTML files to serve your webpack bundles + + + MIT + + + pkg:npm/html-webpack-plugin@3.2.0?vcs_url=https://github.com/jantimon/html-webpack-plugin.git + + + https://github.com/jantimon/html-webpack-plugin.git + as detected from PackageJson property "repository" + + + https://github.com/jantimon/html-webpack-plugin + as detected from PackageJson property "homepage" + + + https://github.com/jantimon/html-webpack-plugin/issues + as detected from PackageJson property "bugs" + + + + + Tobias Koppers @sokra + loader-utils + 0.2.17 + utils for webpack loaders + + + MIT + + + pkg:npm/loader-utils@0.2.17?vcs_url=https://github.com/webpack/loader-utils.git + + + https://github.com/webpack/loader-utils.git + as detected from PackageJson property "repository.url" + + + + node_modules/html-webpack-plugin/node_modules/loader-utils + + + + Michael Mclaughlin + big.js + 3.2.0 + A small, fast, easy-to-use library for arbitrary-precision decimal arithmetic + + + MIT + + + pkg:npm/big.js@3.2.0?vcs_url=https://github.com/MikeMcl/big.js.git + + + https://github.com/MikeMcl/big.js.git + as detected from PackageJson property "repository.url" + + + https://github.com/MikeMcl/big.js/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/html-webpack-plugin/node_modules/big.js + + + + Kiko Beats + emojis-list + 2.1.0 + Complete list of standard emojis. + + + MIT + + + pkg:npm/emojis-list@2.1.0?vcs_url=git+https://github.com/kikobeats/emojis-list.git + + + git+https://github.com/kikobeats/emojis-list.git + as detected from PackageJson property "repository.url" + + + https://github.com/Kikobeats/emojis-list + as detected from PackageJson property "homepage" + + + https://github.com/Kikobeats/emojis-list/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/html-webpack-plugin/node_modules/emojis-list + + + + Aseem Kishore <aseem.kishore@gmail.com> + json5 + 0.5.1 + JSON for the ES5 era. + + + MIT + + + pkg:npm/json5@0.5.1?vcs_url=https://github.com/aseemk/json5.git + + + https://github.com/aseemk/json5.git + as detected from PackageJson property "repository.url" + + + http://json5.org/ + as detected from PackageJson property "homepage" + + + + node_modules/html-webpack-plugin/node_modules/json5 + + + + Tobias Koppers @sokra + tapable + 1.1.3 + Just a little module for plugins. + + + MIT + + + pkg:npm/tapable@1.1.3?vcs_url=http://github.com/webpack/tapable.git + + + http://github.com/webpack/tapable.git + as detected from PackageJson property "repository.url" + + + https://github.com/webpack/tapable + as detected from PackageJson property "homepage" + + + + node_modules/html-webpack-plugin/node_modules/tapable + + + + + node_modules/html-webpack-plugin + + + + Evan You + @vue + web-component-wrapper + 1.3.0 + wrap a vue component as a web component. + + + MIT + + + pkg:npm/%40vue/web-component-wrapper@1.3.0?vcs_url=git+https://github.com/vuejs/web-component-wrapper.git + + + git+https://github.com/vuejs/web-component-wrapper.git + as detected from PackageJson property "repository.url" + + + https://github.com/vuejs/web-component-wrapper#readme + as detected from PackageJson property "homepage" + + + https://github.com/vuejs/web-component-wrapper/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/@vue/web-component-wrapper + + + + fengmk2 <fengmk2@gmail.com> + address + 1.2.1 + Get current machine IP, MAC and DNS servers. + + + MIT + + + pkg:npm/address@1.2.1?vcs_url=git://github.com/node-modules/address.git + + + git://github.com/node-modules/address.git + as detected from PackageJson property "repository.url" + + + + node_modules/address + + + + Andrey Sitnik <andrey@sitnik.ru> + autoprefixer + 9.8.8 + Parse CSS and add vendor prefixes to CSS rules using values from the Can I Use website + + + MIT + + + pkg:npm/autoprefixer@9.8.8?vcs_url=postcss/autoprefixer + + + postcss/autoprefixer + as detected from PackageJson property "repository" + + + + node_modules/autoprefixer + + + + James Talmage + normalize-range + 0.1.2 + Utility for normalizing a numeric range, with a wrapping function useful for polar coordinates + + + MIT + + + pkg:npm/normalize-range@0.1.2?vcs_url=jamestalmage/normalize-range + + + jamestalmage/normalize-range + as detected from PackageJson property "repository" + + + + node_modules/normalize-range + + + + yisi + num2fraction + 1.2.2 + Convert number to fraction + + + MIT + + + pkg:npm/num2fraction@1.2.2?vcs_url=git@github.com:yisibl/num2fraction.git + + node_modules/num2fraction + + + + Kilian Valkhof + electron-to-chromium + 1.4.258 + Provides a list of electron-to-chromium version mappings + + + ISC + + + pkg:npm/electron-to-chromium@1.4.258?vcs_url=https://github.com/kilian/electron-to-chromium/ + + + https://github.com/kilian/electron-to-chromium/ + as detected from PackageJson property "repository.url" + + + + node_modules/electron-to-chromium + + + + Sergey Rubanov <chi187@gmail.com> + node-releases + 2.0.6 + Node.js releases data + + + MIT + + + pkg:npm/node-releases@2.0.6?vcs_url=chicoxyzzy/node-releases + + + chicoxyzzy/node-releases + as detected from PackageJson property "repository" + + + + node_modules/node-releases + + + + Andrey Sitnik <andrey@sitnik.ru> + update-browserslist-db + 1.0.9 + CLI tool to update caniuse-lite to refresh target browsers from Browserslist config + + + MIT + + + pkg:npm/update-browserslist-db@1.0.9?vcs_url=browserslist/update-db + + + browserslist/update-db + as detected from PackageJson property "repository" + + + + + Alexey Raspopov + picocolors + 1.0.0 + The tiniest and the fastest library for terminal output formatting with ANSI colors + + + ISC + + + pkg:npm/picocolors@1.0.0?vcs_url=alexeyraspopov/picocolors + + + alexeyraspopov/picocolors + as detected from PackageJson property "repository" + + + + node_modules/update-browserslist-db/node_modules/picocolors + + + + + node_modules/update-browserslist-db + + + + Luke Edwards + escalade + 3.1.1 + A tiny (183B to 210B) and fast utility to ascend parent directories + + + MIT + + + pkg:npm/escalade@3.1.1?vcs_url=lukeed/escalade + + + lukeed/escalade + as detected from PackageJson property "repository" + + + + node_modules/escalade + + + + Tobias Koppers @sokra + cache-loader + 2.0.1 + Caches the result of following loaders on disk. + + + MIT + + + pkg:npm/cache-loader@2.0.1?vcs_url=webpack-contrib/cache-loader + + + webpack-contrib/cache-loader + as detected from PackageJson property "repository" + + + https://github.com/webpack-contrib/cache-loader + as detected from PackageJson property "homepage" + + + https://github.com/webpack-contrib/cache-loader/issues + as detected from PackageJson property "bugs" + + + + + Tobias Koppers @sokra + loader-utils + 1.4.0 + utils for webpack loaders + + + MIT + + + pkg:npm/loader-utils@1.4.0?vcs_url=https://github.com/webpack/loader-utils.git + + + https://github.com/webpack/loader-utils.git + as detected from PackageJson property "repository.url" + + + + node_modules/cache-loader/node_modules/loader-utils + + + + Aseem Kishore <aseem.kishore@gmail.com> + json5 + 1.0.1 + JSON for humans. + + + MIT + + + pkg:npm/json5@1.0.1?vcs_url=git+https://github.com/json5/json5.git + + + git+https://github.com/json5/json5.git + as detected from PackageJson property "repository.url" + + + http://json5.org/ + as detected from PackageJson property "homepage" + + + https://github.com/json5/json5/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/cache-loader/node_modules/json5 + + + + webpack Contrib (https://github.com/webpack-contrib) + schema-utils + 1.0.0 + webpack Validation Utils + + + MIT + + + pkg:npm/schema-utils@1.0.0?vcs_url=https://github.com/webpack-contrib/schema-utils + + + https://github.com/webpack-contrib/schema-utils + as detected from PackageJson property "repository" + + + https://github.com/webpack-contrib/schema-utils + as detected from PackageJson property "homepage" + + + https://github.com/webpack-contrib/schema-utils/issues + as detected from PackageJson property "bugs" + + + + node_modules/cache-loader/node_modules/schema-utils + + + + + node_modules/cache-loader + + + + Michael Pratt + case-sensitive-paths-webpack-plugin + 2.4.0 + Enforces module path case sensitivity in Webpack + + + MIT + + + pkg:npm/case-sensitive-paths-webpack-plugin@2.4.0?vcs_url=git+https://github.com/Urthen/case-sensitive-paths-webpack-plugin.git + + + git+https://github.com/Urthen/case-sensitive-paths-webpack-plugin.git + as detected from PackageJson property "repository.url" + + + https://github.com/Urthen/case-sensitive-paths-webpack-plugin#readme + as detected from PackageJson property "homepage" + + + https://github.com/Urthen/case-sensitive-paths-webpack-plugin/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/case-sensitive-paths-webpack-plugin + + + + Sindre Sorhus + supports-color + 5.5.0 + Detect whether a terminal supports color + + + MIT + + + pkg:npm/supports-color@5.5.0?vcs_url=chalk/supports-color + + + chalk/supports-color + as detected from PackageJson property "repository" + + + + node_modules/supports-color + + + + Sindre Sorhus + has-flag + 3.0.0 + Check if argv has a specific flag + + + MIT + + + pkg:npm/has-flag@3.0.0?vcs_url=sindresorhus/has-flag + + + sindresorhus/has-flag + as detected from PackageJson property "repository" + + + + node_modules/has-flag + + + + Felix Becker <felix.b@outlook.com> + cli-highlight + 2.1.11 + Syntax highlighting in your terminal + + + ISC + + + pkg:npm/cli-highlight@2.1.11?vcs_url=https://github.com/felixfbecker/cli-highlight.git + + + https://github.com/felixfbecker/cli-highlight.git + as detected from PackageJson property "repository.url" + + + https://github.com/felixfbecker/cli-highlight#readme + as detected from PackageJson property "homepage" + + + https://github.com/felixfbecker/cli-highlight/issues + as detected from PackageJson property "bugs.url" + + + + + chalk + 4.1.2 + Terminal string styling done right + + + MIT + + + pkg:npm/chalk@4.1.2?vcs_url=chalk/chalk + + + chalk/chalk + as detected from PackageJson property "repository" + + + + node_modules/cli-highlight/node_modules/chalk + + + + Sindre Sorhus + ansi-styles + 4.3.0 + ANSI escape codes for styling strings in the terminal + + + MIT + + + pkg:npm/ansi-styles@4.3.0?vcs_url=chalk/ansi-styles + + + chalk/ansi-styles + as detected from PackageJson property "repository" + + + + node_modules/cli-highlight/node_modules/ansi-styles + + + + Heather Arthur <fayearthur@gmail.com> + color-convert + 2.0.1 + Plain color conversion functions + + + MIT + + + pkg:npm/color-convert@2.0.1?vcs_url=Qix-/color-convert + + + Qix-/color-convert + as detected from PackageJson property "repository" + + + + node_modules/cli-highlight/node_modules/color-convert + + + + DY <dfcreative@gmail.com> + color-name + 1.1.4 + A list of color names and its values + + + MIT + + + pkg:npm/color-name@1.1.4?vcs_url=git@github.com:colorjs/color-name.git + + + https://github.com/colorjs/color-name + as detected from PackageJson property "homepage" + + + https://github.com/colorjs/color-name/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/cli-highlight/node_modules/color-name + + + + Sindre Sorhus + supports-color + 7.2.0 + Detect whether a terminal supports color + + + MIT + + + pkg:npm/supports-color@7.2.0?vcs_url=chalk/supports-color + + + chalk/supports-color + as detected from PackageJson property "repository" + + + + node_modules/cli-highlight/node_modules/supports-color + + + + Sindre Sorhus + has-flag + 4.0.0 + Check if argv has a specific flag + + + MIT + + + pkg:npm/has-flag@4.0.0?vcs_url=sindresorhus/has-flag + + + sindresorhus/has-flag + as detected from PackageJson property "repository" + + + + node_modules/cli-highlight/node_modules/has-flag + + + + + node_modules/cli-highlight + + + + Ivan Sagalaev + highlight.js + 10.7.3 + Syntax highlighting with language autodetection. + + + BSD-3-Clause + + + pkg:npm/highlight.js@10.7.3?vcs_url=git://github.com/highlightjs/highlight.js.git + + + git://github.com/highlightjs/highlight.js.git + as detected from PackageJson property "repository.url" + + + https://highlightjs.org/ + as detected from PackageJson property "homepage" + + + https://github.com/highlightjs/highlight.js/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/highlight.js + + + + Jonathan Ong + mz + 2.7.0 + modernize node.js to current ECMAScript standards + + + MIT + + + pkg:npm/mz@2.7.0?vcs_url=normalize/mz + + + normalize/mz + as detected from PackageJson property "repository" + + + + node_modules/mz + + + + Kevin Beaty + any-promise + 1.3.0 + Resolve any installed ES6 compatible promise + + + MIT + + + pkg:npm/any-promise@1.3.0?vcs_url=https://github.com/kevinbeaty/any-promise + + + https://github.com/kevinbeaty/any-promise + as detected from PackageJson property "repository.url" + + + http://github.com/kevinbeaty/any-promise + as detected from PackageJson property "homepage" + + + https://github.com/kevinbeaty/any-promise/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/any-promise + + + + Jonathan Ong <me@jongleberry.com> (http://jongleberry.com) + thenify-all + 1.6.0 + Promisifies all the selected functions in an object + + + MIT + + + pkg:npm/thenify-all@1.6.0?vcs_url=thenables/thenify-all + + + thenables/thenify-all + as detected from PackageJson property "repository" + + + + node_modules/thenify-all + + + + Jonathan Ong <me@jongleberry.com> (http://jongleberry.com) + thenify + 3.3.1 + Promisify a callback-projxd function + + + MIT + + + pkg:npm/thenify@3.3.1?vcs_url=thenables/thenify + + + thenables/thenify + as detected from PackageJson property "repository" + + + + node_modules/thenify + + + + Ivan Nikulin <ifaaan@gmail.com> (https://github.com/inikulin) + parse5-htmlparser2-tree-adapter + 6.0.1 + htmlparser2 tree adapter for parse5. + + + MIT + + + pkg:npm/parse5-htmlparser2-tree-adapter@6.0.1?vcs_url=git://github.com/inikulin/parse5.git + + + git://github.com/inikulin/parse5.git + as detected from PackageJson property "repository.url" + + + https://github.com/inikulin/parse5 + as detected from PackageJson property "homepage" + + + + + Ivan Nikulin <ifaaan@gmail.com> (https://github.com/inikulin) + parse5 + 6.0.1 + HTML parser and serializer. + + + MIT + + + pkg:npm/parse5@6.0.1?vcs_url=git://github.com/inikulin/parse5.git + + + git://github.com/inikulin/parse5.git + as detected from PackageJson property "repository.url" + + + https://github.com/inikulin/parse5 + as detected from PackageJson property "homepage" + + + + node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5 + + + + + node_modules/parse5-htmlparser2-tree-adapter + + + + Ivan Nikulin <ifaaan@gmail.com> (https://github.com/inikulin) + parse5 + 5.1.1 + HTML parser and serializer. + + + MIT + + + pkg:npm/parse5@5.1.1?vcs_url=git://github.com/inikulin/parse5.git + + + git://github.com/inikulin/parse5.git + as detected from PackageJson property "repository.url" + + + https://github.com/inikulin/parse5 + as detected from PackageJson property "homepage" + + + + node_modules/parse5 + + + + yargs + 16.2.0 + yargs the modern, pirate-themed, successor to optimist. + + + MIT + + + pkg:npm/yargs@16.2.0?vcs_url=https://github.com/yargs/yargs.git + + + https://github.com/yargs/yargs.git + as detected from PackageJson property "repository.url" + + + https://yargs.js.org/ + as detected from PackageJson property "homepage" + + + + + Ben Coe <ben@npmjs.com> + cliui + 7.0.4 + easily create complex multi-column command-line-interfaces + + + ISC + + + pkg:npm/cliui@7.0.4?vcs_url=yargs/cliui + + + yargs/cliui + as detected from PackageJson property "repository" + + + + node_modules/yargs/node_modules/cliui + + + + Sindre Sorhus + wrap-ansi + 7.0.0 + Wordwrap a string with ANSI escape codes + + + MIT + + + pkg:npm/wrap-ansi@7.0.0?vcs_url=chalk/wrap-ansi + + + chalk/wrap-ansi + as detected from PackageJson property "repository" + + + + node_modules/yargs/node_modules/wrap-ansi + + + + Sindre Sorhus + ansi-styles + 4.3.0 + ANSI escape codes for styling strings in the terminal + + + MIT + + + pkg:npm/ansi-styles@4.3.0?vcs_url=chalk/ansi-styles + + + chalk/ansi-styles + as detected from PackageJson property "repository" + + + + node_modules/yargs/node_modules/ansi-styles + + + + Heather Arthur <fayearthur@gmail.com> + color-convert + 2.0.1 + Plain color conversion functions + + + MIT + + + pkg:npm/color-convert@2.0.1?vcs_url=Qix-/color-convert + + + Qix-/color-convert + as detected from PackageJson property "repository" + + + + node_modules/yargs/node_modules/color-convert + + + + DY <dfcreative@gmail.com> + color-name + 1.1.4 + A list of color names and its values + + + MIT + + + pkg:npm/color-name@1.1.4?vcs_url=git@github.com:colorjs/color-name.git + + + https://github.com/colorjs/color-name + as detected from PackageJson property "homepage" + + + https://github.com/colorjs/color-name/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/yargs/node_modules/color-name + + + + Ben Coe <bencoe@gmail.com> + y18n + 5.0.8 + the bare-bones internationalization library used by yargs + + + ISC + + + pkg:npm/y18n@5.0.8?vcs_url=yargs/y18n + + + yargs/y18n + as detected from PackageJson property "repository" + + + https://github.com/yargs/y18n + as detected from PackageJson property "homepage" + + + https://github.com/yargs/y18n/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/yargs/node_modules/y18n + + + + + node_modules/yargs + + + + Stefan Penner + get-caller-file + 2.0.5 + + + ISC + + + pkg:npm/get-caller-file@2.0.5?vcs_url=git+https://github.com/stefanpenner/get-caller-file.git + + + git+https://github.com/stefanpenner/get-caller-file.git + as detected from PackageJson property "repository.url" + + + https://github.com/stefanpenner/get-caller-file#readme + as detected from PackageJson property "homepage" + + + https://github.com/stefanpenner/get-caller-file/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/get-caller-file + + + + Ben Coe <ben@npmjs.com> + yargs-parser + 20.2.9 + the mighty option parser used by yargs + + + ISC + + + pkg:npm/yargs-parser@20.2.9?vcs_url=https://github.com/yargs/yargs-parser.git + + + https://github.com/yargs/yargs-parser.git + as detected from PackageJson property "repository.url" + + + + node_modules/yargs-parser + + + + Sindre Sorhus + clipboardy + 2.3.0 + Access the system clipboard (copy/paste) + + + MIT + + + pkg:npm/clipboardy@2.3.0?vcs_url=sindresorhus/clipboardy + + + sindresorhus/clipboardy + as detected from PackageJson property "repository" + + + + node_modules/clipboardy + + + + Feross Aboukhadijeh + arch + 2.2.0 + Better `os.arch()` for node and the browser -- detect OS architecture + + + MIT + + + pkg:npm/arch@2.2.0?vcs_url=git://github.com/feross/arch.git + + + git://github.com/feross/arch.git + as detected from PackageJson property "repository.url" + + + https://github.com/feross/arch + as detected from PackageJson property "homepage" + + + https://github.com/feross/arch/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/arch + + + + Sindre Sorhus + is-wsl + 2.2.0 + Check if the process is running inside Windows Subsystem for Linux (Bash on Windows) + + + MIT + + + pkg:npm/is-wsl@2.2.0?vcs_url=sindresorhus/is-wsl + + + sindresorhus/is-wsl + as detected from PackageJson property "repository" + + + + node_modules/is-wsl + + + + Sindre Sorhus + is-docker + 2.2.1 + Check if the process is running inside a Docker container + + + MIT + + + pkg:npm/is-docker@2.2.1?vcs_url=sindresorhus/is-docker + + + sindresorhus/is-docker + as detected from PackageJson property "repository" + + + + node_modules/is-docker + + + + Ben Coe <ben@npmjs.com> + cliui + 5.0.0 + easily create complex multi-column command-line-interfaces + + + ISC + + + pkg:npm/cliui@5.0.0?vcs_url=http://github.com/yargs/cliui.git + + + http://github.com/yargs/cliui.git + as detected from PackageJson property "repository.url" + + + + + Sindre Sorhus + string-width + 3.1.0 + Get the visual width of a string - the number of columns required to display it + + + MIT + + + pkg:npm/string-width@3.1.0?vcs_url=sindresorhus/string-width + + + sindresorhus/string-width + as detected from PackageJson property "repository" + + + + node_modules/cliui/node_modules/string-width + + + + Mathias Bynens + emoji-regex + 7.0.3 + A regular expression to match all Emoji-only symbols as per the Unicode Standard. + + + MIT + + + pkg:npm/emoji-regex@7.0.3?vcs_url=https://github.com/mathiasbynens/emoji-regex.git + + + https://github.com/mathiasbynens/emoji-regex.git + as detected from PackageJson property "repository.url" + + + https://mths.be/emoji-regex + as detected from PackageJson property "homepage" + + + https://github.com/mathiasbynens/emoji-regex/issues + as detected from PackageJson property "bugs" + + + + node_modules/cliui/node_modules/emoji-regex + + + + Sindre Sorhus + is-fullwidth-code-point + 2.0.0 + Check if the character represented by a given Unicode code point is fullwidth + + + MIT + + + pkg:npm/is-fullwidth-code-point@2.0.0?vcs_url=sindresorhus/is-fullwidth-code-point + + + sindresorhus/is-fullwidth-code-point + as detected from PackageJson property "repository" + + + + node_modules/cliui/node_modules/is-fullwidth-code-point + + + + Sindre Sorhus + strip-ansi + 5.2.0 + Strip ANSI escape codes from a string + + + MIT + + + pkg:npm/strip-ansi@5.2.0?vcs_url=chalk/strip-ansi + + + chalk/strip-ansi + as detected from PackageJson property "repository" + + + + node_modules/cliui/node_modules/strip-ansi + + + + Sindre Sorhus + ansi-regex + 4.1.1 + Regular expression for matching ANSI escape codes + + + MIT + + + pkg:npm/ansi-regex@4.1.1?vcs_url=chalk/ansi-regex + + + chalk/ansi-regex + as detected from PackageJson property "repository" + + + + node_modules/cliui/node_modules/ansi-regex + + + + + node_modules/cliui + + + + Sindre Sorhus + wrap-ansi + 5.1.0 + Wordwrap a string with ANSI escape codes + + + MIT + + + pkg:npm/wrap-ansi@5.1.0?vcs_url=chalk/wrap-ansi + + + chalk/wrap-ansi + as detected from PackageJson property "repository" + + + + + Sindre Sorhus + string-width + 3.1.0 + Get the visual width of a string - the number of columns required to display it + + + MIT + + + pkg:npm/string-width@3.1.0?vcs_url=sindresorhus/string-width + + + sindresorhus/string-width + as detected from PackageJson property "repository" + + + + node_modules/wrap-ansi/node_modules/string-width + + + + Mathias Bynens + emoji-regex + 7.0.3 + A regular expression to match all Emoji-only symbols as per the Unicode Standard. + + + MIT + + + pkg:npm/emoji-regex@7.0.3?vcs_url=https://github.com/mathiasbynens/emoji-regex.git + + + https://github.com/mathiasbynens/emoji-regex.git + as detected from PackageJson property "repository.url" + + + https://mths.be/emoji-regex + as detected from PackageJson property "homepage" + + + https://github.com/mathiasbynens/emoji-regex/issues + as detected from PackageJson property "bugs" + + + + node_modules/wrap-ansi/node_modules/emoji-regex + + + + Sindre Sorhus + is-fullwidth-code-point + 2.0.0 + Check if the character represented by a given Unicode code point is fullwidth + + + MIT + + + pkg:npm/is-fullwidth-code-point@2.0.0?vcs_url=sindresorhus/is-fullwidth-code-point + + + sindresorhus/is-fullwidth-code-point + as detected from PackageJson property "repository" + + + + node_modules/wrap-ansi/node_modules/is-fullwidth-code-point + + + + Sindre Sorhus + strip-ansi + 5.2.0 + Strip ANSI escape codes from a string + + + MIT + + + pkg:npm/strip-ansi@5.2.0?vcs_url=chalk/strip-ansi + + + chalk/strip-ansi + as detected from PackageJson property "repository" + + + + node_modules/wrap-ansi/node_modules/strip-ansi + + + + Sindre Sorhus + ansi-regex + 4.1.1 + Regular expression for matching ANSI escape codes + + + MIT + + + pkg:npm/ansi-regex@4.1.1?vcs_url=chalk/ansi-regex + + + chalk/ansi-regex + as detected from PackageJson property "repository" + + + + node_modules/wrap-ansi/node_modules/ansi-regex + + + + + node_modules/wrap-ansi + + + + Len Boyette + copy-webpack-plugin + 4.6.0 + Copy files && directories with webpack + + + MIT + + + pkg:npm/copy-webpack-plugin@4.6.0?vcs_url=https://github.com/webpack-contrib/copy-webpack-plugin.git + + + https://github.com/webpack-contrib/copy-webpack-plugin.git + as detected from PackageJson property "repository" + + + https://github.com/webpack-contrib/copy-webpack-plugin + as detected from PackageJson property "homepage" + + + https://github.com/webpack-contrib/copy-webpack-plugin/issues + as detected from PackageJson property "bugs" + + + + + James Talmage + find-cache-dir + 1.0.0 + My well-made module + + + MIT + + + pkg:npm/find-cache-dir@1.0.0?vcs_url=avajs/find-cache-dir + + + avajs/find-cache-dir + as detected from PackageJson property "repository" + + + + node_modules/copy-webpack-plugin/node_modules/find-cache-dir + + + + Sindre Sorhus + make-dir + 1.3.0 + Make a directory and its parents if needed - Think `mkdir -p` + + + MIT + + + pkg:npm/make-dir@1.3.0?vcs_url=sindresorhus/make-dir + + + sindresorhus/make-dir + as detected from PackageJson property "repository" + + + + node_modules/copy-webpack-plugin/node_modules/make-dir + + + + Sindre Sorhus + pify + 3.0.0 + Promisify a callback-style function + + + MIT + + + pkg:npm/pify@3.0.0?vcs_url=sindresorhus/pify + + + sindresorhus/pify + as detected from PackageJson property "repository" + + + + node_modules/copy-webpack-plugin/node_modules/pify + + + + Sindre Sorhus + pkg-dir + 2.0.0 + Find the root directory of a Node.js project or npm package + + + MIT + + + pkg:npm/pkg-dir@2.0.0?vcs_url=sindresorhus/pkg-dir + + + sindresorhus/pkg-dir + as detected from PackageJson property "repository" + + + + node_modules/copy-webpack-plugin/node_modules/pkg-dir + + + + Sindre Sorhus + globby + 7.1.1 + Extends `glob` with support for multiple patterns and exposes a Promise API + + + MIT + + + pkg:npm/globby@7.1.1?vcs_url=sindresorhus/globby + + + sindresorhus/globby + as detected from PackageJson property "repository" + + + + node_modules/copy-webpack-plugin/node_modules/globby + + + + kael + ignore + 3.3.10 + Ignore is a manager and filter for .gitignore rules. + + + MIT + + + pkg:npm/ignore@3.3.10?vcs_url=git@github.com:kaelzhang/node-ignore.git + + + https://github.com/kaelzhang/node-ignore/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/copy-webpack-plugin/node_modules/ignore + + + + Sindre Sorhus + slash + 1.0.0 + Convert Windows backslash paths to slash paths + + + MIT + + + pkg:npm/slash@1.0.0?vcs_url=sindresorhus/slash + + + sindresorhus/slash + as detected from PackageJson property "repository" + + + + node_modules/copy-webpack-plugin/node_modules/slash + + + + Tobias Koppers @sokra + loader-utils + 1.4.0 + utils for webpack loaders + + + MIT + + + pkg:npm/loader-utils@1.4.0?vcs_url=https://github.com/webpack/loader-utils.git + + + https://github.com/webpack/loader-utils.git + as detected from PackageJson property "repository.url" + + + + node_modules/copy-webpack-plugin/node_modules/loader-utils + + + + Aseem Kishore <aseem.kishore@gmail.com> + json5 + 1.0.1 + JSON for humans. + + + MIT + + + pkg:npm/json5@1.0.1?vcs_url=git+https://github.com/json5/json5.git + + + git+https://github.com/json5/json5.git + as detected from PackageJson property "repository.url" + + + http://json5.org/ + as detected from PackageJson property "homepage" + + + https://github.com/json5/json5/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/copy-webpack-plugin/node_modules/json5 + + + + + node_modules/copy-webpack-plugin + + + + Kat Marchan + cacache + 10.0.4 + Fast, fault-tolerant, cross-platform, disk-projxd, data-agnostic, content-addressable cache. + + + ISC + + + pkg:npm/cacache@10.0.4?vcs_url=https://github.com/zkat/cacache + + + https://github.com/zkat/cacache + as detected from PackageJson property "repository" + + + + + Isaac Z. Schlueter <i@izs.me> + lru-cache + 4.1.5 + A cache object that deletes the least-recently-used items. + + + ISC + + + pkg:npm/lru-cache@4.1.5?vcs_url=git://github.com/isaacs/node-lru-cache.git + + + git://github.com/isaacs/node-lru-cache.git + as detected from PackageJson property "repository" + + + + node_modules/cacache/node_modules/lru-cache + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + yallist + 2.1.2 + Yet Another Linked List + + + ISC + + + pkg:npm/yallist@2.1.2?vcs_url=git+https://github.com/isaacs/yallist.git + + + git+https://github.com/isaacs/yallist.git + as detected from PackageJson property "repository.url" + + + + node_modules/cacache/node_modules/yallist + + + + Kat Marchan + ssri + 5.3.0 + Standard Subresource Integrity library -- parses, serializes, generates, and verifies integrity metadata according to the SRI spec. + + + ISC + + + pkg:npm/ssri@5.3.0?vcs_url=https://github.com/zkat/ssri + + + https://github.com/zkat/ssri + as detected from PackageJson property "repository" + + + + node_modules/cacache/node_modules/ssri + + + + + node_modules/cacache + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + chownr + 1.1.4 + like `chown -R` + + + ISC + + + pkg:npm/chownr@1.1.4?vcs_url=git://github.com/isaacs/chownr.git + + + git://github.com/isaacs/chownr.git + as detected from PackageJson property "repository.url" + + + + node_modules/chownr + + + + max ogden + mississippi + 2.0.0 + a collection of useful streams + + + BSD-2-Clause + + + pkg:npm/mississippi@2.0.0?vcs_url=git+https://github.com/maxogden/mississippi.git + + + git+https://github.com/maxogden/mississippi.git + as detected from PackageJson property "repository.url" + + + https://github.com/maxogden/mississippi#readme + as detected from PackageJson property "homepage" + + + https://github.com/maxogden/mississippi/issues + as detected from PackageJson property "bugs.url" + + + + + Mathias Buus Madsen <mathiasbuus@gmail.com> + pump + 2.0.1 + pipe streams together and close all of them if one of them closes + + + MIT + + + pkg:npm/pump@2.0.1?vcs_url=git://github.com/mafintosh/pump.git + + + git://github.com/mafintosh/pump.git + as detected from PackageJson property "repository" + + + + node_modules/mississippi/node_modules/pump + + + + + node_modules/mississippi + + + + Mathias Buus + duplexify + 3.7.1 + Turn a writable and readable stream into a streams2 duplex stream with support for async initialization and streams1/streams2 input + + + MIT + + + pkg:npm/duplexify@3.7.1?vcs_url=git://github.com/mafintosh/duplexify + + + git://github.com/mafintosh/duplexify + as detected from PackageJson property "repository.url" + + + https://github.com/mafintosh/duplexify + as detected from PackageJson property "homepage" + + + https://github.com/mafintosh/duplexify/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/duplexify + + + + Mathias Buus (@mafintosh) + stream-shift + 1.0.1 + Returns the next buffer/object in a stream's readable queue + + + MIT + + + pkg:npm/stream-shift@1.0.1?vcs_url=https://github.com/mafintosh/stream-shift.git + + + https://github.com/mafintosh/stream-shift.git + as detected from PackageJson property "repository.url" + + + https://github.com/mafintosh/stream-shift + as detected from PackageJson property "homepage" + + + https://github.com/mafintosh/stream-shift/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/stream-shift + + + + Mathias Buus (@mafintosh) + flush-write-stream + 1.1.1 + A write stream constructor that supports a flush function that is called before finish is emitted + + + MIT + + + pkg:npm/flush-write-stream@1.1.1?vcs_url=https://github.com/mafintosh/flush-write-stream.git + + + https://github.com/mafintosh/flush-write-stream.git + as detected from PackageJson property "repository.url" + + + https://github.com/mafintosh/flush-write-stream + as detected from PackageJson property "homepage" + + + https://github.com/mafintosh/flush-write-stream/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/flush-write-stream + + + + Hugh Kennedy <hughskennedy@gmail.com> (http://hughsk.io/) + from2 + 2.3.0 + Convenience wrapper for ReadableStream, with an API lifted from "from" and "through2" + + + MIT + + + pkg:npm/from2@2.3.0?vcs_url=git://github.com/hughsk/from2 + + + git://github.com/hughsk/from2 + as detected from PackageJson property "repository.url" + + + https://github.com/hughsk/from2 + as detected from PackageJson property "homepage" + + + https://github.com/hughsk/from2/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/from2 + + + + Mathias Buus Madsen <mathiasbuus@gmail.com> + parallel-transform + 1.2.0 + Transform stream that allows you to run your transforms in parallel without changing the order + + + MIT + + + pkg:npm/parallel-transform@1.2.0?vcs_url=git://github.com/mafintosh/parallel-transform + + + git://github.com/mafintosh/parallel-transform + as detected from PackageJson property "repository" + + + + node_modules/parallel-transform + + + + Mathias Buus Madsen <mathiasbuus@gmail.com> + cyclist + 1.0.1 + Cyclist is an efficient cyclic list implemention. + + + MIT + + + pkg:npm/cyclist@1.0.1?vcs_url=git://github.com/mafintosh/cyclist + + + git://github.com/mafintosh/cyclist + as detected from PackageJson property "repository.url" + + + https://github.com/mafintosh/cyclist + as detected from PackageJson property "homepage" + + + https://github.com/mafintosh/cyclist/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/cyclist + + + + Mathias Buus + pumpify + 1.5.1 + Combine an array of streams into a single duplex stream using pump and duplexify + + + MIT + + + pkg:npm/pumpify@1.5.1?vcs_url=git://github.com/mafintosh/pumpify + + + git://github.com/mafintosh/pumpify + as detected from PackageJson property "repository.url" + + + https://github.com/mafintosh/pumpify + as detected from PackageJson property "homepage" + + + https://github.com/mafintosh/pumpify/issues + as detected from PackageJson property "bugs.url" + + + + + Mathias Buus Madsen <mathiasbuus@gmail.com> + pump + 2.0.1 + pipe streams together and close all of them if one of them closes + + + MIT + + + pkg:npm/pump@2.0.1?vcs_url=git://github.com/mafintosh/pump.git + + + git://github.com/mafintosh/pump.git + as detected from PackageJson property "repository" + + + + node_modules/pumpify/node_modules/pump + + + + + node_modules/pumpify + + + + Mathias Buus (@mafintosh) + stream-each + 1.2.3 + Iterate all the data in a stream + + + MIT + + + pkg:npm/stream-each@1.2.3?vcs_url=https://github.com/mafintosh/stream-each.git + + + https://github.com/mafintosh/stream-each.git + as detected from PackageJson property "repository.url" + + + https://github.com/mafintosh/stream-each + as detected from PackageJson property "homepage" + + + https://github.com/mafintosh/stream-each/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/stream-each + + + + Rod Vagg <r@va.gg> (https://github.com/rvagg) + through2 + 2.0.5 + A tiny wrapper around Node streams2 Transform to avoid explicit subclassing noise + + + MIT + + + pkg:npm/through2@2.0.5?vcs_url=https://github.com/rvagg/through2.git + + + https://github.com/rvagg/through2.git + as detected from PackageJson property "repository.url" + + + + node_modules/through2 + + + + Rebecca Turner <me@re-becca.org> (http://re-becca.org/) + move-concurrently + 1.0.1 + 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. + + + ISC + + + pkg:npm/move-concurrently@1.0.1?vcs_url=git+https://github.com/npm/move-concurrently.git + + + git+https://github.com/npm/move-concurrently.git + as detected from PackageJson property "repository.url" + + + https://www.npmjs.com/package/move-concurrently + as detected from PackageJson property "homepage" + + + https://github.com/npm/move-concurrently/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/move-concurrently + + + + Rebecca Turner <me@re-becca.org> + aproba + 1.2.0 + A ridiculously light-weight argument validator (now browser friendly) + + + ISC + + + pkg:npm/aproba@1.2.0?vcs_url=https://github.com/iarna/aproba + + + https://github.com/iarna/aproba + as detected from PackageJson property "repository.url" + + + https://github.com/iarna/aproba + as detected from PackageJson property "homepage" + + + https://github.com/iarna/aproba/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/aproba + + + + Rebecca Turner <me@re-becca.org> (http://re-becca.org/) + copy-concurrently + 1.0.5 + Promises of copies of files, directories and symlinks, with concurrency controls and win32 junction fallback. + + + ISC + + + pkg:npm/copy-concurrently@1.0.5?vcs_url=git+https://github.com/npm/copy-concurrently.git + + + git+https://github.com/npm/copy-concurrently.git + as detected from PackageJson property "repository.url" + + + https://www.npmjs.com/package/copy-concurrently + as detected from PackageJson property "homepage" + + + https://github.com/npm/copy-concurrently/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/copy-concurrently + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + fs-write-stream-atomic + 1.0.10 + Like `fs.createWriteStream(...)`, but atomic. + + + ISC + + + pkg:npm/fs-write-stream-atomic@1.0.10?vcs_url=https://github.com/npm/fs-write-stream-atomic + + + https://github.com/npm/fs-write-stream-atomic + as detected from PackageJson property "repository.url" + + + https://github.com/npm/fs-write-stream-atomic + as detected from PackageJson property "homepage" + + + https://github.com/npm/fs-write-stream-atomic/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/fs-write-stream-atomic + + + + Nadav Ivgi + iferr + 0.1.5 + Higher-order functions for easier error handling + + + MIT + + + pkg:npm/iferr@0.1.5?vcs_url=https://github.com/shesek/iferr + + + https://github.com/shesek/iferr + as detected from PackageJson property "repository.url" + + + https://github.com/shesek/iferr + as detected from PackageJson property "homepage" + + + https://github.com/shesek/iferr/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/iferr + + + + Rebecca Turner <me@re-becca.org> (http://re-becca.org/) + run-queue + 1.0.3 + A promise projxd, dynamic priority queue runner, with concurrency limiting. + + + ISC + + + pkg:npm/run-queue@1.0.3?vcs_url=git+https://github.com/iarna/run-queue.git + + + git+https://github.com/iarna/run-queue.git + as detected from PackageJson property "repository.url" + + + https://npmjs.com/package/run-queue + as detected from PackageJson property "homepage" + + + https://github.com/iarna/run-queue/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/run-queue + + + + Rebecca Turner <me@re-becca.org> (http://re-becca.org/) + promise-inflight + 1.0.1 + One promise for multiple requests in flight to avoid async duplication + + + ISC + + + pkg:npm/promise-inflight@1.0.1?vcs_url=git+https://github.com/iarna/promise-inflight.git + + + git+https://github.com/iarna/promise-inflight.git + as detected from PackageJson property "repository.url" + + + https://github.com/iarna/promise-inflight#readme + as detected from PackageJson property "homepage" + + + https://github.com/iarna/promise-inflight/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/promise-inflight + + + + Rebecca Turner <me@re-becca.org> (http://re-becca.org/) + unique-filename + 1.1.1 + Generate a unique filename for use in temporary directories or caches. + + + ISC + + + pkg:npm/unique-filename@1.1.1?vcs_url=https://github.com/iarna/unique-filename.git + + + https://github.com/iarna/unique-filename.git + as detected from PackageJson property "repository.url" + + + https://github.com/iarna/unique-filename + as detected from PackageJson property "homepage" + + + https://github.com/iarna/unique-filename/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/unique-filename + + + + Rebecca Turner <me@re-becca.org> (http://re-becca.org) + unique-slug + 2.0.2 + Generate a unique character string suitible for use in files and URLs. + + + ISC + + + pkg:npm/unique-slug@2.0.2?vcs_url=git://github.com/iarna/unique-slug.git + + + git://github.com/iarna/unique-slug.git + as detected from PackageJson property "repository.url" + + + + node_modules/unique-slug + + + + Ben Coe <ben@npmjs.com> + y18n + 4.0.3 + the bare-bones internationalization library used by yargs + + + ISC + + + pkg:npm/y18n@4.0.3?vcs_url=git@github.com:yargs/y18n.git + + + https://github.com/yargs/y18n + as detected from PackageJson property "homepage" + + + https://github.com/yargs/y18n/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/y18n + + + + Sindre Sorhus + p-limit + 1.3.0 + Run multiple promise-returning & async functions with limited concurrency + + + MIT + + + pkg:npm/p-limit@1.3.0?vcs_url=sindresorhus/p-limit + + + sindresorhus/p-limit + as detected from PackageJson property "repository" + + + + node_modules/p-limit + + + + Sindre Sorhus + p-try + 1.0.0 + `Promise#try()` ponyfill - Starts a promise chain + + + MIT + + + pkg:npm/p-try@1.0.0?vcs_url=sindresorhus/p-try + + + sindresorhus/p-try + as detected from PackageJson property "repository" + + + + node_modules/p-try + + + + Eric Ferraiuolo <edf@ericf.me> + serialize-javascript + 1.9.1 + Serialize JavaScript to a superset of JSON that includes regular expressions and functions. + + + BSD-3-Clause + + + pkg:npm/serialize-javascript@1.9.1?vcs_url=git+https://github.com/yahoo/serialize-javascript.git + + + git+https://github.com/yahoo/serialize-javascript.git + as detected from PackageJson property "repository.url" + + + https://github.com/yahoo/serialize-javascript + as detected from PackageJson property "homepage" + + + https://github.com/yahoo/serialize-javascript/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/serialize-javascript + + + + Tobias Koppers @sokra + css-loader + 1.0.1 + css loader module for webpack + + + MIT + + + pkg:npm/css-loader@1.0.1?vcs_url=https://github.com/webpack-contrib/css-loader.git + + + https://github.com/webpack-contrib/css-loader.git + as detected from PackageJson property "repository" + + + https://github.com/webpack-contrib/css-loader + as detected from PackageJson property "homepage" + + + https://github.com/webpack-contrib/css-loader/issues + as detected from PackageJson property "bugs" + + + + + Tobias Koppers @sokra + loader-utils + 1.4.0 + utils for webpack loaders + + + MIT + + + pkg:npm/loader-utils@1.4.0?vcs_url=https://github.com/webpack/loader-utils.git + + + https://github.com/webpack/loader-utils.git + as detected from PackageJson property "repository.url" + + + + node_modules/css-loader/node_modules/loader-utils + + + + Aseem Kishore <aseem.kishore@gmail.com> + json5 + 1.0.1 + JSON for humans. + + + MIT + + + pkg:npm/json5@1.0.1?vcs_url=git+https://github.com/json5/json5.git + + + git+https://github.com/json5/json5.git + as detected from PackageJson property "repository.url" + + + http://json5.org/ + as detected from PackageJson property "homepage" + + + https://github.com/json5/json5/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/css-loader/node_modules/json5 + + + + Bogdan Chadkin <trysound@yandex.ru> + postcss-value-parser + 3.3.1 + Transforms css values and at-rule params into the tree + + + MIT + + + pkg:npm/postcss-value-parser@3.3.1?vcs_url=https://github.com/TrySound/postcss-value-parser.git + + + https://github.com/TrySound/postcss-value-parser.git + as detected from PackageJson property "repository.url" + + + https://github.com/TrySound/postcss-value-parser + as detected from PackageJson property "homepage" + + + https://github.com/TrySound/postcss-value-parser/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/css-loader/node_modules/postcss-value-parser + + + + Andrey Sitnik <andrey@sitnik.ru> + postcss + 6.0.23 + Tool for transforming styles with JS plugins + + + MIT + + + pkg:npm/postcss@6.0.23?vcs_url=postcss/postcss + + + postcss/postcss + as detected from PackageJson property "repository" + + + https://postcss.org/ + as detected from PackageJson property "homepage" + + + + node_modules/css-loader/node_modules/postcss + + + + + node_modules/css-loader + + + + Tobias Koppers @sokra + css-selector-tokenizer + 0.7.3 + Parses and stringifies CSS selectors + + + MIT + + + pkg:npm/css-selector-tokenizer@0.7.3?vcs_url=https://github.com/css-modules/css-selector-tokenizer.git + + + https://github.com/css-modules/css-selector-tokenizer.git + as detected from PackageJson property "repository.url" + + + https://github.com/css-modules/css-selector-tokenizer + as detected from PackageJson property "homepage" + + + https://github.com/css-modules/css-selector-tokenizer/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/css-selector-tokenizer + + + + Tobias Koppers @sokra + fastparse + 1.1.2 + A very simple and stupid parser, projxd on a statemachine and regular expressions. + + + MIT + + + pkg:npm/fastparse@1.1.2?vcs_url=https://github.com/webpack/fastparse.git + + + https://github.com/webpack/fastparse.git + as detected from PackageJson property "repository.url" + + + https://github.com/webpack/fastparse + as detected from PackageJson property "homepage" + + + https://github.com/webpack/fastparse/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/fastparse + + + + Glen Maddern + icss-utils + 2.1.0 + ICSS utils for postcss ast + + + ISC + + + pkg:npm/icss-utils@2.1.0?vcs_url=git+https://github.com/css-modules/icss-utils.git + + + git+https://github.com/css-modules/icss-utils.git + as detected from PackageJson property "repository.url" + + + https://github.com/css-modules/icss-utils#readme + as detected from PackageJson property "homepage" + + + https://github.com/css-modules/icss-utils/issues + as detected from PackageJson property "bugs.url" + + + + + Andrey Sitnik <andrey@sitnik.ru> + postcss + 6.0.23 + Tool for transforming styles with JS plugins + + + MIT + + + pkg:npm/postcss@6.0.23?vcs_url=postcss/postcss + + + postcss/postcss + as detected from PackageJson property "repository" + + + https://postcss.org/ + as detected from PackageJson property "homepage" + + + + node_modules/icss-utils/node_modules/postcss + + + + + node_modules/icss-utils + + + + Glen Maddern + postcss-modules-extract-imports + 1.2.1 + A CSS Modules transform to extract local aliases for inline imports + + + ISC + + + pkg:npm/postcss-modules-extract-imports@1.2.1?vcs_url=https://github.com/css-modules/postcss-modules-extract-imports.git + + + https://github.com/css-modules/postcss-modules-extract-imports.git + as detected from PackageJson property "repository.url" + + + https://github.com/css-modules/postcss-modules-extract-imports + as detected from PackageJson property "homepage" + + + https://github.com/css-modules/postcss-modules-extract-imports/issues + as detected from PackageJson property "bugs.url" + + + + + Andrey Sitnik <andrey@sitnik.ru> + postcss + 6.0.23 + Tool for transforming styles with JS plugins + + + MIT + + + pkg:npm/postcss@6.0.23?vcs_url=postcss/postcss + + + postcss/postcss + as detected from PackageJson property "repository" + + + https://postcss.org/ + as detected from PackageJson property "homepage" + + + + node_modules/postcss-modules-extract-imports/node_modules/postcss + + + + + node_modules/postcss-modules-extract-imports + + + + Mark Dalgleish + postcss-modules-local-by-default + 1.2.0 + A CSS Modules transform to make local scope the default + + + MIT + + + pkg:npm/postcss-modules-local-by-default@1.2.0?vcs_url=https://github.com/css-modules/postcss-modules-local-by-default.git + + + https://github.com/css-modules/postcss-modules-local-by-default.git + as detected from PackageJson property "repository.url" + + + + + Andrey Sitnik <andrey@sitnik.ru> + postcss + 6.0.23 + Tool for transforming styles with JS plugins + + + MIT + + + pkg:npm/postcss@6.0.23?vcs_url=postcss/postcss + + + postcss/postcss + as detected from PackageJson property "repository" + + + https://postcss.org/ + as detected from PackageJson property "homepage" + + + + node_modules/postcss-modules-local-by-default/node_modules/postcss + + + + + node_modules/postcss-modules-local-by-default + + + + Glen Maddern + postcss-modules-scope + 1.1.0 + A CSS Modules transform to extract export statements from local-scope classes + + + ISC + + + pkg:npm/postcss-modules-scope@1.1.0?vcs_url=https://github.com/css-modules/postcss-modules-scope.git + + + https://github.com/css-modules/postcss-modules-scope.git + as detected from PackageJson property "repository.url" + + + https://github.com/css-modules/postcss-modules-scope + as detected from PackageJson property "homepage" + + + https://github.com/css-modules/postcss-modules-scope/issues + as detected from PackageJson property "bugs.url" + + + + + Andrey Sitnik <andrey@sitnik.ru> + postcss + 6.0.23 + Tool for transforming styles with JS plugins + + + MIT + + + pkg:npm/postcss@6.0.23?vcs_url=postcss/postcss + + + postcss/postcss + as detected from PackageJson property "repository" + + + https://postcss.org/ + as detected from PackageJson property "homepage" + + + + node_modules/postcss-modules-scope/node_modules/postcss + + + + + node_modules/postcss-modules-scope + + + + Glen Maddern + postcss-modules-values + 1.3.0 + PostCSS plugin for CSS Modules to pass arbitrary values between your module files + + + ISC + + + pkg:npm/postcss-modules-values@1.3.0?vcs_url=git+https://github.com/css-modules/postcss-modules-values.git + + + git+https://github.com/css-modules/postcss-modules-values.git + as detected from PackageJson property "repository.url" + + + https://github.com/css-modules/postcss-modules-values#readme + as detected from PackageJson property "homepage" + + + https://github.com/css-modules/postcss-modules-values/issues + as detected from PackageJson property "bugs.url" + + + + + Andrey Sitnik <andrey@sitnik.ru> + postcss + 6.0.23 + Tool for transforming styles with JS plugins + + + MIT + + + pkg:npm/postcss@6.0.23?vcs_url=postcss/postcss + + + postcss/postcss + as detected from PackageJson property "repository" + + + https://postcss.org/ + as detected from PackageJson property "homepage" + + + + node_modules/postcss-modules-values/node_modules/postcss + + + + + node_modules/postcss-modules-values + + + + Glen Maddern + icss-replace-symbols + 1.1.0 + Replacing symbols during the linking phase of ICSS + + + ISC + + + pkg:npm/icss-replace-symbols@1.1.0?vcs_url=git+https://github.com/css-modules/icss-replace-symbols.git + + + git+https://github.com/css-modules/icss-replace-symbols.git + as detected from PackageJson property "repository.url" + + + https://github.com/css-modules/icss-replace-symbols#readme + as detected from PackageJson property "homepage" + + + https://github.com/css-modules/icss-replace-symbols/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/icss-replace-symbols + + + + Tobias Koppers @sokra + source-list-map + 2.0.1 + Fast line to line SourceMap generator. + + + MIT + + + pkg:npm/source-list-map@2.0.1?vcs_url=https://github.com/webpack/source-list-map.git + + + https://github.com/webpack/source-list-map.git + as detected from PackageJson property "repository.url" + + + https://github.com/webpack/source-list-map + as detected from PackageJson property "homepage" + + + https://github.com/webpack/source-list-map/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/source-list-map + + + + David Clark <david.dave.clark@gmail.com> + cosmiconfig + 5.2.1 + Find and load configuration from a package.json property, rc file, or CommonJS module + + + MIT + + + pkg:npm/cosmiconfig@5.2.1?vcs_url=git+https://github.com/davidtheclark/cosmiconfig.git + + + git+https://github.com/davidtheclark/cosmiconfig.git + as detected from PackageJson property "repository.url" + + + https://github.com/davidtheclark/cosmiconfig#readme + as detected from PackageJson property "homepage" + + + https://github.com/davidtheclark/cosmiconfig/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/cosmiconfig + + + + Sindre Sorhus + import-fresh + 2.0.0 + Import a module while bypassing the cache + + + MIT + + + pkg:npm/import-fresh@2.0.0?vcs_url=sindresorhus/import-fresh + + + sindresorhus/import-fresh + as detected from PackageJson property "repository" + + + + node_modules/import-fresh + + + + Sindre Sorhus + caller-path + 2.0.0 + Get the path of the caller function + + + MIT + + + pkg:npm/caller-path@2.0.0?vcs_url=sindresorhus/caller-path + + + sindresorhus/caller-path + as detected from PackageJson property "repository" + + + + node_modules/caller-path + + + + Sindre Sorhus + caller-callsite + 2.0.0 + Get the callsite of the caller function + + + MIT + + + pkg:npm/caller-callsite@2.0.0?vcs_url=sindresorhus/caller-callsite + + + sindresorhus/caller-callsite + as detected from PackageJson property "repository" + + + + node_modules/caller-callsite + + + + Jon Schlinkert (https://github.com/jonschlinkert) + is-directory + 0.3.1 + Returns true if a filepath exists on the file system and it's directory. + + + MIT + + + pkg:npm/is-directory@0.3.1?vcs_url=jonschlinkert/is-directory + + + jonschlinkert/is-directory + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-directory + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-directory/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/is-directory + + + + Sindre Sorhus + parse-json + 4.0.0 + Parse JSON with more helpful errors + + + MIT + + + pkg:npm/parse-json@4.0.0?vcs_url=sindresorhus/parse-json + + + sindresorhus/parse-json + as detected from PackageJson property "repository" + + + + node_modules/parse-json + + + + error-ex + 1.3.2 + Easy error subclassing and stack customization + + + MIT + + + pkg:npm/error-ex@1.3.2?vcs_url=qix-/node-error-ex + + + qix-/node-error-ex + as detected from PackageJson property "repository" + + + + node_modules/error-ex + + + + Adam Miller + current-script-polyfill + 1.0.0 + An exceptionally slim (~310kb minified) polyfill for document.currentScript in IE9+ + + + MIT + + + pkg:npm/current-script-polyfill@1.0.0?vcs_url=https://github.com/epicmiller/currentScript-polyfill.git + + + https://github.com/epicmiller/currentScript-polyfill.git + as detected from PackageJson property "repository.url" + + + + node_modules/current-script-polyfill + + + + silverwind <me@silverwind.io> + default-gateway + 5.0.5 + Get the default network gateway, cross-platform. + + + BSD-2-Clause + + + pkg:npm/default-gateway@5.0.5?vcs_url=silverwind/default-gateway + + + silverwind/default-gateway + as detected from PackageJson property "repository" + + + + + Sindre Sorhus + execa + 3.4.0 + Process execution for humans + + + MIT + + + pkg:npm/execa@3.4.0?vcs_url=sindresorhus/execa + + + sindresorhus/execa + as detected from PackageJson property "repository" + + + + node_modules/default-gateway/node_modules/execa + + + + Andre Cruz <andre@moxy.studio> + cross-spawn + 7.0.3 + Cross platform child_process#spawn and child_process#spawnSync + + + MIT + + + pkg:npm/cross-spawn@7.0.3?vcs_url=git@github.com:moxystudio/node-cross-spawn.git + + + https://github.com/moxystudio/node-cross-spawn + as detected from PackageJson property "homepage" + + + + node_modules/default-gateway/node_modules/cross-spawn + + + + Sindre Sorhus + path-key + 3.1.1 + Get the PATH environment variable key cross-platform + + + MIT + + + pkg:npm/path-key@3.1.1?vcs_url=sindresorhus/path-key + + + sindresorhus/path-key + as detected from PackageJson property "repository" + + + + node_modules/default-gateway/node_modules/path-key + + + + Kevin Martensson + shebang-command + 2.0.0 + Get the command from a shebang + + + MIT + + + pkg:npm/shebang-command@2.0.0?vcs_url=kevva/shebang-command + + + kevva/shebang-command + as detected from PackageJson property "repository" + + + + node_modules/default-gateway/node_modules/shebang-command + + + + Sindre Sorhus + shebang-regex + 3.0.0 + Regular expression for matching a shebang line + + + MIT + + + pkg:npm/shebang-regex@3.0.0?vcs_url=sindresorhus/shebang-regex + + + sindresorhus/shebang-regex + as detected from PackageJson property "repository" + + + + node_modules/default-gateway/node_modules/shebang-regex + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me) + which + 2.0.2 + Like which(1) unix command. Find the first instance of an executable in the PATH. + + + ISC + + + pkg:npm/which@2.0.2?vcs_url=git://github.com/isaacs/node-which.git + + + git://github.com/isaacs/node-which.git + as detected from PackageJson property "repository.url" + + + + node_modules/default-gateway/node_modules/which + + + + Sindre Sorhus + get-stream + 5.2.0 + Get a stream as a string, buffer, or array + + + MIT + + + pkg:npm/get-stream@5.2.0?vcs_url=sindresorhus/get-stream + + + sindresorhus/get-stream + as detected from PackageJson property "repository" + + + + node_modules/default-gateway/node_modules/get-stream + + + + Sindre Sorhus + is-stream + 2.0.1 + Check if something is a Node.js stream + + + MIT + + + pkg:npm/is-stream@2.0.1?vcs_url=sindresorhus/is-stream + + + sindresorhus/is-stream + as detected from PackageJson property "repository" + + + + node_modules/default-gateway/node_modules/is-stream + + + + Stephen Sugden <me@stephensugden.com> + merge-stream + 2.0.0 + Create a stream that emits events from multiple other streams + + + MIT + + + pkg:npm/merge-stream@2.0.0?vcs_url=grncdr/merge-stream + + + grncdr/merge-stream + as detected from PackageJson property "repository" + + + + node_modules/default-gateway/node_modules/merge-stream + + + + Sindre Sorhus + npm-run-path + 4.0.1 + Get your PATH prepended with locally installed binaries + + + MIT + + + pkg:npm/npm-run-path@4.0.1?vcs_url=sindresorhus/npm-run-path + + + sindresorhus/npm-run-path + as detected from PackageJson property "repository" + + + + node_modules/default-gateway/node_modules/npm-run-path + + + + Sindre Sorhus + onetime + 5.1.2 + Ensure a function is only called once + + + MIT + + + pkg:npm/onetime@5.1.2?vcs_url=sindresorhus/onetime + + + sindresorhus/onetime + as detected from PackageJson property "repository" + + + + node_modules/default-gateway/node_modules/onetime + + + + Sindre Sorhus + mimic-fn + 2.1.0 + Make a function mimic another one + + + MIT + + + pkg:npm/mimic-fn@2.1.0?vcs_url=sindresorhus/mimic-fn + + + sindresorhus/mimic-fn + as detected from PackageJson property "repository" + + + + node_modules/default-gateway/node_modules/mimic-fn + + + + Sindre Sorhus + p-finally + 2.0.1 + `Promise#finally()` ponyfill - Invoked when the promise is settled regardless of outcome + + + MIT + + + pkg:npm/p-finally@2.0.1?vcs_url=sindresorhus/p-finally + + + sindresorhus/p-finally + as detected from PackageJson property "repository" + + + + node_modules/default-gateway/node_modules/p-finally + + + + + node_modules/default-gateway + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + isexe + 2.0.0 + Minimal module to check if a file is executable. + + + ISC + + + pkg:npm/isexe@2.0.0?vcs_url=git+https://github.com/isaacs/isexe.git + + + git+https://github.com/isaacs/isexe.git + as detected from PackageJson property "repository.url" + + + https://github.com/isaacs/isexe#readme + as detected from PackageJson property "homepage" + + + https://github.com/isaacs/isexe/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/isexe + + + + ehmicky <ehmicky@gmail.com> (https://github.com/ehmicky) + human-signals + 1.1.1 + Human-friendly process signals + + + Apache-2.0 + + + pkg:npm/human-signals@1.1.1?vcs_url=ehmicky/human-signals + + + ehmicky/human-signals + as detected from PackageJson property "repository" + + + https://git.io/JeluP + as detected from PackageJson property "homepage" + + + https://github.com/ehmicky/human-signals/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/human-signals + + + + Sindre Sorhus + strip-final-newline + 2.0.0 + Strip the final newline character from a string/buffer + + + MIT + + + pkg:npm/strip-final-newline@2.0.0?vcs_url=sindresorhus/strip-final-newline + + + sindresorhus/strip-final-newline + as detected from PackageJson property "repository" + + + + node_modules/strip-final-newline + + + + motdotla + dotenv-expand + 5.1.0 + Expand environment variables using dotenv + + + BSD-2-Clause + + + pkg:npm/dotenv-expand@5.1.0 + + node_modules/dotenv-expand + + + + dotenv + 7.0.0 + Loads environment variables from .env file + + + BSD-2-Clause + + + pkg:npm/dotenv@7.0.0?vcs_url=git://github.com/motdotla/dotenv.git + + + git://github.com/motdotla/dotenv.git + as detected from PackageJson property "repository.url" + + + + node_modules/dotenv + + + + Tobias Koppers @sokra + file-loader + 3.0.1 + A file loader module for webpack + + + MIT + + + pkg:npm/file-loader@3.0.1?vcs_url=webpack-contrib/file-loader + + + webpack-contrib/file-loader + as detected from PackageJson property "repository" + + + https://github.com/webpack-contrib/file-loader + as detected from PackageJson property "homepage" + + + https://github.com/webpack-contrib/file-loader/issues + as detected from PackageJson property "bugs" + + + + + Tobias Koppers @sokra + loader-utils + 1.4.0 + utils for webpack loaders + + + MIT + + + pkg:npm/loader-utils@1.4.0?vcs_url=https://github.com/webpack/loader-utils.git + + + https://github.com/webpack/loader-utils.git + as detected from PackageJson property "repository.url" + + + + node_modules/file-loader/node_modules/loader-utils + + + + Aseem Kishore <aseem.kishore@gmail.com> + json5 + 1.0.1 + JSON for humans. + + + MIT + + + pkg:npm/json5@1.0.1?vcs_url=git+https://github.com/json5/json5.git + + + git+https://github.com/json5/json5.git + as detected from PackageJson property "repository.url" + + + http://json5.org/ + as detected from PackageJson property "homepage" + + + https://github.com/json5/json5/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/file-loader/node_modules/json5 + + + + webpack Contrib (https://github.com/webpack-contrib) + schema-utils + 1.0.0 + webpack Validation Utils + + + MIT + + + pkg:npm/schema-utils@1.0.0?vcs_url=https://github.com/webpack-contrib/schema-utils + + + https://github.com/webpack-contrib/schema-utils + as detected from PackageJson property "repository" + + + https://github.com/webpack-contrib/schema-utils + as detected from PackageJson property "homepage" + + + https://github.com/webpack-contrib/schema-utils/issues + as detected from PackageJson property "bugs" + + + + node_modules/file-loader/node_modules/schema-utils + + + + + node_modules/file-loader + + + + JP Richardson <jprichardson@gmail.com> + fs-extra + 7.0.1 + fs-extra contains methods that aren't included in the vanilla Node.js fs package. Such as mkdir -p, cp -r, and rm -rf. + + + MIT + + + pkg:npm/fs-extra@7.0.1?vcs_url=https://github.com/jprichardson/node-fs-extra + + + https://github.com/jprichardson/node-fs-extra + as detected from PackageJson property "repository.url" + + + https://github.com/jprichardson/node-fs-extra + as detected from PackageJson property "homepage" + + + + node_modules/fs-extra + + + + JP Richardson <jprichardson@gmail.com> + jsonfile + 4.0.0 + Easily read/write JSON files. + + + MIT + + + pkg:npm/jsonfile@4.0.0?vcs_url=git@github.com:jprichardson/node-jsonfile.git + + node_modules/jsonfile + + + + Ryan Zimmerman <opensrc@ryanzim.com> + universalify + 0.1.2 + Make a callback- or promise-projxd function support both promises and callbacks. + + + MIT + + + pkg:npm/universalify@0.1.2?vcs_url=git+https://github.com/RyanZim/universalify.git + + + git+https://github.com/RyanZim/universalify.git + as detected from PackageJson property "repository.url" + + + https://github.com/RyanZim/universalify#readme + as detected from PackageJson property "homepage" + + + https://github.com/RyanZim/universalify/issues + as detected from PackageJson property "bugs" + + + + node_modules/universalify + + + + Juriy "kangax" Zaytsev + html-minifier + 3.5.21 + Highly configurable, well-tested, JavaScript-projxd HTML minifier. + + + MIT + + + pkg:npm/html-minifier@3.5.21?vcs_url=git+https://github.com/kangax/html-minifier.git + + + git+https://github.com/kangax/html-minifier.git + as detected from PackageJson property "repository.url" + + + https://kangax.github.io/html-minifier/ + as detected from PackageJson property "homepage" + + + https://github.com/kangax/html-minifier/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/html-minifier + + + + Blake Embrey + camel-case + 3.0.0 + Camel case a string + + + MIT + + + pkg:npm/camel-case@3.0.0?vcs_url=git://github.com/blakeembrey/camel-case.git + + + git://github.com/blakeembrey/camel-case.git + as detected from PackageJson property "repository.url" + + + https://github.com/blakeembrey/camel-case + as detected from PackageJson property "homepage" + + + https://github.com/blakeembrey/camel-case/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/camel-case + + + + Blake Embrey + no-case + 2.3.2 + Remove case from a string + + + MIT + + + pkg:npm/no-case@2.3.2?vcs_url=git://github.com/blakeembrey/no-case.git + + + git://github.com/blakeembrey/no-case.git + as detected from PackageJson property "repository.url" + + + https://github.com/blakeembrey/no-case + as detected from PackageJson property "homepage" + + + https://github.com/blakeembrey/no-case/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/no-case + + + + Blake Embrey + lower-case + 1.1.4 + Lowercase a string + + + MIT + + + pkg:npm/lower-case@1.1.4?vcs_url=git://github.com/blakeembrey/lower-case.git + + + git://github.com/blakeembrey/lower-case.git + as detected from PackageJson property "repository.url" + + + https://github.com/blakeembrey/lower-case + as detected from PackageJson property "homepage" + + + https://github.com/blakeembrey/lower-case/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/lower-case + + + + Blake Embrey + upper-case + 1.1.3 + Upper case a string + + + MIT + + + pkg:npm/upper-case@1.1.3?vcs_url=git://github.com/blakeembrey/upper-case.git + + + git://github.com/blakeembrey/upper-case.git + as detected from PackageJson property "repository.url" + + + https://github.com/blakeembrey/upper-case + as detected from PackageJson property "homepage" + + + https://github.com/blakeembrey/upper-case/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/upper-case + + + + Jakub Pawlowicz <contact@jakubpawlowicz.com> (http://twitter.com/jakubpawlowicz) + clean-css + 4.2.4 + A well-tested CSS minifier + + + MIT + + + pkg:npm/clean-css@4.2.4?vcs_url=https://github.com/jakubpawlowicz/clean-css.git + + + https://github.com/jakubpawlowicz/clean-css.git + as detected from PackageJson property "repository.url" + + + https://github.com/jakubpawlowicz/clean-css + as detected from PackageJson property "homepage" + + + https://github.com/jakubpawlowicz/clean-css/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/clean-css + + + + TJ Holowaychuk <tj@vision-media.ca> + commander + 2.17.1 + the complete solution for node.js command-line programs + + + MIT + + + pkg:npm/commander@2.17.1?vcs_url=https://github.com/tj/commander.js.git + + + https://github.com/tj/commander.js.git + as detected from PackageJson property "repository.url" + + + + node_modules/commander + + + + Mathias Bynens + he + 1.2.0 + A robust HTML entities encoder/decoder with full Unicode support. + + + MIT + + + pkg:npm/he@1.2.0?vcs_url=https://github.com/mathiasbynens/he.git + + + https://github.com/mathiasbynens/he.git + as detected from PackageJson property "repository.url" + + + https://mths.be/he + as detected from PackageJson property "homepage" + + + https://github.com/mathiasbynens/he/issues + as detected from PackageJson property "bugs" + + + + node_modules/he + + + + Blake Embrey + param-case + 2.1.1 + Param case a string + + + MIT + + + pkg:npm/param-case@2.1.1?vcs_url=git://github.com/blakeembrey/param-case.git + + + git://github.com/blakeembrey/param-case.git + as detected from PackageJson property "repository.url" + + + https://github.com/blakeembrey/param-case + as detected from PackageJson property "homepage" + + + https://github.com/blakeembrey/param-case/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/param-case + + + + Steven Vachon + relateurl + 0.2.7 + Minify URLs by converting them from absolute to relative. + + + MIT + + + pkg:npm/relateurl@0.2.7?vcs_url=git://github.com/stevenvachon/relateurl.git + + + git://github.com/stevenvachon/relateurl.git + as detected from PackageJson property "repository.url" + + + https://github.com/stevenvachon/relateurl + as detected from PackageJson property "homepage" + + + https://github.com/stevenvachon/relateurl/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/relateurl + + + + Mihai Bazon <mihai.bazon@gmail.com> (http://lisperator.net/) + uglify-js + 3.4.10 + JavaScript parser, mangler/compressor and beautifier toolkit + + + BSD-2-Clause + + + pkg:npm/uglify-js@3.4.10?vcs_url=mishoo/UglifyJS2 + + + mishoo/UglifyJS2 + as detected from PackageJson property "repository" + + + + + TJ Holowaychuk <tj@vision-media.ca> + commander + 2.19.0 + the complete solution for node.js command-line programs + + + MIT + + + pkg:npm/commander@2.19.0?vcs_url=https://github.com/tj/commander.js.git + + + https://github.com/tj/commander.js.git + as detected from PackageJson property "repository.url" + + + + node_modules/uglify-js/node_modules/commander + + + + + node_modules/uglify-js + + + + Aria Minaei + pretty-error + 2.1.2 + See nodejs errors with less clutter + + + MIT + + + pkg:npm/pretty-error@2.1.2?vcs_url=https://github.com/AriaMinaei/pretty-error.git + + + https://github.com/AriaMinaei/pretty-error.git + as detected from PackageJson property "repository.url" + + + https://github.com/AriaMinaei/pretty-error/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/pretty-error + + + + Aria Minaei + renderkid + 2.0.7 + Stylish console.log for node + + + MIT + + + pkg:npm/renderkid@2.0.7?vcs_url=https://github.com/AriaMinaei/RenderKid.git + + + https://github.com/AriaMinaei/RenderKid.git + as detected from PackageJson property "repository.url" + + + https://github.com/AriaMinaei/RenderKid/issues + as detected from PackageJson property "bugs.url" + + + + + Sindre Sorhus + strip-ansi + 3.0.1 + Strip ANSI escape codes + + + MIT + + + pkg:npm/strip-ansi@3.0.1?vcs_url=chalk/strip-ansi + + + chalk/strip-ansi + as detected from PackageJson property "repository" + + + + node_modules/renderkid/node_modules/strip-ansi + + + + Sindre Sorhus + ansi-regex + 2.1.1 + Regular expression for matching ANSI escape codes + + + MIT + + + pkg:npm/ansi-regex@2.1.1?vcs_url=chalk/ansi-regex + + + chalk/ansi-regex + as detected from PackageJson property "repository" + + + + node_modules/renderkid/node_modules/ansi-regex + + + + + node_modules/renderkid + + + + Felix Boehm <me@feedic.com> + css-select + 4.3.0 + a CSS selector compiler/engine + + + BSD-2-Clause + + + pkg:npm/css-select@4.3.0?vcs_url=git://github.com/fb55/css-select.git + + + git://github.com/fb55/css-select.git + as detected from PackageJson property "repository.url" + + + + node_modules/css-select + + + + Felix Bohm <me@feedic.com> (http://feedic.com) + css-what + 6.1.0 + a CSS selector parser + + + BSD-2-Clause + + + pkg:npm/css-what@6.1.0?vcs_url=https://github.com/fb55/css-what + + + https://github.com/fb55/css-what + as detected from PackageJson property "repository.url" + + + + node_modules/css-what + + + + Felix Boehm <me@feedic.com> + domhandler + 4.3.1 + Handler for htmlparser2 that turns pages into a dom + + + BSD-2-Clause + + + pkg:npm/domhandler@4.3.1?vcs_url=git://github.com/fb55/domhandler.git + + + git://github.com/fb55/domhandler.git + as detected from PackageJson property "repository.url" + + + + node_modules/domhandler + + + + Felix Boehm <me@feedic.com> + domutils + 2.8.0 + Utilities for working with htmlparser2's dom + + + BSD-2-Clause + + + pkg:npm/domutils@2.8.0?vcs_url=git://github.com/fb55/domutils.git + + + git://github.com/fb55/domutils.git + as detected from PackageJson property "repository.url" + + + + node_modules/domutils + + + + Felix Boehm <me@feedic.com> + dom-serializer + 1.4.1 + render domhandler DOM nodes to a string + + + MIT + + + pkg:npm/dom-serializer@1.4.1?vcs_url=git://github.com/cheeriojs/dom-renderer.git + + + git://github.com/cheeriojs/dom-renderer.git + as detected from PackageJson property "repository.url" + + + + node_modules/dom-serializer + + + + Felix Boehm <me@feedic.com> + nth-check + 2.1.1 + Parses and compiles CSS nth-checks to highly optimized functions. + + + BSD-2-Clause + + + pkg:npm/nth-check@2.1.1?vcs_url=https://github.com/fb55/nth-check + + + https://github.com/fb55/nth-check + as detected from PackageJson property "repository.url" + + + https://github.com/fb55/nth-check + as detected from PackageJson property "homepage" + + + https://github.com/fb55/nth-check/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/nth-check + + + + Aria Minaei + dom-converter + 0.2.0 + converts bare objects to DOM objects or xml representations + + + MIT + + + pkg:npm/dom-converter@0.2.0?vcs_url=https://github.com/AriaMinaei/dom-converter + + + https://github.com/AriaMinaei/dom-converter + as detected from PackageJson property "repository.url" + + + https://github.com/AriaMinaei/dom-converter/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/dom-converter + + + + Aria Minaei + utila + 0.4.0 + notareplacementforunderscore + + + MIT + + + pkg:npm/utila@0.4.0?vcs_url=https://github.com/AriaMinaei/utila.git + + + https://github.com/AriaMinaei/utila.git + as detected from PackageJson property "repository.url" + + + https://github.com/AriaMinaei/utila/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/utila + + + + Felix Boehm <me@feedic.com> + htmlparser2 + 6.1.0 + Fast & forgiving HTML/XML parser + + + MIT + + + pkg:npm/htmlparser2@6.1.0?vcs_url=git://github.com/fb55/htmlparser2.git + + + git://github.com/fb55/htmlparser2.git + as detected from PackageJson property "repository.url" + + + + node_modules/htmlparser2 + + + + Marcel Klehr <mklehr@gmx.net> + toposort + 1.0.7 + Topological sort of directed ascyclic graphs (like dependecy lists) + + + MIT + + + pkg:npm/toposort@1.0.7?vcs_url=https://github.com/marcelklehr/toposort.git + + + https://github.com/marcelklehr/toposort.git + as detected from PackageJson property "repository.url" + + + + node_modules/toposort + + + + Jordan Harband <ljharb@gmail.com> + object.getownpropertydescriptors + 2.1.4 + ES2017 spec-compliant shim for `Object.getOwnPropertyDescriptors` that works in ES5. + + + MIT + + + pkg:npm/object.getownpropertydescriptors@2.1.4?vcs_url=git://github.com/es-shims/object.getownpropertydescriptors.git + + + git://github.com/es-shims/object.getownpropertydescriptors.git + as detected from PackageJson property "repository.url" + + + + node_modules/object.getownpropertydescriptors + + + + Jordan Harband <ljharb@gmail.com> + array.prototype.reduce + 1.0.4 + An ES5 spec-compliant `Array.prototype.reduce` shim/polyfill/replacement that works as far down as ES3. + + + MIT + + + pkg:npm/array.prototype.reduce@1.0.4?vcs_url=git+https://github.com/es-shims/Array.prototype.reduce.git + + + git+https://github.com/es-shims/Array.prototype.reduce.git + as detected from PackageJson property "repository.url" + + + https://github.com/es-shims/Array.prototype.reduce#readme + as detected from PackageJson property "homepage" + + + https://github.com/es-shims/Array.prototype.reduce/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/array.prototype.reduce + + + + Jordan Harband <ljharb@gmail.com> + es-array-method-boxes-properly + 1.0.0 + Utility package to determine if an `Array.prototype` method properly boxes the callback's receiver and third argument. + + + MIT + + + pkg:npm/es-array-method-boxes-properly@1.0.0?vcs_url=git+https://github.com/ljharb/es-array-method-boxes-properly.git + + + git+https://github.com/ljharb/es-array-method-boxes-properly.git + as detected from PackageJson property "repository.url" + + + https://github.com/ljharb/es-array-method-boxes-properly#readme + as detected from PackageJson property "homepage" + + + https://github.com/ljharb/es-array-method-boxes-properly/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/es-array-method-boxes-properly + + + + Jordan Harband <ljharb@gmail.com> + is-string + 1.0.7 + Is this value a JS String object or primitive? This module works cross-realm/iframe, and despite ES6 @@toStringTag. + + + MIT + + + pkg:npm/is-string@1.0.7?vcs_url=git://github.com/ljharb/is-string.git + + + git://github.com/ljharb/is-string.git + as detected from PackageJson property "repository.url" + + + + node_modules/is-string + + + + Evan You + launch-editor-middleware + 2.6.0 + express middleware for launching editor + + + MIT + + + pkg:npm/launch-editor-middleware@2.6.0?vcs_url=git+https://github.com/yyx990803/launch-editor.git + + + git+https://github.com/yyx990803/launch-editor.git + as detected from PackageJson property "repository.url" + + + https://github.com/yyx990803/launch-editor#readme + as detected from PackageJson property "homepage" + + + https://github.com/yyx990803/launch-editor/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/launch-editor-middleware + + + + John-David Dalton <john.david.dalton@gmail.com> + lodash.defaultsdeep + 4.6.1 + The Lodash method `_.defaultsDeep` exported as a module. + + + MIT + + + pkg:npm/lodash.defaultsdeep@4.6.1?vcs_url=lodash/lodash + + + lodash/lodash + as detected from PackageJson property "repository" + + + https://lodash.com/ + as detected from PackageJson property "homepage" + + + + node_modules/lodash.defaultsdeep + + + + John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/) + lodash.mapvalues + 4.6.0 + The lodash method `_.mapValues` exported as a module. + + + MIT + + + pkg:npm/lodash.mapvalues@4.6.0?vcs_url=lodash/lodash + + + lodash/lodash + as detected from PackageJson property "repository" + + + https://lodash.com/ + as detected from PackageJson property "homepage" + + + + node_modules/lodash.mapvalues + + + + John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/) + lodash.transform + 4.6.0 + The lodash method `_.transform` exported as a module. + + + MIT + + + pkg:npm/lodash.transform@4.6.0?vcs_url=lodash/lodash + + + lodash/lodash + as detected from PackageJson property "repository" + + + https://lodash.com/ + as detected from PackageJson property "homepage" + + + + node_modules/lodash.transform + + + + Tobias Koppers @sokra + mini-css-extract-plugin + 0.8.2 + extracts CSS into separate files + + + MIT + + + pkg:npm/mini-css-extract-plugin@0.8.2?vcs_url=webpack-contrib/mini-css-extract-plugin + + + webpack-contrib/mini-css-extract-plugin + as detected from PackageJson property "repository" + + + https://github.com/webpack-contrib/mini-css-extract-plugin + as detected from PackageJson property "homepage" + + + https://github.com/webpack-contrib/mini-css-extract-plugin/issues + as detected from PackageJson property "bugs" + + + + + Tobias Koppers @sokra + loader-utils + 1.4.0 + utils for webpack loaders + + + MIT + + + pkg:npm/loader-utils@1.4.0?vcs_url=https://github.com/webpack/loader-utils.git + + + https://github.com/webpack/loader-utils.git + as detected from PackageJson property "repository.url" + + + + node_modules/mini-css-extract-plugin/node_modules/loader-utils + + + + Aseem Kishore <aseem.kishore@gmail.com> + json5 + 1.0.1 + JSON for humans. + + + MIT + + + pkg:npm/json5@1.0.1?vcs_url=git+https://github.com/json5/json5.git + + + git+https://github.com/json5/json5.git + as detected from PackageJson property "repository.url" + + + http://json5.org/ + as detected from PackageJson property "homepage" + + + https://github.com/json5/json5/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/mini-css-extract-plugin/node_modules/json5 + + + + webpack Contrib (https://github.com/webpack-contrib) + schema-utils + 1.0.0 + webpack Validation Utils + + + MIT + + + pkg:npm/schema-utils@1.0.0?vcs_url=https://github.com/webpack-contrib/schema-utils + + + https://github.com/webpack-contrib/schema-utils + as detected from PackageJson property "repository" + + + https://github.com/webpack-contrib/schema-utils + as detected from PackageJson property "homepage" + + + https://github.com/webpack-contrib/schema-utils/issues + as detected from PackageJson property "bugs" + + + + node_modules/mini-css-extract-plugin/node_modules/schema-utils + + + + + node_modules/mini-css-extract-plugin + + + + Sindre Sorhus + normalize-url + 1.9.1 + Normalize a URL + + + MIT + + + pkg:npm/normalize-url@1.9.1?vcs_url=sindresorhus/normalize-url + + + sindresorhus/normalize-url + as detected from PackageJson property "repository" + + + + node_modules/normalize-url + + + + Sindre Sorhus + prepend-http + 1.0.4 + Prepend `http://` to humanized URLs like todomvc.com and localhost + + + MIT + + + pkg:npm/prepend-http@1.0.4?vcs_url=sindresorhus/prepend-http + + + sindresorhus/prepend-http + as detected from PackageJson property "repository" + + + + node_modules/prepend-http + + + + Sindre Sorhus + query-string + 4.3.4 + Parse and stringify URL query strings + + + MIT + + + pkg:npm/query-string@4.3.4?vcs_url=sindresorhus/query-string + + + sindresorhus/query-string + as detected from PackageJson property "repository" + + + + node_modules/query-string + + + + Kevin Martensson + strict-uri-encode + 1.1.0 + A stricter URI encode adhering to RFC 3986 + + + MIT + + + pkg:npm/strict-uri-encode@1.1.0?vcs_url=kevva/strict-uri-encode + + + kevva/strict-uri-encode + as detected from PackageJson property "repository" + + + + node_modules/strict-uri-encode + + + + Sindre Sorhus + sort-keys + 1.1.2 + Sort the keys of an object + + + MIT + + + pkg:npm/sort-keys@1.1.2?vcs_url=sindresorhus/sort-keys + + + sindresorhus/sort-keys + as detected from PackageJson property "repository" + + + + node_modules/sort-keys + + + + Sindre Sorhus + is-plain-obj + 1.1.0 + Check if a value is a plain object + + + MIT + + + pkg:npm/is-plain-obj@1.1.0?vcs_url=sindresorhus/is-plain-obj + + + sindresorhus/is-plain-obj + as detected from PackageJson property "repository" + + + + node_modules/is-plain-obj + + + + Sindre Sorhus + restore-cursor + 2.0.0 + Gracefully restore the CLI cursor on exit + + + MIT + + + pkg:npm/restore-cursor@2.0.0?vcs_url=sindresorhus/restore-cursor + + + sindresorhus/restore-cursor + as detected from PackageJson property "repository" + + + + node_modules/restore-cursor + + + + Sindre Sorhus + onetime + 2.0.1 + Ensure a function is only called once + + + MIT + + + pkg:npm/onetime@2.0.1?vcs_url=sindresorhus/onetime + + + sindresorhus/onetime + as detected from PackageJson property "repository" + + + + node_modules/onetime + + + + Sindre Sorhus + mimic-fn + 1.2.0 + Make a function mimic another one + + + MIT + + + pkg:npm/mimic-fn@1.2.0?vcs_url=sindresorhus/mimic-fn + + + sindresorhus/mimic-fn + as detected from PackageJson property "repository" + + + + node_modules/mimic-fn + + + + Sindre Sorhus + cli-spinners + 2.7.0 + Spinners for use in the terminal + + + MIT + + + pkg:npm/cli-spinners@2.7.0?vcs_url=sindresorhus/cli-spinners + + + sindresorhus/cli-spinners + as detected from PackageJson property "repository" + + + + node_modules/cli-spinners + + + + Sindre Sorhus + log-symbols + 2.2.0 + Colored symbols for various log levels. Example: ? Success + + + MIT + + + pkg:npm/log-symbols@2.2.0?vcs_url=sindresorhus/log-symbols + + + sindresorhus/log-symbols + as detected from PackageJson property "repository" + + + + node_modules/log-symbols + + + + Tim Oxley + wcwidth + 1.0.1 + Port of C's wcwidth() and wcswidth() + + + MIT + + + pkg:npm/wcwidth@1.0.1?vcs_url=git+https://github.com/timoxley/wcwidth.git + + + git+https://github.com/timoxley/wcwidth.git + as detected from PackageJson property "repository.url" + + + https://github.com/timoxley/wcwidth#readme + as detected from PackageJson property "homepage" + + + https://github.com/timoxley/wcwidth/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/wcwidth + + + + Elijah Insua <tmpvar@gmail.com> + defaults + 1.0.3 + merge single level defaults over a config object + + + MIT + + + pkg:npm/defaults@1.0.3?vcs_url=git://github.com/tmpvar/defaults.git + + + git://github.com/tmpvar/defaults.git + as detected from PackageJson property "repository.url" + + + + + Paul Vorbach <paul@vorba.ch> (http://paul.vorba.ch/) + clone + 1.0.4 + deep cloning of objects and arrays + + + MIT + + + pkg:npm/clone@1.0.4?vcs_url=git://github.com/pvorb/node-clone.git + + + git://github.com/pvorb/node-clone.git + as detected from PackageJson property "repository.url" + + + https://github.com/pvorb/node-clone/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/defaults/node_modules/clone + + + + + node_modules/defaults + + + + Charlie Robbins <charlie.robbins@gmail.com> + portfinder + 1.0.32 + A simple tool to find an open port on the current machine + + + MIT + + + pkg:npm/portfinder@1.0.32?vcs_url=git@github.com:http-party/node-portfinder.git + + + TJ Holowaychuk <tj@vision-media.ca> + debug + 3.2.7 + small debugging utility + + + MIT + + + pkg:npm/debug@3.2.7?vcs_url=git://github.com/visionmedia/debug.git + + + git://github.com/visionmedia/debug.git + as detected from PackageJson property "repository.url" + + + + node_modules/portfinder/node_modules/debug + + + + + node_modules/portfinder + + + + Andrey Sitnik <andrey@sitnik.ru> + postcss-loader + 3.0.0 + PostCSS loader for webpack + + + MIT + + + pkg:npm/postcss-loader@3.0.0?vcs_url=https://github.com/postcss/postcss-loader.git + + + https://github.com/postcss/postcss-loader.git + as detected from PackageJson property "repository" + + + https://github.com/postcss/postcss-loader#readme + as detected from PackageJson property "homepage" + + + https://github.com/postcss/postcss-loader/issues + as detected from PackageJson property "bugs" + + + + + Tobias Koppers @sokra + loader-utils + 1.4.0 + utils for webpack loaders + + + MIT + + + pkg:npm/loader-utils@1.4.0?vcs_url=https://github.com/webpack/loader-utils.git + + + https://github.com/webpack/loader-utils.git + as detected from PackageJson property "repository.url" + + + + node_modules/postcss-loader/node_modules/loader-utils + + + + Aseem Kishore <aseem.kishore@gmail.com> + json5 + 1.0.1 + JSON for humans. + + + MIT + + + pkg:npm/json5@1.0.1?vcs_url=git+https://github.com/json5/json5.git + + + git+https://github.com/json5/json5.git + as detected from PackageJson property "repository.url" + + + http://json5.org/ + as detected from PackageJson property "homepage" + + + https://github.com/json5/json5/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/postcss-loader/node_modules/json5 + + + + webpack Contrib (https://github.com/webpack-contrib) + schema-utils + 1.0.0 + webpack Validation Utils + + + MIT + + + pkg:npm/schema-utils@1.0.0?vcs_url=https://github.com/webpack-contrib/schema-utils + + + https://github.com/webpack-contrib/schema-utils + as detected from PackageJson property "repository" + + + https://github.com/webpack-contrib/schema-utils + as detected from PackageJson property "homepage" + + + https://github.com/webpack-contrib/schema-utils/issues + as detected from PackageJson property "bugs" + + + + node_modules/postcss-loader/node_modules/schema-utils + + + + + node_modules/postcss-loader + + + + Michael Ciniawky <michael.ciniawsky@gmail.com> + postcss-load-config + 2.1.2 + Autoload Config for PostCSS + + + MIT + + + pkg:npm/postcss-load-config@2.1.2?vcs_url=postcss/postcss-load-config.git + + + postcss/postcss-load-config.git + as detected from PackageJson property "repository" + + + + node_modules/postcss-load-config + + + + Sindre Sorhus + import-cwd + 2.1.0 + Import a module like with `require()` but from the current working directory + + + MIT + + + pkg:npm/import-cwd@2.1.0?vcs_url=sindresorhus/import-cwd + + + sindresorhus/import-cwd + as detected from PackageJson property "repository" + + + + node_modules/import-cwd + + + + Sindre Sorhus + import-from + 2.1.0 + Import a module like with `require()` but from a given path + + + MIT + + + pkg:npm/import-from@2.1.0?vcs_url=sindresorhus/import-from + + + sindresorhus/import-from + as detected from PackageJson property "repository" + + + + node_modules/import-from + + + + Sindre Sorhus + read-pkg + 5.2.0 + Read a package.json file + + + MIT + + + pkg:npm/read-pkg@5.2.0?vcs_url=sindresorhus/read-pkg + + + sindresorhus/read-pkg + as detected from PackageJson property "repository" + + + + + Meryn Stol <merynstol@gmail.com> + normalize-package-data + 2.5.0 + Normalizes data that can be found in package.json files. + + + BSD-2-Clause + + + pkg:npm/normalize-package-data@2.5.0?vcs_url=git://github.com/npm/normalize-package-data.git + + + git://github.com/npm/normalize-package-data.git + as detected from PackageJson property "repository.url" + + + + node_modules/read-pkg/node_modules/normalize-package-data + + + + Rebecca Turner <me@re-becca.org> (http://re-becca.org) + hosted-git-info + 2.8.9 + Provides metadata and conversions from repository urls for Github, Bitbucket and Gitlab + + + ISC + + + pkg:npm/hosted-git-info@2.8.9?vcs_url=git+https://github.com/npm/hosted-git-info.git + + + git+https://github.com/npm/hosted-git-info.git + as detected from PackageJson property "repository.url" + + + https://github.com/npm/hosted-git-info + as detected from PackageJson property "homepage" + + + https://github.com/npm/hosted-git-info/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/read-pkg/node_modules/hosted-git-info + + + + semver + 5.7.1 + The semantic version parser used by npm. + + + ISC + + + pkg:npm/semver@5.7.1?vcs_url=https://github.com/npm/node-semver + + + https://github.com/npm/node-semver + as detected from PackageJson property "repository" + + + + node_modules/read-pkg/node_modules/semver + + + + Sindre Sorhus + parse-json + 5.2.0 + Parse JSON with more helpful errors + + + MIT + + + pkg:npm/parse-json@5.2.0?vcs_url=sindresorhus/parse-json + + + sindresorhus/parse-json + as detected from PackageJson property "repository" + + + + node_modules/read-pkg/node_modules/parse-json + + + + Sindre Sorhus + type-fest + 0.6.0 + A collection of essential TypeScript types + + (MIT OR CC0-1.0) + + pkg:npm/type-fest@0.6.0?vcs_url=sindresorhus/type-fest + + + sindresorhus/type-fest + as detected from PackageJson property "repository" + + + + node_modules/read-pkg/node_modules/type-fest + + + + + node_modules/read-pkg + + + + @types + normalize-package-data + 2.4.1 + TypeScript definitions for normalize-package-data + + + MIT + + + pkg:npm/%40types/normalize-package-data@2.4.1?vcs_url=https://github.com/DefinitelyTyped/DefinitelyTyped.git#types/normalize-package-data + + + https://github.com/DefinitelyTyped/DefinitelyTyped.git#types/normalize-package-data + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/normalize-package-data + as detected from PackageJson property "homepage" + + + + node_modules/@types/normalize-package-data + + + + Kyle E. Mitchell <kyle@kemitchell.com> (https://kemitchell.com) + validate-npm-package-license + 3.0.4 + Give me a string and I'll tell you if it's a valid npm package license string + + + Apache-2.0 + + + pkg:npm/validate-npm-package-license@3.0.4?vcs_url=kemitchell/validate-npm-package-license.js + + + kemitchell/validate-npm-package-license.js + as detected from PackageJson property "repository" + + + + node_modules/validate-npm-package-license + + + + Kyle E. Mitchell <kyle@kemitchell.com> (https://kemitchell.com) + spdx-correct + 3.1.1 + correct invalid SPDX expressions + + + Apache-2.0 + + + pkg:npm/spdx-correct@3.1.1?vcs_url=jslicense/spdx-correct.js + + + jslicense/spdx-correct.js + as detected from PackageJson property "repository" + + + + node_modules/spdx-correct + + + + Kyle E. Mitchell <kyle@kemitchell.com> (https://kemitchell.com) + spdx-expression-parse + 3.0.1 + parse SPDX license expressions + + + MIT + + + pkg:npm/spdx-expression-parse@3.0.1?vcs_url=jslicense/spdx-expression-parse.js + + + jslicense/spdx-expression-parse.js + as detected from PackageJson property "repository" + + + + node_modules/spdx-expression-parse + + + + Shinnosuke Watanabe (https://github.com/shinnn) + spdx-license-ids + 3.0.12 + A list of SPDX license identifiers + + + CC0-1.0 + + + pkg:npm/spdx-license-ids@3.0.12?vcs_url=jslicense/spdx-license-ids + + + jslicense/spdx-license-ids + as detected from PackageJson property "repository" + + + + node_modules/spdx-license-ids + + + + The Linux Foundation + spdx-exceptions + 2.3.0 + list of SPDX standard license exceptions + + + CC-BY-3.0 + + + pkg:npm/spdx-exceptions@2.3.0?vcs_url=kemitchell/spdx-exceptions.json + + + kemitchell/spdx-exceptions.json + as detected from PackageJson property "repository" + + + + node_modules/spdx-exceptions + + + + Qix (http://github.com/qix-) + is-arrayish + 0.2.1 + Determines if an object can be used as an array + + + MIT + + + pkg:npm/is-arrayish@0.2.1?vcs_url=https://github.com/qix-/node-is-arrayish.git + + + https://github.com/qix-/node-is-arrayish.git + as detected from PackageJson property "repository.url" + + + + node_modules/is-arrayish + + + + Kat Marchan + json-parse-even-better-errors + 2.3.1 + JSON.parse with context information on error + + + MIT + + + pkg:npm/json-parse-even-better-errors@2.3.1?vcs_url=https://github.com/npm/json-parse-even-better-errors + + + https://github.com/npm/json-parse-even-better-errors + as detected from PackageJson property "repository" + + + + node_modules/json-parse-even-better-errors + + + + Brian Donovan <brian@donovans.cc> + lines-and-columns + 1.2.4 + Maps lines and columns to character offsets and back. + + + MIT + + + pkg:npm/lines-and-columns@1.2.4?vcs_url=https://github.com/eventualbuddha/lines-and-columns.git + + + https://github.com/eventualbuddha/lines-and-columns.git + as detected from PackageJson property "repository.url" + + + https://github.com/eventualbuddha/lines-and-columns#readme + as detected from PackageJson property "homepage" + + + https://github.com/eventualbuddha/lines-and-columns/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/lines-and-columns + + + + Kat Marchan + ssri + 6.0.2 + Standard Subresource Integrity library -- parses, serializes, generates, and verifies integrity metadata according to the SRI spec. + + + ISC + + + pkg:npm/ssri@6.0.2?vcs_url=https://github.com/zkat/ssri + + + https://github.com/zkat/ssri + as detected from PackageJson property "repository" + + + + node_modules/ssri + + + + Kat Marchan <kzm@sykosomatic.org> + figgy-pudding + 3.5.2 + Delicious, festive, cascading config/opts definitions + + + ISC + + + pkg:npm/figgy-pudding@3.5.2?vcs_url=https://github.com/npm/figgy-pudding + + + https://github.com/npm/figgy-pudding + as detected from PackageJson property "repository" + + + + node_modules/figgy-pudding + + + + Jordan Harband <ljharb@gmail.com> + string.prototype.padend + 3.1.3 + ES2017 spec-compliant String.prototype.padEnd shim. + + + MIT + + + pkg:npm/string.prototype.padend@3.1.3?vcs_url=git://github.com/es-shims/String.prototype.padEnd.git + + + git://github.com/es-shims/String.prototype.padEnd.git + as detected from PackageJson property "repository.url" + + + + node_modules/string.prototype.padend + + + + Raynos <raynos2@gmail.com> + function-bind + 1.1.1 + Implementation of Function.prototype.bind + + + MIT + + + pkg:npm/function-bind@1.1.1?vcs_url=git://github.com/Raynos/function-bind.git + + + git://github.com/Raynos/function-bind.git + as detected from PackageJson property "repository" + + + https://github.com/Raynos/function-bind + as detected from PackageJson property "homepage" + + + https://github.com/Raynos/function-bind/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/function-bind + + + + Jordan Harband <ljharb@gmail.com> + get-intrinsic + 1.1.3 + Get and robustly cache all JS language-level intrinsics at first require time + + + MIT + + + pkg:npm/get-intrinsic@1.1.3?vcs_url=git+https://github.com/ljharb/get-intrinsic.git + + + git+https://github.com/ljharb/get-intrinsic.git + as detected from PackageJson property "repository.url" + + + https://github.com/ljharb/get-intrinsic#readme + as detected from PackageJson property "homepage" + + + https://github.com/ljharb/get-intrinsic/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/get-intrinsic + + + + Jordan Harband + has-symbols + 1.0.3 + Determine if the JS environment has Symbol support. Supports spec, or shams. + + + MIT + + + pkg:npm/has-symbols@1.0.3?vcs_url=git://github.com/inspect-js/has-symbols.git + + + git://github.com/inspect-js/has-symbols.git + as detected from PackageJson property "repository.url" + + + https://github.com/ljharb/has-symbols#readme + as detected from PackageJson property "homepage" + + + https://github.com/ljharb/has-symbols/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/has-symbols + + + + Jordan Harband <ljharb@gmail.com> + has-property-descriptors + 1.0.0 + Does the environment have full property descriptor support? Handles IE 8's broken defineProperty/gOPD. + + + MIT + + + pkg:npm/has-property-descriptors@1.0.0?vcs_url=git+https://github.com/inspect-js/has-property-descriptors.git + + + git+https://github.com/inspect-js/has-property-descriptors.git + as detected from PackageJson property "repository.url" + + + https://github.com/inspect-js/has-property-descriptors#readme + as detected from PackageJson property "homepage" + + + https://github.com/inspect-js/has-property-descriptors/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/has-property-descriptors + + + + Jordan Harband + object-keys + 1.1.1 + An Object.keys replacement, in case Object.keys is not available. From https://github.com/es-shims/es5-shim + + + MIT + + + pkg:npm/object-keys@1.1.1?vcs_url=git://github.com/ljharb/object-keys.git + + + git://github.com/ljharb/object-keys.git + as detected from PackageJson property "repository.url" + + + + node_modules/object-keys + + + + Jordan Harband <ljharb@gmail.com> + es-to-primitive + 1.2.1 + ECMAScript "ToPrimitive" algorithm. Provides ES5 and ES2015 versions. + + + MIT + + + pkg:npm/es-to-primitive@1.2.1?vcs_url=git://github.com/ljharb/es-to-primitive.git + + + git://github.com/ljharb/es-to-primitive.git + as detected from PackageJson property "repository.url" + + + + node_modules/es-to-primitive + + + + Jordan Harband + is-callable + 1.2.6 + Is this JS value callable? Works with Functions and GeneratorFunctions, despite ES6 @@toStringTag. + + + MIT + + + pkg:npm/is-callable@1.2.6?vcs_url=git://github.com/inspect-js/is-callable.git + + + git://github.com/inspect-js/is-callable.git + as detected from PackageJson property "repository.url" + + + + node_modules/is-callable + + + + Jordan Harband + is-date-object + 1.0.5 + Is this value a JS Date object? This module works cross-realm/iframe, and despite ES6 @@toStringTag. + + + MIT + + + pkg:npm/is-date-object@1.0.5?vcs_url=git://github.com/inspect-js/is-date-object.git + + + git://github.com/inspect-js/is-date-object.git + as detected from PackageJson property "repository.url" + + + + node_modules/is-date-object + + + + Jordan Harband + has-tostringtag + 1.0.0 + Determine if the JS environment has `Symbol.toStringTag` support. Supports spec, or shams. + + + MIT + + + pkg:npm/has-tostringtag@1.0.0?vcs_url=git+https://github.com/inspect-js/has-tostringtag.git + + + git+https://github.com/inspect-js/has-tostringtag.git + as detected from PackageJson property "repository.url" + + + https://github.com/inspect-js/has-tostringtag#readme + as detected from PackageJson property "homepage" + + + https://github.com/inspect-js/has-tostringtag/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/has-tostringtag + + + + Jordan Harband <ljharb@gmail.com> + is-symbol + 1.0.4 + Determine if a value is an ES6 Symbol or not. + + + MIT + + + pkg:npm/is-symbol@1.0.4?vcs_url=git://github.com/inspect-js/is-symbol.git + + + git://github.com/inspect-js/is-symbol.git + as detected from PackageJson property "repository.url" + + + https://github.com/inspect-js/is-symbol/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/is-symbol + + + + Jordan Harband <ljharb@gmail.com> + function.prototype.name + 1.1.5 + An ES2015 spec-compliant `Function.prototype.name` shim + + + MIT + + + pkg:npm/function.prototype.name@1.1.5?vcs_url=git://github.com/es-shims/Function.prototype.name.git + + + git://github.com/es-shims/Function.prototype.name.git + as detected from PackageJson property "repository.url" + + + + node_modules/function.prototype.name + + + + Jordan Harband <ljharb@gmail.com> + functions-have-names + 1.2.3 + Does this JS environment support the `name` property on functions? + + + MIT + + + pkg:npm/functions-have-names@1.2.3?vcs_url=git+https://github.com/inspect-js/functions-have-names.git + + + git+https://github.com/inspect-js/functions-have-names.git + as detected from PackageJson property "repository.url" + + + https://github.com/inspect-js/functions-have-names#readme + as detected from PackageJson property "homepage" + + + https://github.com/inspect-js/functions-have-names/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/functions-have-names + + + + Jordan Harband <ljharb@gmail.com> + get-symbol-description + 1.0.0 + Gets the description of a Symbol. Handles `Symbol()` vs `Symbol('')` properly when possible. + + + MIT + + + pkg:npm/get-symbol-description@1.0.0?vcs_url=git+https://github.com/inspect-js/get-symbol-description.git + + + git+https://github.com/inspect-js/get-symbol-description.git + as detected from PackageJson property "repository.url" + + + https://github.com/inspect-js/get-symbol-description#readme + as detected from PackageJson property "homepage" + + + https://github.com/inspect-js/get-symbol-description/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/get-symbol-description + + + + Jordan Harband <ljharb@gmail.com> + internal-slot + 1.0.3 + ES spec-like internal slots + + + MIT + + + pkg:npm/internal-slot@1.0.3?vcs_url=git+https://github.com/ljharb/internal-slot.git + + + git+https://github.com/ljharb/internal-slot.git + as detected from PackageJson property "repository.url" + + + https://github.com/ljharb/internal-slot#readme + as detected from PackageJson property "homepage" + + + https://github.com/ljharb/internal-slot/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/internal-slot + + + + Jordan Harband <ljharb@gmail.com> + side-channel + 1.0.4 + Store information about any JS value in a side channel. Uses WeakMap if available. + + + MIT + + + pkg:npm/side-channel@1.0.4?vcs_url=git+https://github.com/ljharb/side-channel.git + + + git+https://github.com/ljharb/side-channel.git + as detected from PackageJson property "repository.url" + + + https://github.com/ljharb/side-channel#readme + as detected from PackageJson property "homepage" + + + https://github.com/ljharb/side-channel/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/side-channel + + + + James Halliday + object-inspect + 1.12.2 + string representations of objects in node and the browser + + + MIT + + + pkg:npm/object-inspect@1.12.2?vcs_url=git://github.com/inspect-js/object-inspect.git + + + git://github.com/inspect-js/object-inspect.git + as detected from PackageJson property "repository.url" + + + https://github.com/inspect-js/object-inspect + as detected from PackageJson property "homepage" + + + + node_modules/object-inspect + + + + Jordan Harband <ljharb@gmail.com> + is-negative-zero + 2.0.2 + Is this value negative zero? === will lie to you + + + MIT + + + pkg:npm/is-negative-zero@2.0.2?vcs_url=git://github.com/inspect-js/is-negative-zero.git + + + git://github.com/inspect-js/is-negative-zero.git + as detected from PackageJson property "repository.url" + + + https://github.com/inspect-js/is-negative-zero + as detected from PackageJson property "homepage" + + + https://github.com/inspect-js/is-negative-zero/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/is-negative-zero + + + + Jordan Harband <ljharb@gmail.com> + is-regex + 1.1.4 + Is this value a JS regex? Works cross-realm/iframe, and despite ES6 @@toStringTag + + + MIT + + + pkg:npm/is-regex@1.1.4?vcs_url=git://github.com/inspect-js/is-regex.git + + + git://github.com/inspect-js/is-regex.git + as detected from PackageJson property "repository.url" + + + https://github.com/inspect-js/is-regex + as detected from PackageJson property "homepage" + + + https://github.com/inspect-js/is-regex/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/is-regex + + + + Jordan Harband + is-shared-array-buffer + 1.0.2 + Is this value a JS SharedArrayBuffer? + + + MIT + + + pkg:npm/is-shared-array-buffer@1.0.2?vcs_url=git+https://github.com/inspect-js/is-shared-array-buffer.git + + + git+https://github.com/inspect-js/is-shared-array-buffer.git + as detected from PackageJson property "repository.url" + + + https://github.com/inspect-js/is-shared-array-buffer#readme + as detected from PackageJson property "homepage" + + + https://github.com/inspect-js/is-shared-array-buffer/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/is-shared-array-buffer + + + + Jordan Harband <ljharb@gmail.com> + is-weakref + 1.0.2 + Is this value a JS WeakRef? This module works cross-realm/iframe, and despite ES6 @@toStringTag. + + + MIT + + + pkg:npm/is-weakref@1.0.2?vcs_url=git+https://github.com/inspect-js/is-weakref.git + + + git+https://github.com/inspect-js/is-weakref.git + as detected from PackageJson property "repository.url" + + + https://github.com/inspect-js/is-weakref#readme + as detected from PackageJson property "homepage" + + + https://github.com/inspect-js/is-weakref/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/is-weakref + + + + Jordan Harband <ljharb@gmail.com> + regexp.prototype.flags + 1.4.3 + ES6 spec-compliant RegExp.prototype.flags shim. + + + MIT + + + pkg:npm/regexp.prototype.flags@1.4.3?vcs_url=git://github.com/es-shims/RegExp.prototype.flags.git + + + git://github.com/es-shims/RegExp.prototype.flags.git + as detected from PackageJson property "repository.url" + + + + node_modules/regexp.prototype.flags + + + + Jordan Harband <ljharb@gmail.com> + safe-regex-test + 1.0.0 + Give a regex, get a robust predicate function that tests it against a string. + + + MIT + + + pkg:npm/safe-regex-test@1.0.0?vcs_url=git+https://github.com/ljharb/safe-regex-test.git + + + git+https://github.com/ljharb/safe-regex-test.git + as detected from PackageJson property "repository.url" + + + https://github.com/ljharb/safe-regex-test#readme + as detected from PackageJson property "homepage" + + + https://github.com/ljharb/safe-regex-test/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/safe-regex-test + + + + Jordan Harband <ljharb@gmail.com> + string.prototype.trimend + 1.0.5 + ES2019 spec-compliant String.prototype.trimEnd shim. + + + MIT + + + pkg:npm/string.prototype.trimend@1.0.5?vcs_url=git://github.com/es-shims/String.prototype.trimEnd.git + + + git://github.com/es-shims/String.prototype.trimEnd.git + as detected from PackageJson property "repository.url" + + + + node_modules/string.prototype.trimend + + + + Jordan Harband <ljharb@gmail.com> + string.prototype.trimstart + 1.0.5 + ES2019 spec-compliant String.prototype.trimStart shim. + + + MIT + + + pkg:npm/string.prototype.trimstart@1.0.5?vcs_url=git://github.com/es-shims/String.prototype.trimStart.git + + + git://github.com/es-shims/String.prototype.trimStart.git + as detected from PackageJson property "repository.url" + + + + node_modules/string.prototype.trimstart + + + + Jordan Harband <ljharb@gmail.com> + unbox-primitive + 1.0.2 + Unbox a boxed JS primitive value. + + + MIT + + + pkg:npm/unbox-primitive@1.0.2?vcs_url=git+https://github.com/ljharb/unbox-primitive.git + + + git+https://github.com/ljharb/unbox-primitive.git + as detected from PackageJson property "repository.url" + + + https://github.com/ljharb/unbox-primitive#readme + as detected from PackageJson property "homepage" + + + https://github.com/ljharb/unbox-primitive/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/unbox-primitive + + + + Jordan Harband <ljharb@gmail.com> + has-bigints + 1.0.2 + Determine if the JS environment has BigInt support. + + + MIT + + + pkg:npm/has-bigints@1.0.2?vcs_url=git+https://github.com/ljharb/has-bigints.git + + + git+https://github.com/ljharb/has-bigints.git + as detected from PackageJson property "repository.url" + + + https://github.com/ljharb/has-bigints#readme + as detected from PackageJson property "homepage" + + + https://github.com/ljharb/has-bigints/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/has-bigints + + + + Jordan Harband <ljharb@gmail.com> + which-boxed-primitive + 1.0.2 + Which kind of boxed JS primitive is this? + + + MIT + + + pkg:npm/which-boxed-primitive@1.0.2?vcs_url=git+https://github.com/inspect-js/which-boxed-primitive.git + + + git+https://github.com/inspect-js/which-boxed-primitive.git + as detected from PackageJson property "repository.url" + + + https://github.com/inspect-js/which-boxed-primitive#readme + as detected from PackageJson property "homepage" + + + https://github.com/inspect-js/which-boxed-primitive/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/which-boxed-primitive + + + + Jordan Harband <ljharb@gmail.com> + is-bigint + 1.0.4 + Is this value an ES BigInt? + + + MIT + + + pkg:npm/is-bigint@1.0.4?vcs_url=git+https://github.com/inspect-js/is-bigint.git + + + git+https://github.com/inspect-js/is-bigint.git + as detected from PackageJson property "repository.url" + + + https://github.com/inspect-js/is-bigint#readme + as detected from PackageJson property "homepage" + + + https://github.com/inspect-js/is-bigint/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/is-bigint + + + + Jordan Harband <ljharb@gmail.com> + is-boolean-object + 1.1.2 + Is this value a JS Boolean? This module works cross-realm/iframe, and despite ES6 @@toStringTag. + + + MIT + + + pkg:npm/is-boolean-object@1.1.2?vcs_url=git://github.com/inspect-js/is-boolean-object.git + + + git://github.com/inspect-js/is-boolean-object.git + as detected from PackageJson property "repository.url" + + + + node_modules/is-boolean-object + + + + Jordan Harband <ljharb@gmail.com> + is-number-object + 1.0.7 + Is this value a JS Number object? This module works cross-realm/iframe, and despite ES6 @@toStringTag. + + + MIT + + + pkg:npm/is-number-object@1.0.7?vcs_url=git://github.com/inspect-js/is-number-object.git + + + git://github.com/inspect-js/is-number-object.git + as detected from PackageJson property "repository.url" + + + https://github.com/inspect-js/is-number-object#readme + as detected from PackageJson property "homepage" + + + https://github.com/inspect-js/is-number-object/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/is-number-object + + + + Isaac Z. Schlueter <i@izs.me> (https://izs.me) + infer-owner + 1.0.4 + Infer the owner of a path projxd on the owner of its nearest existing parent + + + ISC + + + pkg:npm/infer-owner@1.0.4?vcs_url=https://github.com/npm/infer-owner + + + https://github.com/npm/infer-owner + as detected from PackageJson property "repository" + + + + node_modules/infer-owner + + + + Mihai Bazon <mihai.bazon@gmail.com> (http://lisperator.net/) + terser + 4.8.1 + JavaScript parser, mangler/compressor and beautifier toolkit for ES6+ + + + BSD-2-Clause + + + pkg:npm/terser@4.8.1?vcs_url=https://github.com/terser/terser + + + https://github.com/terser/terser + as detected from PackageJson property "repository" + + + https://terser.org + as detected from PackageJson property "homepage" + + + + + TJ Holowaychuk <tj@vision-media.ca> + commander + 2.20.3 + the complete solution for node.js command-line programs + + + MIT + + + pkg:npm/commander@2.20.3?vcs_url=https://github.com/tj/commander.js.git + + + https://github.com/tj/commander.js.git + as detected from PackageJson property "repository.url" + + + + node_modules/terser/node_modules/commander + + + + + node_modules/terser + + + + worker-farm + 1.7.0 + Distribute processing tasks to child processes with an uber-simple API and baked-in durability & custom concurrency options. + + + MIT + + + pkg:npm/worker-farm@1.7.0?vcs_url=https://github.com/rvagg/node-worker-farm.git + + + https://github.com/rvagg/node-worker-farm.git + as detected from PackageJson property "repository.url" + + + https://github.com/rvagg/node-worker-farm + as detected from PackageJson property "homepage" + + + + node_modules/worker-farm + + + + Tobias Koppers @sokra + thread-loader + 2.1.3 + Runs the following loaders in a worker pool + + + MIT + + + pkg:npm/thread-loader@2.1.3?vcs_url=https://github.com/webpack-contrib/thread-loader.git + + + https://github.com/webpack-contrib/thread-loader.git + as detected from PackageJson property "repository" + + + https://github.com/webpack-contrib/thread-loader + as detected from PackageJson property "homepage" + + + https://github.com/webpack-contrib/thread-loader/issues + as detected from PackageJson property "bugs" + + + + + Tobias Koppers @sokra + loader-utils + 1.4.0 + utils for webpack loaders + + + MIT + + + pkg:npm/loader-utils@1.4.0?vcs_url=https://github.com/webpack/loader-utils.git + + + https://github.com/webpack/loader-utils.git + as detected from PackageJson property "repository.url" + + + + node_modules/thread-loader/node_modules/loader-utils + + + + Aseem Kishore <aseem.kishore@gmail.com> + json5 + 1.0.1 + JSON for humans. + + + MIT + + + pkg:npm/json5@1.0.1?vcs_url=git+https://github.com/json5/json5.git + + + git+https://github.com/json5/json5.git + as detected from PackageJson property "repository.url" + + + http://json5.org/ + as detected from PackageJson property "homepage" + + + https://github.com/json5/json5/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/thread-loader/node_modules/json5 + + + + + node_modules/thread-loader + + + + Tobias Koppers @sokra + url-loader + 1.1.2 + A loader for webpack which transforms files into projx64 URIs + + + MIT + + + pkg:npm/url-loader@1.1.2?vcs_url=webpack-contrib/url-loader + + + webpack-contrib/url-loader + as detected from PackageJson property "repository" + + + https://github.com/webpack-contrib/url-loader + as detected from PackageJson property "homepage" + + + https://github.com/webpack-contrib/url-loader/issues + as detected from PackageJson property "bugs" + + + + + Tobias Koppers @sokra + loader-utils + 1.4.0 + utils for webpack loaders + + + MIT + + + pkg:npm/loader-utils@1.4.0?vcs_url=https://github.com/webpack/loader-utils.git + + + https://github.com/webpack/loader-utils.git + as detected from PackageJson property "repository.url" + + + + node_modules/url-loader/node_modules/loader-utils + + + + Aseem Kishore <aseem.kishore@gmail.com> + json5 + 1.0.1 + JSON for humans. + + + MIT + + + pkg:npm/json5@1.0.1?vcs_url=git+https://github.com/json5/json5.git + + + git+https://github.com/json5/json5.git + as detected from PackageJson property "repository.url" + + + http://json5.org/ + as detected from PackageJson property "homepage" + + + https://github.com/json5/json5/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/url-loader/node_modules/json5 + + + + webpack Contrib (https://github.com/webpack-contrib) + schema-utils + 1.0.0 + webpack Validation Utils + + + MIT + + + pkg:npm/schema-utils@1.0.0?vcs_url=https://github.com/webpack-contrib/schema-utils + + + https://github.com/webpack-contrib/schema-utils + as detected from PackageJson property "repository" + + + https://github.com/webpack-contrib/schema-utils + as detected from PackageJson property "homepage" + + + https://github.com/webpack-contrib/schema-utils/issues + as detected from PackageJson property "bugs" + + + + node_modules/url-loader/node_modules/schema-utils + + + + + node_modules/url-loader + + + + Robert Kieffer + mime + 2.6.0 + A comprehensive library for mime-type mapping + + + MIT + + + pkg:npm/mime@2.6.0?vcs_url=https://github.com/broofa/mime + + + https://github.com/broofa/mime + as detected from PackageJson property "repository.url" + + + + node_modules/mime + + + + Evan You + vue-loader + 15.10.0 + Vue single-file component loader for Webpack + + + MIT + + + pkg:npm/vue-loader@15.10.0?vcs_url=https://github.com/vuejs/vue-loader.git + + + https://github.com/vuejs/vue-loader.git + as detected from PackageJson property "repository.url" + + + https://github.com/vuejs/vue-loader + as detected from PackageJson property "homepage" + + + https://github.com/vuejs/vue-loader/issues + as detected from PackageJson property "bugs.url" + + + + + Tobias Koppers @sokra + loader-utils + 1.4.0 + utils for webpack loaders + + + MIT + + + pkg:npm/loader-utils@1.4.0?vcs_url=https://github.com/webpack/loader-utils.git + + + https://github.com/webpack/loader-utils.git + as detected from PackageJson property "repository.url" + + + + node_modules/vue-loader/node_modules/loader-utils + + + + Aseem Kishore <aseem.kishore@gmail.com> + json5 + 1.0.1 + JSON for humans. + + + MIT + + + pkg:npm/json5@1.0.1?vcs_url=git+https://github.com/json5/json5.git + + + git+https://github.com/json5/json5.git + as detected from PackageJson property "repository.url" + + + http://json5.org/ + as detected from PackageJson property "homepage" + + + https://github.com/json5/json5/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/vue-loader/node_modules/json5 + + + + + node_modules/vue-loader + + + + Evan You + vue-hot-reload-api + 2.3.4 + hot reload api for *.vue components + + + MIT + + + pkg:npm/vue-hot-reload-api@2.3.4?vcs_url=git+https://github.com/vuejs/vue-hot-reload-api.git + + + git+https://github.com/vuejs/vue-hot-reload-api.git + as detected from PackageJson property "repository.url" + + + https://github.com/vuejs/vue-hot-reload-api#readme + as detected from PackageJson property "homepage" + + + https://github.com/vuejs/vue-hot-reload-api/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/vue-hot-reload-api + + + + Evan You + vue-style-loader + 4.1.3 + Vue.js style loader module for webpack + + + MIT + + + pkg:npm/vue-style-loader@4.1.3?vcs_url=git@github.com:vuejs/vue-style-loader.git + + + Tobias Koppers @sokra + loader-utils + 1.4.0 + utils for webpack loaders + + + MIT + + + pkg:npm/loader-utils@1.4.0?vcs_url=https://github.com/webpack/loader-utils.git + + + https://github.com/webpack/loader-utils.git + as detected from PackageJson property "repository.url" + + + + node_modules/vue-style-loader/node_modules/loader-utils + + + + Aseem Kishore <aseem.kishore@gmail.com> + json5 + 1.0.1 + JSON for humans. + + + MIT + + + pkg:npm/json5@1.0.1?vcs_url=git+https://github.com/json5/json5.git + + + git+https://github.com/json5/json5.git + as detected from PackageJson property "repository.url" + + + http://json5.org/ + as detected from PackageJson property "homepage" + + + https://github.com/json5/json5/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/vue-style-loader/node_modules/json5 + + + + + node_modules/vue-style-loader + + + + Yury Grunin <grunin.ya@ya.ru> + webpack-bundle-analyzer + 3.9.0 + Webpack plugin and CLI utility that represents bundle content as convenient interactive zoomable treemap + + + MIT + + + pkg:npm/webpack-bundle-analyzer@3.9.0?vcs_url=git+https://github.com/webpack-contrib/webpack-bundle-analyzer.git + + + git+https://github.com/webpack-contrib/webpack-bundle-analyzer.git + as detected from PackageJson property "repository.url" + + + https://github.com/webpack-contrib/webpack-bundle-analyzer + as detected from PackageJson property "homepage" + + + https://github.com/webpack-contrib/webpack-bundle-analyzer/issues + as detected from PackageJson property "bugs.url" + + + + + acorn-walk + 7.2.0 + ECMAScript (ESTree) AST walker + + + MIT + + + pkg:npm/acorn-walk@7.2.0?vcs_url=https://github.com/acornjs/acorn.git + + + https://github.com/acornjs/acorn.git + as detected from PackageJson property "repository.url" + + + https://github.com/acornjs/acorn + as detected from PackageJson property "homepage" + + + + node_modules/webpack-bundle-analyzer/node_modules/acorn-walk + + + + acorn + 7.4.1 + ECMAScript parser + + + MIT + + + pkg:npm/acorn@7.4.1?vcs_url=https://github.com/acornjs/acorn.git + + + https://github.com/acornjs/acorn.git + as detected from PackageJson property "repository.url" + + + https://github.com/acornjs/acorn + as detected from PackageJson property "homepage" + + + + node_modules/webpack-bundle-analyzer/node_modules/acorn + + + + TJ Holowaychuk <tj@vision-media.ca> + commander + 2.20.3 + the complete solution for node.js command-line programs + + + MIT + + + pkg:npm/commander@2.20.3?vcs_url=https://github.com/tj/commander.js.git + + + https://github.com/tj/commander.js.git + as detected from PackageJson property "repository.url" + + + + node_modules/webpack-bundle-analyzer/node_modules/commander + + + + Einar Otto Stangvik <einaros@gmail.com> (http://2x.io) + ws + 6.2.2 + Simple to use, blazing fast and thoroughly tested websocket client and server for Node.js + + + MIT + + + pkg:npm/ws@6.2.2?vcs_url=websockets/ws + + + websockets/ws + as detected from PackageJson property "repository" + + + https://github.com/websockets/ws + as detected from PackageJson property "homepage" + + + https://github.com/websockets/ws/issues + as detected from PackageJson property "bugs" + + + + node_modules/webpack-bundle-analyzer/node_modules/ws + + + + + node_modules/webpack-bundle-analyzer + + + + Phil Booth (https://gitlab.com/philbooth) + bfj + 6.1.2 + Big-friendly JSON. Asynchronous streaming functions for large JSON data sets. + + + MIT + + + pkg:npm/bfj@6.1.2?vcs_url=https://gitlab.com/philbooth/bfj.git + + + https://gitlab.com/philbooth/bfj.git + as detected from PackageJson property "repository.url" + + + https://gitlab.com/philbooth/bfj + as detected from PackageJson property "homepage" + + + https://gitlab.com/philbooth/bfj/issues + as detected from PackageJson property "bugs" + + + + node_modules/bfj + + + + Phil Booth <pmbooth@gmail.com> (https://philbooth.me/) + check-types + 8.0.3 + A little library for asserting types and values. + + + MIT + + + pkg:npm/check-types@8.0.3?vcs_url=https://gitlab.com/philbooth/check-types.js.git + + + https://gitlab.com/philbooth/check-types.js.git + as detected from PackageJson property "repository.url" + + + https://gitlab.com/philbooth/check-types.js + as detected from PackageJson property "homepage" + + + https://gitlab.com/philbooth/check-types.js/issues + as detected from PackageJson property "bugs" + + + + node_modules/check-types + + + + Phil Booth <pmbooth@gmail.com> (https://philbooth.me/) + hoopy + 0.1.4 + Like an array, but rounder. + + + MIT + + + pkg:npm/hoopy@0.1.4?vcs_url=git+https://gitlab.com/philbooth/hoopy.git + + + git+https://gitlab.com/philbooth/hoopy.git + as detected from PackageJson property "repository.url" + + + https://gitlab.com/philbooth/hoopy#readme + as detected from PackageJson property "homepage" + + + https://gitlab.com/philbooth/hoopy/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/hoopy + + + + Phil Booth <pmbooth@gmail.com> (https://philbooth.me/) + tryer + 1.0.1 + Because everyone loves a tryer! Conditional and repeated task invocation for node and browser. + + + MIT + + + pkg:npm/tryer@1.0.1?vcs_url=git+https://gitlab.com/philbooth/tryer.git + + + git+https://gitlab.com/philbooth/tryer.git + as detected from PackageJson property "repository.url" + + + https://gitlab.com/philbooth/tryer + as detected from PackageJson property "homepage" + + + https://gitlab.com/philbooth/tryer/issues + as detected from PackageJson property "bugs" + + + + node_modules/tryer + + + + Matthew Eernisse <mde@fleegix.org> (http://fleegix.org) + ejs + 2.7.4 + Embedded JavaScript templates + + + Apache-2.0 + + + pkg:npm/ejs@2.7.4?vcs_url=git://github.com/mde/ejs.git + + + git://github.com/mde/ejs.git + as detected from PackageJson property "repository.url" + + + https://github.com/mde/ejs + as detected from PackageJson property "homepage" + + + https://github.com/mde/ejs/issues + as detected from PackageJson property "bugs" + + + + node_modules/ejs + + + + TJ Holowaychuk <tj@vision-media.ca> + express + 4.18.1 + Fast, unopinionated, minimalist web framework + + + MIT + + + pkg:npm/express@4.18.1?vcs_url=expressjs/express + + + expressjs/express + as detected from PackageJson property "repository" + + + http://expressjs.com/ + as detected from PackageJson property "homepage" + + + + + TJ Holowaychuk <tj@vision-media.ca> + debug + 2.6.9 + small debugging utility + + + MIT + + + pkg:npm/debug@2.6.9?vcs_url=git://github.com/visionmedia/debug.git + + + git://github.com/visionmedia/debug.git + as detected from PackageJson property "repository.url" + + + + node_modules/express/node_modules/debug + + + + ms + 2.0.0 + Tiny milisecond conversion utility + + + MIT + + + pkg:npm/ms@2.0.0?vcs_url=zeit/ms + + + zeit/ms + as detected from PackageJson property "repository" + + + + node_modules/express/node_modules/ms + + + + Douglas Christopher Wilson <doug@somethingdoug.com> + depd + 2.0.0 + Deprecate all the things + + + MIT + + + pkg:npm/depd@2.0.0?vcs_url=dougwilson/nodejs-depd + + + dougwilson/nodejs-depd + as detected from PackageJson property "repository" + + + + node_modules/express/node_modules/depd + + + + qs + 6.10.3 + A querystring parser that supports nesting and arrays, with a depth limit + + + BSD-3-Clause + + + pkg:npm/qs@6.10.3?vcs_url=https://github.com/ljharb/qs.git + + + https://github.com/ljharb/qs.git + as detected from PackageJson property "repository.url" + + + https://github.com/ljharb/qs + as detected from PackageJson property "homepage" + + + + node_modules/express/node_modules/qs + + + + Feross Aboukhadijeh + safe-buffer + 5.2.1 + Safer Node.js Buffer API + + + MIT + + + pkg:npm/safe-buffer@5.2.1?vcs_url=git://github.com/feross/safe-buffer.git + + + git://github.com/feross/safe-buffer.git + as detected from PackageJson property "repository.url" + + + https://github.com/feross/safe-buffer + as detected from PackageJson property "homepage" + + + https://github.com/feross/safe-buffer/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/express/node_modules/safe-buffer + + + + + node_modules/express + + + + accepts + 1.3.8 + Higher-level content negotiation + + + MIT + + + pkg:npm/accepts@1.3.8?vcs_url=jshttp/accepts + + + jshttp/accepts + as detected from PackageJson property "repository" + + + + node_modules/accepts + + + + mime-types + 2.1.35 + The ultimate javascript content-type utility. + + + MIT + + + pkg:npm/mime-types@2.1.35?vcs_url=jshttp/mime-types + + + jshttp/mime-types + as detected from PackageJson property "repository" + + + + node_modules/mime-types + + + + negotiator + 0.6.3 + HTTP content negotiation + + + MIT + + + pkg:npm/negotiator@0.6.3?vcs_url=jshttp/negotiator + + + jshttp/negotiator + as detected from PackageJson property "repository" + + + + node_modules/negotiator + + + + Blake Embrey + array-flatten + 1.1.1 + Flatten an array of nested arrays into a single flat array + + + MIT + + + pkg:npm/array-flatten@1.1.1?vcs_url=git://github.com/blakeembrey/array-flatten.git + + + git://github.com/blakeembrey/array-flatten.git + as detected from PackageJson property "repository.url" + + + https://github.com/blakeembrey/array-flatten + as detected from PackageJson property "homepage" + + + https://github.com/blakeembrey/array-flatten/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/array-flatten + + + + body-parser + 1.20.0 + Node.js body parsing middleware + + + MIT + + + pkg:npm/body-parser@1.20.0?vcs_url=expressjs/body-parser + + + expressjs/body-parser + as detected from PackageJson property "repository" + + + + + TJ Holowaychuk <tj@vision-media.ca> + debug + 2.6.9 + small debugging utility + + + MIT + + + pkg:npm/debug@2.6.9?vcs_url=git://github.com/visionmedia/debug.git + + + git://github.com/visionmedia/debug.git + as detected from PackageJson property "repository.url" + + + + node_modules/body-parser/node_modules/debug + + + + ms + 2.0.0 + Tiny milisecond conversion utility + + + MIT + + + pkg:npm/ms@2.0.0?vcs_url=zeit/ms + + + zeit/ms + as detected from PackageJson property "repository" + + + + node_modules/body-parser/node_modules/ms + + + + Douglas Christopher Wilson <doug@somethingdoug.com> + depd + 2.0.0 + Deprecate all the things + + + MIT + + + pkg:npm/depd@2.0.0?vcs_url=dougwilson/nodejs-depd + + + dougwilson/nodejs-depd + as detected from PackageJson property "repository" + + + + node_modules/body-parser/node_modules/depd + + + + qs + 6.10.3 + A querystring parser that supports nesting and arrays, with a depth limit + + + BSD-3-Clause + + + pkg:npm/qs@6.10.3?vcs_url=https://github.com/ljharb/qs.git + + + https://github.com/ljharb/qs.git + as detected from PackageJson property "repository.url" + + + https://github.com/ljharb/qs + as detected from PackageJson property "homepage" + + + + node_modules/body-parser/node_modules/qs + + + + + node_modules/body-parser + + + + TJ Holowaychuk <tj@vision-media.ca> (http://tjholowaychuk.com) + bytes + 3.1.2 + Utility to parse a string bytes to bytes and vice-versa + + + MIT + + + pkg:npm/bytes@3.1.2?vcs_url=visionmedia/bytes.js + + + visionmedia/bytes.js + as detected from PackageJson property "repository" + + + + node_modules/bytes + + + + Douglas Christopher Wilson <doug@somethingdoug.com> + content-type + 1.0.4 + Create and parse HTTP Content-Type header + + + MIT + + + pkg:npm/content-type@1.0.4?vcs_url=jshttp/content-type + + + jshttp/content-type + as detected from PackageJson property "repository" + + + + node_modules/content-type + + + + Jonathan Ong + destroy + 1.2.0 + destroy a stream if possible + + + MIT + + + pkg:npm/destroy@1.2.0?vcs_url=stream-utils/destroy + + + stream-utils/destroy + as detected from PackageJson property "repository" + + + + node_modules/destroy + + + + Jonathan Ong <me@jongleberry.com> (http://jongleberry.com) + http-errors + 2.0.0 + Create HTTP error objects + + + MIT + + + pkg:npm/http-errors@2.0.0?vcs_url=jshttp/http-errors + + + jshttp/http-errors + as detected from PackageJson property "repository" + + + + + Douglas Christopher Wilson <doug@somethingdoug.com> + depd + 2.0.0 + Deprecate all the things + + + MIT + + + pkg:npm/depd@2.0.0?vcs_url=dougwilson/nodejs-depd + + + dougwilson/nodejs-depd + as detected from PackageJson property "repository" + + + + node_modules/http-errors/node_modules/depd + + + + + node_modules/http-errors + + + + on-finished + 2.4.1 + Execute a callback when a request closes, finishes, or errors + + + MIT + + + pkg:npm/on-finished@2.4.1?vcs_url=jshttp/on-finished + + + jshttp/on-finished + as detected from PackageJson property "repository" + + + + node_modules/on-finished + + + + Jonathan Ong <me@jongleberry.com> (http://jongleberry.com) + raw-body + 2.5.1 + Get and validate the raw body of a readable stream. + + + MIT + + + pkg:npm/raw-body@2.5.1?vcs_url=stream-utils/raw-body + + + stream-utils/raw-body + as detected from PackageJson property "repository" + + + + node_modules/raw-body + + + + Douglas Christopher Wilson <doug@somethingdoug.com> + unpipe + 1.0.0 + Unpipe a stream from all destinations + + + MIT + + + pkg:npm/unpipe@1.0.0?vcs_url=stream-utils/unpipe + + + stream-utils/unpipe + as detected from PackageJson property "repository" + + + + node_modules/unpipe + + + + type-is + 1.6.18 + Infer the content-type of a request. + + + MIT + + + pkg:npm/type-is@1.6.18?vcs_url=jshttp/type-is + + + jshttp/type-is + as detected from PackageJson property "repository" + + + + node_modules/type-is + + + + Douglas Christopher Wilson <doug@somethingdoug.com> + content-disposition + 0.5.4 + Create and parse Content-Disposition header + + + MIT + + + pkg:npm/content-disposition@0.5.4?vcs_url=jshttp/content-disposition + + + jshttp/content-disposition + as detected from PackageJson property "repository" + + + + + Feross Aboukhadijeh + safe-buffer + 5.2.1 + Safer Node.js Buffer API + + + MIT + + + pkg:npm/safe-buffer@5.2.1?vcs_url=git://github.com/feross/safe-buffer.git + + + git://github.com/feross/safe-buffer.git + as detected from PackageJson property "repository.url" + + + https://github.com/feross/safe-buffer + as detected from PackageJson property "homepage" + + + https://github.com/feross/safe-buffer/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/content-disposition/node_modules/safe-buffer + + + + + node_modules/content-disposition + + + + TJ Holowaychuk <tj@learnboost.com> + cookie-signature + 1.0.6 + Sign and unsign cookies + + + MIT + + + pkg:npm/cookie-signature@1.0.6?vcs_url=https://github.com/visionmedia/node-cookie-signature.git + + + https://github.com/visionmedia/node-cookie-signature.git + as detected from PackageJson property "repository.url" + + + + node_modules/cookie-signature + + + + Roman Shtylman <shtylman@gmail.com> + cookie + 0.5.0 + HTTP server cookie parsing and serialization + + + MIT + + + pkg:npm/cookie@0.5.0?vcs_url=jshttp/cookie + + + jshttp/cookie + as detected from PackageJson property "repository" + + + + node_modules/cookie + + + + encodeurl + 1.0.2 + Encode a URL to a percent-encoded form, excluding already-encoded sequences + + + MIT + + + pkg:npm/encodeurl@1.0.2?vcs_url=pillarjs/encodeurl + + + pillarjs/encodeurl + as detected from PackageJson property "repository" + + + + node_modules/encodeurl + + + + escape-html + 1.0.3 + Escape string for use in HTML + + + MIT + + + pkg:npm/escape-html@1.0.3?vcs_url=component/escape-html + + + component/escape-html + as detected from PackageJson property "repository" + + + + node_modules/escape-html + + + + etag + 1.8.1 + Create simple HTTP ETags + + + MIT + + + pkg:npm/etag@1.8.1?vcs_url=jshttp/etag + + + jshttp/etag + as detected from PackageJson property "repository" + + + + node_modules/etag + + + + Douglas Christopher Wilson <doug@somethingdoug.com> + finalhandler + 1.2.0 + Node.js final http responder + + + MIT + + + pkg:npm/finalhandler@1.2.0?vcs_url=pillarjs/finalhandler + + + pillarjs/finalhandler + as detected from PackageJson property "repository" + + + + + TJ Holowaychuk <tj@vision-media.ca> + debug + 2.6.9 + small debugging utility + + + MIT + + + pkg:npm/debug@2.6.9?vcs_url=git://github.com/visionmedia/debug.git + + + git://github.com/visionmedia/debug.git + as detected from PackageJson property "repository.url" + + + + node_modules/finalhandler/node_modules/debug + + + + ms + 2.0.0 + Tiny milisecond conversion utility + + + MIT + + + pkg:npm/ms@2.0.0?vcs_url=zeit/ms + + + zeit/ms + as detected from PackageJson property "repository" + + + + node_modules/finalhandler/node_modules/ms + + + + + node_modules/finalhandler + + + + parseurl + 1.3.3 + parse a url with memoization + + + MIT + + + pkg:npm/parseurl@1.3.3?vcs_url=pillarjs/parseurl + + + pillarjs/parseurl + as detected from PackageJson property "repository" + + + + node_modules/parseurl + + + + statuses + 2.0.1 + HTTP status utility + + + MIT + + + pkg:npm/statuses@2.0.1?vcs_url=jshttp/statuses + + + jshttp/statuses + as detected from PackageJson property "repository" + + + + node_modules/statuses + + + + TJ Holowaychuk <tj@vision-media.ca> (http://tjholowaychuk.com) + fresh + 0.5.2 + HTTP response freshness testing + + + MIT + + + pkg:npm/fresh@0.5.2?vcs_url=jshttp/fresh + + + jshttp/fresh + as detected from PackageJson property "repository" + + + + node_modules/fresh + + + + Wes Todd + setprototypeof + 1.2.0 + A small polyfill for Object.setprototypeof + + + ISC + + + pkg:npm/setprototypeof@1.2.0?vcs_url=https://github.com/wesleytodd/setprototypeof.git + + + https://github.com/wesleytodd/setprototypeof.git + as detected from PackageJson property "repository.url" + + + https://github.com/wesleytodd/setprototypeof + as detected from PackageJson property "homepage" + + + https://github.com/wesleytodd/setprototypeof/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/setprototypeof + + + + Douglas Christopher Wilson <doug@somethingdoug.com> + toidentifier + 1.0.1 + Convert a string of words to a JavaScript identifier + + + MIT + + + pkg:npm/toidentifier@1.0.1?vcs_url=component/toidentifier + + + component/toidentifier + as detected from PackageJson property "repository" + + + + node_modules/toidentifier + + + + Jonathan Ong + merge-descriptors + 1.0.1 + Merge objects using descriptors + + + MIT + + + pkg:npm/merge-descriptors@1.0.1?vcs_url=component/merge-descriptors + + + component/merge-descriptors + as detected from PackageJson property "repository" + + + + node_modules/merge-descriptors + + + + methods + 1.1.2 + HTTP methods that node supports + + + MIT + + + pkg:npm/methods@1.1.2?vcs_url=jshttp/methods + + + jshttp/methods + as detected from PackageJson property "repository" + + + + node_modules/methods + + + + Jonathan Ong + ee-first + 1.1.1 + return the first event in a set of ee/event pairs + + + MIT + + + pkg:npm/ee-first@1.1.1?vcs_url=jonathanong/ee-first + + + jonathanong/ee-first + as detected from PackageJson property "repository" + + + + node_modules/ee-first + + + + path-to-regexp + 0.1.7 + Express style path to RegExp utility + + + MIT + + + pkg:npm/path-to-regexp@0.1.7?vcs_url=https://github.com/component/path-to-regexp.git + + + https://github.com/component/path-to-regexp.git + as detected from PackageJson property "repository.url" + + + + node_modules/path-to-regexp + + + + Douglas Christopher Wilson <doug@somethingdoug.com> + proxy-addr + 2.0.7 + Determine address of proxied request + + + MIT + + + pkg:npm/proxy-addr@2.0.7?vcs_url=jshttp/proxy-addr + + + jshttp/proxy-addr + as detected from PackageJson property "repository" + + + + node_modules/proxy-addr + + + + forwarded + 0.2.0 + Parse HTTP X-Forwarded-For header + + + MIT + + + pkg:npm/forwarded@0.2.0?vcs_url=jshttp/forwarded + + + jshttp/forwarded + as detected from PackageJson property "repository" + + + + node_modules/forwarded + + + + whitequark <whitequark@whitequark.org> + ipaddr.js + 1.9.1 + A library for manipulating IPv4 and IPv6 addresses in JavaScript. + + + MIT + + + pkg:npm/ipaddr.js@1.9.1?vcs_url=git://github.com/whitequark/ipaddr.js + + + git://github.com/whitequark/ipaddr.js + as detected from PackageJson property "repository" + + + + node_modules/ipaddr.js + + + + TJ Holowaychuk <tj@vision-media.ca> (http://tjholowaychuk.com) + range-parser + 1.2.1 + Range header field string parser + + + MIT + + + pkg:npm/range-parser@1.2.1?vcs_url=jshttp/range-parser + + + jshttp/range-parser + as detected from PackageJson property "repository" + + + + node_modules/range-parser + + + + TJ Holowaychuk <tj@vision-media.ca> + send + 0.18.0 + Better streaming static file server with Range and conditional-GET support + + + MIT + + + pkg:npm/send@0.18.0?vcs_url=pillarjs/send + + + pillarjs/send + as detected from PackageJson property "repository" + + + + + TJ Holowaychuk <tj@vision-media.ca> + debug + 2.6.9 + small debugging utility + + + MIT + + + pkg:npm/debug@2.6.9?vcs_url=git://github.com/visionmedia/debug.git + + + git://github.com/visionmedia/debug.git + as detected from PackageJson property "repository.url" + + + + + ms + 2.0.0 + Tiny milisecond conversion utility + + + MIT + + + pkg:npm/ms@2.0.0?vcs_url=zeit/ms + + + zeit/ms + as detected from PackageJson property "repository" + + + + node_modules/send/node_modules/debug/node_modules/ms + + + + + node_modules/send/node_modules/debug + + + + Douglas Christopher Wilson <doug@somethingdoug.com> + depd + 2.0.0 + Deprecate all the things + + + MIT + + + pkg:npm/depd@2.0.0?vcs_url=dougwilson/nodejs-depd + + + dougwilson/nodejs-depd + as detected from PackageJson property "repository" + + + + node_modules/send/node_modules/depd + + + + Robert Kieffer + mime + 1.6.0 + A comprehensive library for mime-type mapping + + + MIT + + + pkg:npm/mime@1.6.0?vcs_url=https://github.com/broofa/node-mime + + + https://github.com/broofa/node-mime + as detected from PackageJson property "repository.url" + + + + node_modules/send/node_modules/mime + + + + ms + 2.1.3 + Tiny millisecond conversion utility + + + MIT + + + pkg:npm/ms@2.1.3?vcs_url=vercel/ms + + + vercel/ms + as detected from PackageJson property "repository" + + + + node_modules/send/node_modules/ms + + + + + node_modules/send + + + + Douglas Christopher Wilson <doug@somethingdoug.com> + serve-static + 1.15.0 + Serve static files + + + MIT + + + pkg:npm/serve-static@1.15.0?vcs_url=expressjs/serve-static + + + expressjs/serve-static + as detected from PackageJson property "repository" + + + + node_modules/serve-static + + + + Douglas Christopher Wilson <doug@somethingdoug.com> + media-typer + 0.3.0 + Simple RFC 6838 media type parser and formatter + + + MIT + + + pkg:npm/media-typer@0.3.0?vcs_url=jshttp/media-typer + + + jshttp/media-typer + as detected from PackageJson property "repository" + + + + node_modules/media-typer + + + + Jared Hanson + utils-merge + 1.0.1 + merge() utility function + + + MIT + + + pkg:npm/utils-merge@1.0.1?vcs_url=git://github.com/jaredhanson/utils-merge.git + + + git://github.com/jaredhanson/utils-merge.git + as detected from PackageJson property "repository.url" + + + http://github.com/jaredhanson/utils-merge/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/utils-merge + + + + Douglas Christopher Wilson <doug@somethingdoug.com> + vary + 1.1.2 + Manipulate the HTTP Vary header + + + MIT + + + pkg:npm/vary@1.1.2?vcs_url=jshttp/vary + + + jshttp/vary + as detected from PackageJson property "repository" + + + + node_modules/vary + + + + Jason Mulligan <jason.mulligan@avoidwork.com> + filesize + 3.6.1 + JavaScript library to generate a human readable String describing the file size + + + BSD-3-Clause + + + pkg:npm/filesize@3.6.1?vcs_url=git://github.com/avoidwork/filesize.js.git + + + git://github.com/avoidwork/filesize.js.git + as detected from PackageJson property "repository.url" + + + https://filesizejs.com + as detected from PackageJson property "homepage" + + + https://github.com/avoidwork/filesize.js/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/filesize + + + + Sindre Sorhus + gzip-size + 5.1.1 + Get the gzipped size of a string or buffer + + + MIT + + + pkg:npm/gzip-size@5.1.1?vcs_url=sindresorhus/gzip-size + + + sindresorhus/gzip-size + as detected from PackageJson property "repository" + + + + node_modules/gzip-size + + + + Raynos <raynos2@gmail.com> + duplexer + 0.1.2 + Creates a duplex stream + + + MIT + + + pkg:npm/duplexer@0.1.2?vcs_url=git://github.com/Raynos/duplexer.git + + + git://github.com/Raynos/duplexer.git + as detected from PackageJson property "repository" + + + https://github.com/Raynos/duplexer + as detected from PackageJson property "homepage" + + + https://github.com/Raynos/duplexer/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/duplexer + + + + Domenic Denicola <d@domenic.me> (https://domenic.me/) + opener + 1.5.2 + Opens stuff, like webpages and files and executables, cross-platform + + (WTFPL OR MIT) + + pkg:npm/opener@1.5.2?vcs_url=domenic/opener + + + domenic/opener + as detected from PackageJson property "repository" + + + + node_modules/opener + + + + Eli Perelman <eli@eliperelman.com> + webpack-chain + 4.12.1 + + + MPL-2.0 + + + pkg:npm/webpack-chain@4.12.1?vcs_url=neutrinojs/webpack-chain + + + neutrinojs/webpack-chain + as detected from PackageJson property "repository" + + + + node_modules/webpack-chain + + + + Nick Fisher + deepmerge + 1.5.2 + A library for deep (recursive) merging of Javascript objects + + + MIT + + + pkg:npm/deepmerge@1.5.2?vcs_url=git://github.com/KyleAMathews/deepmerge.git + + + git://github.com/KyleAMathews/deepmerge.git + as detected from PackageJson property "repository.url" + + + https://github.com/KyleAMathews/deepmerge + as detected from PackageJson property "homepage" + + + + node_modules/deepmerge + + + + Blake Embrey + javascript-stringify + 1.6.0 + Stringify is to `eval` as `JSON.stringify` is to `JSON.parse` + + + MIT + + + pkg:npm/javascript-stringify@1.6.0?vcs_url=https://github.com/blakeembrey/javascript-stringify.git + + + https://github.com/blakeembrey/javascript-stringify.git + as detected from PackageJson property "repository" + + + + node_modules/javascript-stringify + + + + Tobias Koppers @sokra + webpack-dev-server + 3.11.3 + Serves a webpack app. Updates the browser on changes. + + + MIT + + + pkg:npm/webpack-dev-server@3.11.3?vcs_url=https://github.com/webpack/webpack-dev-server.git + + + https://github.com/webpack/webpack-dev-server.git + as detected from PackageJson property "repository" + + + https://github.com/webpack/webpack-dev-server#readme + as detected from PackageJson property "homepage" + + + https://github.com/webpack/webpack-dev-server/issues + as detected from PackageJson property "bugs" + + + + + Paul Miller (https://paulmillr.com), Elan Shanker + chokidar + 2.1.8 + A neat wrapper around node.js fs.watch / fs.watchFile / fsevents. + + + MIT + + + pkg:npm/chokidar@2.1.8?vcs_url=https://github.com/paulmillr/chokidar.git + + + https://github.com/paulmillr/chokidar.git + as detected from PackageJson property "repository.url" + + + https://github.com/paulmillr/chokidar + as detected from PackageJson property "homepage" + + + https://github.com/paulmillr/chokidar/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/webpack-dev-server/node_modules/chokidar + + + + Sindre Sorhus + is-binary-path + 1.0.1 + Check if a filepath is a binary file + + + MIT + + + pkg:npm/is-binary-path@1.0.1?vcs_url=sindresorhus/is-binary-path + + + sindresorhus/is-binary-path + as detected from PackageJson property "repository" + + + + node_modules/webpack-dev-server/node_modules/is-binary-path + + + + Sindre Sorhus + binary-extensions + 1.13.1 + List of binary file extensions + + + MIT + + + pkg:npm/binary-extensions@1.13.1?vcs_url=sindresorhus/binary-extensions + + + sindresorhus/binary-extensions + as detected from PackageJson property "repository" + + + + node_modules/webpack-dev-server/node_modules/binary-extensions + + + + Thorsten Lorenz <thlorenz@gmx.de> (thlorenz.com) + readdirp + 2.2.1 + Recursive version of fs.readdir with streaming api. + + + MIT + + + pkg:npm/readdirp@2.2.1?vcs_url=git://github.com/paulmillr/readdirp.git + + + git://github.com/paulmillr/readdirp.git + as detected from PackageJson property "repository.url" + + + https://github.com/paulmillr/readdirp + as detected from PackageJson property "homepage" + + + + node_modules/webpack-dev-server/node_modules/readdirp + + + + Sindre Sorhus + import-local + 2.0.0 + Let a globally installed package use a locally installed version of itself if available + + + MIT + + + pkg:npm/import-local@2.0.0?vcs_url=sindresorhus/import-local + + + sindresorhus/import-local + as detected from PackageJson property "repository" + + + + node_modules/webpack-dev-server/node_modules/import-local + + + + Sindre Sorhus + pkg-dir + 3.0.0 + Find the root directory of a Node.js project or npm package + + + MIT + + + pkg:npm/pkg-dir@3.0.0?vcs_url=sindresorhus/pkg-dir + + + sindresorhus/pkg-dir + as detected from PackageJson property "repository" + + + + node_modules/webpack-dev-server/node_modules/pkg-dir + + + + Sindre Sorhus + find-up + 3.0.0 + Find a file or directory by walking up parent directories + + + MIT + + + pkg:npm/find-up@3.0.0?vcs_url=sindresorhus/find-up + + + sindresorhus/find-up + as detected from PackageJson property "repository" + + + + node_modules/webpack-dev-server/node_modules/find-up + + + + Fedor Indutny <fedor@indutny.com> + ip + 1.1.8 + + + MIT + + + pkg:npm/ip@1.1.8?vcs_url=http://github.com/indutny/node-ip.git + + + http://github.com/indutny/node-ip.git + as detected from PackageJson property "repository.url" + + + https://github.com/indutny/node-ip + as detected from PackageJson property "homepage" + + + + node_modules/webpack-dev-server/node_modules/ip + + + + Sindre Sorhus + is-absolute-url + 3.0.3 + Check if a URL is absolute + + + MIT + + + pkg:npm/is-absolute-url@3.0.3?vcs_url=sindresorhus/is-absolute-url + + + sindresorhus/is-absolute-url + as detected from PackageJson property "repository" + + + + node_modules/webpack-dev-server/node_modules/is-absolute-url + + + + webpack Contrib (https://github.com/webpack-contrib) + schema-utils + 1.0.0 + webpack Validation Utils + + + MIT + + + pkg:npm/schema-utils@1.0.0?vcs_url=https://github.com/webpack-contrib/schema-utils + + + https://github.com/webpack-contrib/schema-utils + as detected from PackageJson property "repository" + + + https://github.com/webpack-contrib/schema-utils + as detected from PackageJson property "homepage" + + + https://github.com/webpack-contrib/schema-utils/issues + as detected from PackageJson property "bugs" + + + + node_modules/webpack-dev-server/node_modules/schema-utils + + + + Sindre Sorhus + strip-ansi + 3.0.1 + Strip ANSI escape codes + + + MIT + + + pkg:npm/strip-ansi@3.0.1?vcs_url=chalk/strip-ansi + + + chalk/strip-ansi + as detected from PackageJson property "repository" + + + + node_modules/webpack-dev-server/node_modules/strip-ansi + + + + Sindre Sorhus + ansi-regex + 2.1.1 + Regular expression for matching ANSI escape codes + + + MIT + + + pkg:npm/ansi-regex@2.1.1?vcs_url=chalk/ansi-regex + + + chalk/ansi-regex + as detected from PackageJson property "repository" + + + + node_modules/webpack-dev-server/node_modules/ansi-regex + + + + Sindre Sorhus + supports-color + 6.1.0 + Detect whether a terminal supports color + + + MIT + + + pkg:npm/supports-color@6.1.0?vcs_url=chalk/supports-color + + + chalk/supports-color + as detected from PackageJson property "repository" + + + + node_modules/webpack-dev-server/node_modules/supports-color + + + + Einar Otto Stangvik <einaros@gmail.com> (http://2x.io) + ws + 6.2.2 + Simple to use, blazing fast and thoroughly tested websocket client and server for Node.js + + + MIT + + + pkg:npm/ws@6.2.2?vcs_url=websockets/ws + + + websockets/ws + as detected from PackageJson property "repository" + + + https://github.com/websockets/ws + as detected from PackageJson property "homepage" + + + https://github.com/websockets/ws/issues + as detected from PackageJson property "bugs" + + + + node_modules/webpack-dev-server/node_modules/ws + + + + yargs + 13.3.2 + yargs the modern, pirate-themed, successor to optimist. + + + MIT + + + pkg:npm/yargs@13.3.2?vcs_url=https://github.com/yargs/yargs.git + + + https://github.com/yargs/yargs.git + as detected from PackageJson property "repository.url" + + + https://yargs.js.org/ + as detected from PackageJson property "homepage" + + + + node_modules/webpack-dev-server/node_modules/yargs + + + + Sindre Sorhus + locate-path + 3.0.0 + Get the first path that exists on disk of multiple paths + + + MIT + + + pkg:npm/locate-path@3.0.0?vcs_url=sindresorhus/locate-path + + + sindresorhus/locate-path + as detected from PackageJson property "repository" + + + + node_modules/webpack-dev-server/node_modules/locate-path + + + + Sindre Sorhus + p-locate + 3.0.0 + Get the first fulfilled promise that satisfies the provided testing function + + + MIT + + + pkg:npm/p-locate@3.0.0?vcs_url=sindresorhus/p-locate + + + sindresorhus/p-locate + as detected from PackageJson property "repository" + + + + node_modules/webpack-dev-server/node_modules/p-locate + + + + Sindre Sorhus + p-limit + 2.3.0 + Run multiple promise-returning & async functions with limited concurrency + + + MIT + + + pkg:npm/p-limit@2.3.0?vcs_url=sindresorhus/p-limit + + + sindresorhus/p-limit + as detected from PackageJson property "repository" + + + + node_modules/webpack-dev-server/node_modules/p-limit + + + + Sindre Sorhus + p-try + 2.2.0 + `Start a promise chain + + + MIT + + + pkg:npm/p-try@2.2.0?vcs_url=sindresorhus/p-try + + + sindresorhus/p-try + as detected from PackageJson property "repository" + + + + node_modules/webpack-dev-server/node_modules/p-try + + + + Ben Coe <ben@npmjs.com> + require-main-filename + 2.0.0 + shim for require.main.filename() that works in as many environments as possible + + + ISC + + + pkg:npm/require-main-filename@2.0.0?vcs_url=git+ssh://git@github.com/yargs/require-main-filename.git + + + git+ssh://git@github.com/yargs/require-main-filename.git + as detected from PackageJson property "repository.url" + + + https://github.com/yargs/require-main-filename#readme + as detected from PackageJson property "homepage" + + + https://github.com/yargs/require-main-filename/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/webpack-dev-server/node_modules/require-main-filename + + + + Sindre Sorhus + string-width + 3.1.0 + Get the visual width of a string - the number of columns required to display it + + + MIT + + + pkg:npm/string-width@3.1.0?vcs_url=sindresorhus/string-width + + + sindresorhus/string-width + as detected from PackageJson property "repository" + + + + + Sindre Sorhus + strip-ansi + 5.2.0 + Strip ANSI escape codes from a string + + + MIT + + + pkg:npm/strip-ansi@5.2.0?vcs_url=chalk/strip-ansi + + + chalk/strip-ansi + as detected from PackageJson property "repository" + + + + node_modules/webpack-dev-server/node_modules/string-width/node_modules/strip-ansi + + + + Sindre Sorhus + ansi-regex + 4.1.1 + Regular expression for matching ANSI escape codes + + + MIT + + + pkg:npm/ansi-regex@4.1.1?vcs_url=chalk/ansi-regex + + + chalk/ansi-regex + as detected from PackageJson property "repository" + + + + node_modules/webpack-dev-server/node_modules/string-width/node_modules/ansi-regex + + + + + node_modules/webpack-dev-server/node_modules/string-width + + + + Mathias Bynens + emoji-regex + 7.0.3 + A regular expression to match all Emoji-only symbols as per the Unicode Standard. + + + MIT + + + pkg:npm/emoji-regex@7.0.3?vcs_url=https://github.com/mathiasbynens/emoji-regex.git + + + https://github.com/mathiasbynens/emoji-regex.git + as detected from PackageJson property "repository.url" + + + https://mths.be/emoji-regex + as detected from PackageJson property "homepage" + + + https://github.com/mathiasbynens/emoji-regex/issues + as detected from PackageJson property "bugs" + + + + node_modules/webpack-dev-server/node_modules/emoji-regex + + + + Sindre Sorhus + is-fullwidth-code-point + 2.0.0 + Check if the character represented by a given Unicode code point is fullwidth + + + MIT + + + pkg:npm/is-fullwidth-code-point@2.0.0?vcs_url=sindresorhus/is-fullwidth-code-point + + + sindresorhus/is-fullwidth-code-point + as detected from PackageJson property "repository" + + + + node_modules/webpack-dev-server/node_modules/is-fullwidth-code-point + + + + Ben Coe <ben@npmjs.com> + yargs-parser + 13.1.2 + the mighty option parser used by yargs + + + ISC + + + pkg:npm/yargs-parser@13.1.2?vcs_url=git@github.com:yargs/yargs-parser.git + + node_modules/webpack-dev-server/node_modules/yargs-parser + + + + + node_modules/webpack-dev-server + + + + mahdyar + ansi-html-community + 0.0.8 + An elegant lib that converts the chalked (ANSI) text to HTML. (Community) + + + Apache-2.0 + + + pkg:npm/ansi-html-community@0.0.8?vcs_url=git://github.com/mahdyar/ansi-html-community.git + + + git://github.com/mahdyar/ansi-html-community.git + as detected from PackageJson property "repository.url" + + + https://github.com/mahdyar/ansi-html-community + as detected from PackageJson property "homepage" + + + https://github.com/mahdyar/ansi-html-community/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/ansi-html-community + + + + Thomas Watson Steen <w@tson.dk> (https://twitter.com/wa7son) + bonjour + 3.5.0 + A Bonjour/Zeroconf implementation in pure JavaScript + + + MIT + + + pkg:npm/bonjour@3.5.0?vcs_url=https://github.com/watson/bonjour.git + + + https://github.com/watson/bonjour.git + as detected from PackageJson property "repository.url" + + + https://github.com/watson/bonjour + as detected from PackageJson property "homepage" + + + https://github.com/watson/bonjour/issues + as detected from PackageJson property "bugs.url" + + + + + Blake Embrey + array-flatten + 2.1.2 + Flatten nested arrays + + + MIT + + + pkg:npm/array-flatten@2.1.2?vcs_url=git://github.com/blakeembrey/array-flatten.git + + + git://github.com/blakeembrey/array-flatten.git + as detected from PackageJson property "repository.url" + + + https://github.com/blakeembrey/array-flatten + as detected from PackageJson property "homepage" + + + https://github.com/blakeembrey/array-flatten/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/bonjour/node_modules/array-flatten + + + + + node_modules/bonjour + + + + James Halliday + deep-equal + 1.1.1 + node's assert.deepEqual algorithm + + + MIT + + + pkg:npm/deep-equal@1.1.1?vcs_url=http://github.com/substack/node-deep-equal.git + + + http://github.com/substack/node-deep-equal.git + as detected from PackageJson property "repository.url" + + + + node_modules/deep-equal + + + + Jordan Harband + is-arguments + 1.1.1 + Is this an arguments object? It's a harder question than you think. + + + MIT + + + pkg:npm/is-arguments@1.1.1?vcs_url=git://github.com/inspect-js/is-arguments.git + + + git://github.com/inspect-js/is-arguments.git + as detected from PackageJson property "repository.url" + + + https://github.com/inspect-js/is-arguments + as detected from PackageJson property "homepage" + + + https://github.com/inspect-js/is-arguments/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/is-arguments + + + + Jordan Harband + object-is + 1.1.5 + ES2015-compliant shim for Object.is - differentiates between -0 and +0 + + + MIT + + + pkg:npm/object-is@1.1.5?vcs_url=git://github.com/es-shims/object-is.git + + + git://github.com/es-shims/object-is.git + as detected from PackageJson property "repository.url" + + + https://github.com/es-shims/object-is + as detected from PackageJson property "homepage" + + + https://github.com/es-shims/object-is/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/object-is + + + + Thomas Watson Steen <w@tson.dk> (https://twitter.com/wa7son) + dns-equal + 1.0.0 + Compare DNS record strings for equality + + + MIT + + + pkg:npm/dns-equal@1.0.0?vcs_url=git+https://github.com/watson/dns-equal.git + + + git+https://github.com/watson/dns-equal.git + as detected from PackageJson property "repository.url" + + + https://github.com/watson/dns-equal#readme + as detected from PackageJson property "homepage" + + + https://github.com/watson/dns-equal/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/dns-equal + + + + Thomas Watson Steen <w@tson.dk> (https://twitter.com/wa7son) + dns-txt + 2.0.2 + Encode/decode DNS-SD TXT record RDATA fields + + + MIT + + + pkg:npm/dns-txt@2.0.2?vcs_url=https://github.com/watson/dns-txt.git + + + https://github.com/watson/dns-txt.git + as detected from PackageJson property "repository.url" + + + https://github.com/watson/dns-txt + as detected from PackageJson property "homepage" + + + https://github.com/watson/dns-txt/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/dns-txt + + + + Ryan Day + buffer-indexof + 1.1.1 + find the index of a buffer in a buffer + + + MIT + + + pkg:npm/buffer-indexof@1.1.1?vcs_url=git://github.com/soldair/node-buffer-indexof.git + + + git://github.com/soldair/node-buffer-indexof.git + as detected from PackageJson property "repository.url" + + + + node_modules/buffer-indexof + + + + Mathias Buus (@mafintosh) + multicast-dns-service-types + 1.1.0 + Parse and stringify mdns service types + + + MIT + + + pkg:npm/multicast-dns-service-types@1.1.0?vcs_url=https://github.com/mafintosh/multicast-dns-service-types.git + + + https://github.com/mafintosh/multicast-dns-service-types.git + as detected from PackageJson property "repository.url" + + + https://github.com/mafintosh/multicast-dns-service-types + as detected from PackageJson property "homepage" + + + https://github.com/mafintosh/multicast-dns-service-types/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/multicast-dns-service-types + + + + Mathias Buus (@mafintosh) + multicast-dns + 6.2.3 + Low level multicast-dns implementation in pure javascript + + + MIT + + + pkg:npm/multicast-dns@6.2.3?vcs_url=https://github.com/mafintosh/multicast-dns.git + + + https://github.com/mafintosh/multicast-dns.git + as detected from PackageJson property "repository.url" + + + https://github.com/mafintosh/multicast-dns + as detected from PackageJson property "homepage" + + + https://github.com/mafintosh/multicast-dns/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/multicast-dns + + + + Mathias Buus + dns-packet + 1.3.4 + An abstract-encoding compliant module for encoding / decoding DNS packets + + + MIT + + + pkg:npm/dns-packet@1.3.4?vcs_url=https://github.com/mafintosh/dns-packet + + + https://github.com/mafintosh/dns-packet + as detected from PackageJson property "repository.url" + + + https://github.com/mafintosh/dns-packet + as detected from PackageJson property "homepage" + + + https://github.com/mafintosh/dns-packet/issues + as detected from PackageJson property "bugs.url" + + + + + Fedor Indutny <fedor@indutny.com> + ip + 1.1.8 + + + MIT + + + pkg:npm/ip@1.1.8?vcs_url=http://github.com/indutny/node-ip.git + + + http://github.com/indutny/node-ip.git + as detected from PackageJson property "repository.url" + + + https://github.com/indutny/node-ip + as detected from PackageJson property "homepage" + + + + node_modules/dns-packet/node_modules/ip + + + + + node_modules/dns-packet + + + + Mathias Buus Madsen <mathiasbuus@gmail.com> + thunky + 1.1.0 + delay the evaluation of a paramless async function and cache the result + + + MIT + + + pkg:npm/thunky@1.1.0?vcs_url=git://github.com/mafintosh/thunky.git + + + git://github.com/mafintosh/thunky.git + as detected from PackageJson property "repository.url" + + + https://github.com/mafintosh/thunky#readme + as detected from PackageJson property "homepage" + + + https://github.com/mafintosh/thunky/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/thunky + + + + compression + 1.7.4 + Node.js compression middleware + + + MIT + + + pkg:npm/compression@1.7.4?vcs_url=expressjs/compression + + + expressjs/compression + as detected from PackageJson property "repository" + + + + + TJ Holowaychuk <tj@vision-media.ca> (http://tjholowaychuk.com) + bytes + 3.0.0 + Utility to parse a string bytes to bytes and vice-versa + + + MIT + + + pkg:npm/bytes@3.0.0?vcs_url=visionmedia/bytes.js + + + visionmedia/bytes.js + as detected from PackageJson property "repository" + + + + node_modules/compression/node_modules/bytes + + + + TJ Holowaychuk <tj@vision-media.ca> + debug + 2.6.9 + small debugging utility + + + MIT + + + pkg:npm/debug@2.6.9?vcs_url=git://github.com/visionmedia/debug.git + + + git://github.com/visionmedia/debug.git + as detected from PackageJson property "repository.url" + + + + node_modules/compression/node_modules/debug + + + + ms + 2.0.0 + Tiny milisecond conversion utility + + + MIT + + + pkg:npm/ms@2.0.0?vcs_url=zeit/ms + + + zeit/ms + as detected from PackageJson property "repository" + + + + node_modules/compression/node_modules/ms + + + + + node_modules/compression + + + + compressible + 2.0.18 + Compressible Content-Type / mime checking + + + MIT + + + pkg:npm/compressible@2.0.18?vcs_url=jshttp/compressible + + + jshttp/compressible + as detected from PackageJson property "repository" + + + + node_modules/compressible + + + + mime-db + 1.52.0 + Media Type Dataprojx + + + MIT + + + pkg:npm/mime-db@1.52.0?vcs_url=jshttp/mime-db + + + jshttp/mime-db + as detected from PackageJson property "repository" + + + + node_modules/mime-db + + + + Douglas Christopher Wilson <doug@somethingdoug.com> + on-headers + 1.0.2 + Execute a listener when a response is about to write headers + + + MIT + + + pkg:npm/on-headers@1.0.2?vcs_url=jshttp/on-headers + + + jshttp/on-headers + as detected from PackageJson property "repository" + + + + node_modules/on-headers + + + + Ben Ripkens + connect-history-api-fallback + 1.6.0 + Provides a fallback for non-existing directories so that the HTML 5 history API can be used. + + + MIT + + + pkg:npm/connect-history-api-fallback@1.6.0?vcs_url=http://github.com/bripkens/connect-history-api-fallback.git + + + http://github.com/bripkens/connect-history-api-fallback.git + as detected from PackageJson property "repository.url" + + + + node_modules/connect-history-api-fallback + + + + Sindre Sorhus + del + 4.1.1 + Delete files and folders + + + MIT + + + pkg:npm/del@4.1.1?vcs_url=sindresorhus/del + + + sindresorhus/del + as detected from PackageJson property "repository" + + + + + Sindre Sorhus + globby + 6.1.0 + Extends `glob` with support for multiple patterns and exposes a Promise API + + + MIT + + + pkg:npm/globby@6.1.0?vcs_url=sindresorhus/globby + + + sindresorhus/globby + as detected from PackageJson property "repository" + + + + + Sindre Sorhus + pify + 2.3.0 + Promisify a callback-style function + + + MIT + + + pkg:npm/pify@2.3.0?vcs_url=sindresorhus/pify + + + sindresorhus/pify + as detected from PackageJson property "repository" + + + + node_modules/del/node_modules/globby/node_modules/pify + + + + + node_modules/del/node_modules/globby + + + + Sindre Sorhus + p-map + 2.1.0 + Map over promises concurrently + + + MIT + + + pkg:npm/p-map@2.1.0?vcs_url=sindresorhus/p-map + + + sindresorhus/p-map + as detected from PackageJson property "repository" + + + + node_modules/del/node_modules/p-map + + + + + node_modules/del + + + + Vsevolod Strukchinsky + pinkie + 2.0.4 + Itty bitty little widdle twinkie pinkie ES2015 Promise implementation + + + MIT + + + pkg:npm/pinkie@2.0.4?vcs_url=floatdrop/pinkie + + + floatdrop/pinkie + as detected from PackageJson property "repository" + + + + node_modules/pinkie + + + + Sindre Sorhus + is-path-cwd + 2.2.0 + Check if a path is the current working directory + + + MIT + + + pkg:npm/is-path-cwd@2.2.0?vcs_url=sindresorhus/is-path-cwd + + + sindresorhus/is-path-cwd + as detected from PackageJson property "repository" + + + + node_modules/is-path-cwd + + + + Sindre Sorhus + is-path-in-cwd + 2.1.0 + Check if a path is in the current working directory + + + MIT + + + pkg:npm/is-path-in-cwd@2.1.0?vcs_url=sindresorhus/is-path-in-cwd + + + sindresorhus/is-path-in-cwd + as detected from PackageJson property "repository" + + + + + Sindre Sorhus + is-path-inside + 2.1.0 + Check if a path is inside another path + + + MIT + + + pkg:npm/is-path-inside@2.1.0?vcs_url=sindresorhus/is-path-inside + + + sindresorhus/is-path-inside + as detected from PackageJson property "repository" + + + + node_modules/is-path-in-cwd/node_modules/is-path-inside + + + + + node_modules/is-path-in-cwd + + + + Marat Dulin + html-entities + 1.4.0 + Faster HTML entities encode/decode library. + + + MIT + + + pkg:npm/html-entities@1.4.0?vcs_url=https://github.com/mdevils/node-html-entities.git + + + https://github.com/mdevils/node-html-entities.git + as detected from PackageJson property "repository.url" + + + + node_modules/html-entities + + + + Steven Chim + http-proxy-middleware + 0.19.1 + The one-liner node.js proxy middleware for connect, express and browser-sync + + + MIT + + + pkg:npm/http-proxy-middleware@0.19.1?vcs_url=https://github.com/chimurai/http-proxy-middleware.git + + + https://github.com/chimurai/http-proxy-middleware.git + as detected from PackageJson property "repository.url" + + + https://github.com/chimurai/http-proxy-middleware + as detected from PackageJson property "homepage" + + + https://github.com/chimurai/http-proxy-middleware/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/http-proxy-middleware + + + + Charlie Robbins <charlie.robbins@gmail.com> + http-proxy + 1.18.1 + HTTP proxying for the masses + + + MIT + + + pkg:npm/http-proxy@1.18.1?vcs_url=https://github.com/http-party/node-http-proxy.git + + + https://github.com/http-party/node-http-proxy.git + as detected from PackageJson property "repository.url" + + + + node_modules/http-proxy + + + + Arnout Kazemier + eventemitter3 + 4.0.7 + EventEmitter3 focuses on performance while maintaining a Node.js AND browser compatible interface. + + + MIT + + + pkg:npm/eventemitter3@4.0.7?vcs_url=git://github.com/primus/eventemitter3.git + + + git://github.com/primus/eventemitter3.git + as detected from PackageJson property "repository.url" + + + https://github.com/primus/eventemitter3/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/eventemitter3 + + + + Ruben Verborgh <ruben@verborgh.org> (https://ruben.verborgh.org/) + follow-redirects + 1.15.2 + HTTP and HTTPS modules that follow redirects. + + + MIT + + + pkg:npm/follow-redirects@1.15.2?vcs_url=git@github.com:follow-redirects/follow-redirects.git + + + https://github.com/follow-redirects/follow-redirects + as detected from PackageJson property "homepage" + + + https://github.com/follow-redirects/follow-redirects/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/follow-redirects + + + + Arnout Kazemier + requires-port + 1.0.0 + Check if a protocol requires a certain port number to be added to an URL. + + + MIT + + + pkg:npm/requires-port@1.0.0?vcs_url=https://github.com/unshiftio/requires-port + + + https://github.com/unshiftio/requires-port + as detected from PackageJson property "repository.url" + + + https://github.com/unshiftio/requires-port + as detected from PackageJson property "homepage" + + + https://github.com/unshiftio/requires-port/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/requires-port + + + + Sindre Sorhus + internal-ip + 4.3.0 + Get your internal IP address + + + MIT + + + pkg:npm/internal-ip@4.3.0?vcs_url=sindresorhus/internal-ip + + + sindresorhus/internal-ip + as detected from PackageJson property "repository" + + + + + silverwind <me@silverwind.io> + default-gateway + 4.2.0 + Get the default network gateway, cross-platform. + + + BSD-2-Clause + + + pkg:npm/default-gateway@4.2.0?vcs_url=silverwind/default-gateway + + + silverwind/default-gateway + as detected from PackageJson property "repository" + + + + node_modules/internal-ip/node_modules/default-gateway + + + + + node_modules/internal-ip + + + + Sindre Sorhus + ip-regex + 2.1.0 + Regular expression for matching IP addresses (IPv4 & IPv6) + + + MIT + + + pkg:npm/ip-regex@2.1.0?vcs_url=sindresorhus/ip-regex + + + sindresorhus/ip-regex + as detected from PackageJson property "repository" + + + + node_modules/ip-regex + + + + Marten de Vries + killable + 1.0.1 + Keeps track of a server's open sockets so they can be destroyed at a moment's notice. + + + ISC + + + pkg:npm/killable@1.0.1?vcs_url=https://github.com/marten-de-vries/killable.git + + + https://github.com/marten-de-vries/killable.git + as detected from PackageJson property "repository.url" + + + https://github.com/marten-de-vries/killable/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/killable + + + + Tim Perry + loglevel + 1.8.0 + Minimal lightweight logging for JavaScript, adding reliable log level methods to any available console.log methods + + + MIT + + + pkg:npm/loglevel@1.8.0?vcs_url=git://github.com/pimterry/loglevel.git + + + git://github.com/pimterry/loglevel.git + as detected from PackageJson property "repository.url" + + + https://github.com/pimterry/loglevel + as detected from PackageJson property "homepage" + + + https://github.com/pimterry/loglevel/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/loglevel + + + + Sindre Sorhus + opn + 5.5.0 + A better node-open. Opens stuff like websites, files, executables. Cross-platform. + + + MIT + + + pkg:npm/opn@5.5.0?vcs_url=sindresorhus/opn + + + sindresorhus/opn + as detected from PackageJson property "repository" + + + + + Sindre Sorhus + is-wsl + 1.1.0 + Check if the process is running inside Windows Subsystem for Linux (Bash on Windows) + + + MIT + + + pkg:npm/is-wsl@1.1.0?vcs_url=sindresorhus/is-wsl + + + sindresorhus/is-wsl + as detected from PackageJson property "repository" + + + + node_modules/opn/node_modules/is-wsl + + + + + node_modules/opn + + + + Sindre Sorhus + p-retry + 3.0.1 + Retry a promise-returning or async function + + + MIT + + + pkg:npm/p-retry@3.0.1?vcs_url=sindresorhus/p-retry + + + sindresorhus/p-retry + as detected from PackageJson property "repository" + + + + node_modules/p-retry + + + + Tim Koschutzki <tim@debuggable.com> (http://debuggable.com/) + retry + 0.12.0 + Abstraction for exponential and custom retry strategies for failed operations. + + + MIT + + + pkg:npm/retry@0.12.0?vcs_url=git://github.com/tim-kos/node-retry.git + + + git://github.com/tim-kos/node-retry.git + as detected from PackageJson property "repository.url" + + + https://github.com/tim-kos/node-retry + as detected from PackageJson property "homepage" + + + + node_modules/retry + + + + Jose F. Romaniello <jfromaniello@gmail.com> (http://joseoncode.com) + selfsigned + 1.10.14 + Generate self signed certificates private and public keys + + + MIT + + + pkg:npm/selfsigned@1.10.14?vcs_url=git://github.com/jfromaniello/selfsigned.git + + + git://github.com/jfromaniello/selfsigned.git + as detected from PackageJson property "repository.url" + + + + node_modules/selfsigned + + + + Digital Bazaar, Inc. + node-forge + 0.10.0 + JavaScript implementations of network transports, cryptography, ciphers, PKI, message digests, and various utilities. + + (BSD-3-Clause OR GPL-2.0) + + pkg:npm/node-forge@0.10.0?vcs_url=https://github.com/digitalbazaar/forge + + + https://github.com/digitalbazaar/forge + as detected from PackageJson property "repository.url" + + + https://github.com/digitalbazaar/forge + as detected from PackageJson property "homepage" + + + https://github.com/digitalbazaar/forge/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/node-forge + + + + Douglas Christopher Wilson <doug@somethingdoug.com> + serve-index + 1.9.1 + Serve directory listings + + + MIT + + + pkg:npm/serve-index@1.9.1?vcs_url=expressjs/serve-index + + + expressjs/serve-index + as detected from PackageJson property "repository" + + + + + TJ Holowaychuk <tj@vision-media.ca> + debug + 2.6.9 + small debugging utility + + + MIT + + + pkg:npm/debug@2.6.9?vcs_url=git://github.com/visionmedia/debug.git + + + git://github.com/visionmedia/debug.git + as detected from PackageJson property "repository.url" + + + + node_modules/serve-index/node_modules/debug + + + + ms + 2.0.0 + Tiny milisecond conversion utility + + + MIT + + + pkg:npm/ms@2.0.0?vcs_url=zeit/ms + + + zeit/ms + as detected from PackageJson property "repository" + + + + node_modules/serve-index/node_modules/ms + + + + Jonathan Ong <me@jongleberry.com> (http://jongleberry.com) + http-errors + 1.6.3 + Create HTTP error objects + + + MIT + + + pkg:npm/http-errors@1.6.3?vcs_url=jshttp/http-errors + + + jshttp/http-errors + as detected from PackageJson property "repository" + + + + node_modules/serve-index/node_modules/http-errors + + + + inherits + 2.0.3 + Browser-friendly inheritance fully compatible with standard node.js inherits() + + + ISC + + + pkg:npm/inherits@2.0.3?vcs_url=git://github.com/isaacs/inherits + + + git://github.com/isaacs/inherits + as detected from PackageJson property "repository" + + + + node_modules/serve-index/node_modules/inherits + + + + Wes Todd + setprototypeof + 1.1.0 + A small polyfill for Object.setprototypeof + + + ISC + + + pkg:npm/setprototypeof@1.1.0?vcs_url=https://github.com/wesleytodd/setprototypeof.git + + + https://github.com/wesleytodd/setprototypeof.git + as detected from PackageJson property "repository.url" + + + https://github.com/wesleytodd/setprototypeof + as detected from PackageJson property "homepage" + + + https://github.com/wesleytodd/setprototypeof/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/serve-index/node_modules/setprototypeof + + + + statuses + 1.5.0 + HTTP status utility + + + MIT + + + pkg:npm/statuses@1.5.0?vcs_url=jshttp/statuses + + + jshttp/statuses + as detected from PackageJson property "repository" + + + + node_modules/serve-index/node_modules/statuses + + + + + node_modules/serve-index + + + + TJ Holowaychuk <tj@vision-media.ca> + batch + 0.6.1 + Simple async batch with concurrency control and progress reporting. + + + MIT + + + pkg:npm/batch@0.6.1?vcs_url=https://github.com/visionmedia/batch.git + + + https://github.com/visionmedia/batch.git + as detected from PackageJson property "repository.url" + + + + node_modules/batch + + + + Douglas Christopher Wilson <doug@somethingdoug.com> + depd + 1.1.2 + Deprecate all the things + + + MIT + + + pkg:npm/depd@1.1.2?vcs_url=dougwilson/nodejs-depd + + + dougwilson/nodejs-depd + as detected from PackageJson property "repository" + + + + node_modules/depd + + + + Bryce Kahle + sockjs-client + 1.6.1 + SockJS-client is a browser JavaScript library that provides a WebSocket-like object. + + + MIT + + + pkg:npm/sockjs-client@1.6.1?vcs_url=https://github.com/sockjs/sockjs-client.git + + + https://github.com/sockjs/sockjs-client.git + as detected from PackageJson property "repository.url" + + + http://sockjs.org + as detected from PackageJson property "homepage" + + + https://github.com/sockjs/sockjs-client/issues + as detected from PackageJson property "bugs.url" + + + + + TJ Holowaychuk <tj@vision-media.ca> + debug + 3.2.7 + small debugging utility + + + MIT + + + pkg:npm/debug@3.2.7?vcs_url=git://github.com/visionmedia/debug.git + + + git://github.com/visionmedia/debug.git + as detected from PackageJson property "repository.url" + + + + node_modules/sockjs-client/node_modules/debug + + + + + node_modules/sockjs-client + + + + Aslak Hellesoy <aslak.hellesoy@gmail.com> + eventsource + 2.0.2 + W3C compliant EventSource client for Node.js and browser (polyfill) + + + MIT + + + pkg:npm/eventsource@2.0.2?vcs_url=git://github.com/EventSource/eventsource.git + + + git://github.com/EventSource/eventsource.git + as detected from PackageJson property "repository.url" + + + http://github.com/EventSource/eventsource + as detected from PackageJson property "homepage" + + + http://github.com/EventSource/eventsource/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/eventsource + + + + James Coglan <jcoglan@gmail.com> (http://jcoglan.com/) + faye-websocket + 0.11.4 + Standards-compliant WebSocket server and client + + + Apache-2.0 + + + pkg:npm/faye-websocket@0.11.4?vcs_url=git://github.com/faye/faye-websocket-node.git + + + git://github.com/faye/faye-websocket-node.git + as detected from PackageJson property "repository.url" + + + https://github.com/faye/faye-websocket-node + as detected from PackageJson property "homepage" + + + https://github.com/faye/faye-websocket-node/issues + as detected from PackageJson property "bugs" + + + + node_modules/faye-websocket + + + + James Coglan <jcoglan@gmail.com> (http://jcoglan.com/) + websocket-driver + 0.7.4 + WebSocket protocol handler with pluggable I/O + + + Apache-2.0 + + + pkg:npm/websocket-driver@0.7.4?vcs_url=git://github.com/faye/websocket-driver-node.git + + + git://github.com/faye/websocket-driver-node.git + as detected from PackageJson property "repository.url" + + + https://github.com/faye/websocket-driver-node + as detected from PackageJson property "homepage" + + + https://github.com/faye/websocket-driver-node/issues + as detected from PackageJson property "bugs" + + + + node_modules/websocket-driver + + + + Arnout Kazemier + url-parse + 1.5.10 + Small footprint URL parser that works seamlessly across Node.js and browser environments + + + MIT + + + pkg:npm/url-parse@1.5.10?vcs_url=https://github.com/unshiftio/url-parse.git + + + https://github.com/unshiftio/url-parse.git + as detected from PackageJson property "repository.url" + + + + node_modules/url-parse + + + + Arnout Kazemier + querystringify + 2.2.0 + Querystringify - Small, simple but powerful query string parser. + + + MIT + + + pkg:npm/querystringify@2.2.0?vcs_url=https://github.com/unshiftio/querystringify + + + https://github.com/unshiftio/querystringify + as detected from PackageJson property "repository.url" + + + https://github.com/unshiftio/querystringify + as detected from PackageJson property "homepage" + + + https://github.com/unshiftio/querystringify/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/querystringify + + + + Marek Majkowski + sockjs + 0.3.24 + 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. + + + MIT + + + pkg:npm/sockjs@0.3.24?vcs_url=https://github.com/sockjs/sockjs-node.git + + + https://github.com/sockjs/sockjs-node.git + as detected from PackageJson property "repository.url" + + + https://github.com/sockjs/sockjs-node + as detected from PackageJson property "homepage" + + + https://github.com/sockjs/sockjs-node/issues + as detected from PackageJson property "bugs.url" + + + + + uuid + 8.3.2 + RFC4122 (v1, v4, and v5) UUIDs + + + MIT + + + pkg:npm/uuid@8.3.2?vcs_url=https://github.com/uuidjs/uuid.git + + + https://github.com/uuidjs/uuid.git + as detected from PackageJson property "repository.url" + + + + node_modules/sockjs/node_modules/uuid + + + + + node_modules/sockjs + + + + Tim Caswell (https://github.com/creationix) + http-parser-js + 0.5.8 + A pure JS HTTP parser for node. + + + MIT + + + pkg:npm/http-parser-js@0.5.8?vcs_url=git://github.com/creationix/http-parser-js.git + + + git://github.com/creationix/http-parser-js.git + as detected from PackageJson property "repository.url" + + + + node_modules/http-parser-js + + + + James Coglan <jcoglan@gmail.com> (http://jcoglan.com/) + websocket-extensions + 0.1.4 + Generic extension manager for WebSocket connections + + + Apache-2.0 + + + pkg:npm/websocket-extensions@0.1.4?vcs_url=git://github.com/faye/websocket-extensions-node.git + + + git://github.com/faye/websocket-extensions-node.git + as detected from PackageJson property "repository.url" + + + http://github.com/faye/websocket-extensions-node + as detected from PackageJson property "homepage" + + + http://github.com/faye/websocket-extensions-node/issues + as detected from PackageJson property "bugs" + + + + node_modules/websocket-extensions + + + + Fedor Indutny <fedor.indutny@gmail.com> + spdy + 4.0.2 + Implementation of the SPDY protocol on node.js. + + + MIT + + + pkg:npm/spdy@4.0.2?vcs_url=git://github.com/indutny/node-spdy.git + + + git://github.com/indutny/node-spdy.git + as detected from PackageJson property "repository.url" + + + https://github.com/indutny/node-spdy + as detected from PackageJson property "homepage" + + + https://github.com/spdy-http2/node-spdy/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/spdy + + + + Fedor Indutny <fedor@indutny.com> + handle-thing + 2.0.1 + Wrap Streams2 instance into a HandleWrap + + + MIT + + + pkg:npm/handle-thing@2.0.1?vcs_url=git+ssh://git@github.com/indutny/handle-thing.git + + + git+ssh://git@github.com/indutny/handle-thing.git + as detected from PackageJson property "repository.url" + + + https://github.com/spdy-http2/handle-thing#readme + as detected from PackageJson property "homepage" + + + https://github.com/spdy-http2/handle-thing/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/handle-thing + + + + Fedor Indutny <fedor@indutny.com> + http-deceiver + 1.2.7 + Deceive HTTP parser + + + MIT + + + pkg:npm/http-deceiver@1.2.7?vcs_url=git+ssh://git@github.com/indutny/http-deceiver.git + + + git+ssh://git@github.com/indutny/http-deceiver.git + as detected from PackageJson property "repository.url" + + + https://github.com/indutny/http-deceiver#readme + as detected from PackageJson property "homepage" + + + https://github.com/indutny/http-deceiver/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/http-deceiver + + + + Fedor Indutny <fedor@indutny.com> + select-hose + 2.0.0 + Select protocol using first bytes of incoming data and hose stuff to the handler + + + MIT + + + pkg:npm/select-hose@2.0.0?vcs_url=git+ssh://git@github.com/indutny/select-hose.git + + + git+ssh://git@github.com/indutny/select-hose.git + as detected from PackageJson property "repository.url" + + + https://github.com/indutny/select-hose#readme + as detected from PackageJson property "homepage" + + + https://github.com/indutny/select-hose/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/select-hose + + + + Fedor Indutny <fedor@indutny.com> + spdy-transport + 3.0.0 + SPDY v2, v3, v3.1 and HTTP2 transport + + + MIT + + + pkg:npm/spdy-transport@3.0.0?vcs_url=git://github.com/spdy-http2/spdy-transport.git + + + git://github.com/spdy-http2/spdy-transport.git + as detected from PackageJson property "repository.url" + + + https://github.com/spdy-http2/spdy-transport + as detected from PackageJson property "homepage" + + + + + readable-stream + 3.6.0 + Streams3, a user-land copy of the stream library from Node.js + + + MIT + + + pkg:npm/readable-stream@3.6.0?vcs_url=git://github.com/nodejs/readable-stream + + + git://github.com/nodejs/readable-stream + as detected from PackageJson property "repository.url" + + + + node_modules/spdy-transport/node_modules/readable-stream + + + + + node_modules/spdy-transport + + + + Ilya Kantor + detect-node + 2.1.0 + Detect Node.JS (as opposite to browser environment) (reliable) + + + MIT + + + pkg:npm/detect-node@2.1.0?vcs_url=https://github.com/iliakan/detect-node + + + https://github.com/iliakan/detect-node + as detected from PackageJson property "repository.url" + + + https://github.com/iliakan/detect-node + as detected from PackageJson property "homepage" + + + https://github.com/iliakan/detect-node/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/detect-node + + + + Fedor Indutny <fedor@indutny.com> + hpack.js + 2.1.6 + HPACK implementation + + + MIT + + + pkg:npm/hpack.js@2.1.6?vcs_url=git+ssh://git@github.com/indutny/hpack.js.git + + + git+ssh://git@github.com/indutny/hpack.js.git + as detected from PackageJson property "repository.url" + + + https://github.com/indutny/hpack.js#readme + as detected from PackageJson property "homepage" + + + https://github.com/indutny/hpack.js/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/hpack.js + + + + Fedor Indutny <fedor@indutny.com> + obuf + 1.1.2 + + + MIT + + + pkg:npm/obuf@1.1.2?vcs_url=git@github.com:indutny/offset-buffer + + + https://github.com/indutny/offset-buffer + as detected from PackageJson property "homepage" + + + https://github.com/indutny/offset-buffer/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/obuf + + + + Fedor Indutny <fedor@indutny.com> + wbuf + 1.7.3 + Write buffer + + + MIT + + + pkg:npm/wbuf@1.7.3?vcs_url=git@github.com:indutny/wbuf + + + https://github.com/indutny/wbuf + as detected from PackageJson property "homepage" + + + https://github.com/indutny/wbuf/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/wbuf + + + + Irakli Gozalishvili <rfobic@gmail.com> + querystring + 0.2.0 + Node's querystring module for all engines. + + + MIT + https://github.com/Gozala/enchain/License.md + + + pkg:npm/querystring@0.2.0?vcs_url=git://github.com/Gozala/querystring.git + + + git://github.com/Gozala/querystring.git + as detected from PackageJson property "repository.url" + + + http://github.com/Gozala/querystring/issues/ + as detected from PackageJson property "bugs.url" + + + + node_modules/querystring + + + + Tobias Koppers @sokra + webpack-dev-middleware + 3.7.3 + A development middleware for webpack + + + MIT + + + pkg:npm/webpack-dev-middleware@3.7.3?vcs_url=webpack/webpack-dev-middleware + + + webpack/webpack-dev-middleware + as detected from PackageJson property "repository" + + + https://github.com/webpack/webpack-dev-middleware + as detected from PackageJson property "homepage" + + + https://github.com/webpack/webpack-dev-middleware/issues + as detected from PackageJson property "bugs" + + + + + Tobias Koppers @sokra + memory-fs + 0.4.1 + A simple in-memory filesystem. Holds data in a javascript object. + + + MIT + + + pkg:npm/memory-fs@0.4.1?vcs_url=https://github.com/webpack/memory-fs.git + + + https://github.com/webpack/memory-fs.git + as detected from PackageJson property "repository.url" + + + https://github.com/webpack/memory-fs + as detected from PackageJson property "homepage" + + + https://github.com/webpack/memory-fs/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/webpack-dev-middleware/node_modules/memory-fs + + + + + node_modules/webpack-dev-middleware + + + + Andrew Powell <andrew@shellscape.org> + webpack-log + 2.0.0 + A common logger for the webpack ecosystem + + + MIT + + + pkg:npm/webpack-log@2.0.0?vcs_url=https://github.com/webpack-contrib/webpack-log.git + + + https://github.com/webpack-contrib/webpack-log.git + as detected from PackageJson property "repository" + + + https://github.com/webpack-contrib/webpack-log#readme + as detected from PackageJson property "homepage" + + + + node_modules/webpack-log + + + + Brian Woodward (https://github.com/doowb) + ansi-colors + 3.2.4 + 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). + + + MIT + + + pkg:npm/ansi-colors@3.2.4?vcs_url=doowb/ansi-colors + + + doowb/ansi-colors + as detected from PackageJson property "repository" + + + https://github.com/doowb/ansi-colors + as detected from PackageJson property "homepage" + + + https://github.com/doowb/ansi-colors/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/ansi-colors + + + + uuid + 3.4.0 + RFC4122 (v1, v4, and v5) UUIDs + + + MIT + + + pkg:npm/uuid@3.4.0?vcs_url=https://github.com/uuidjs/uuid.git + + + https://github.com/uuidjs/uuid.git + as detected from PackageJson property "repository.url" + + + + node_modules/uuid + + + + Juho Vepsalainen <bebraw@gmail.com> + webpack-merge + 4.2.2 + Variant of merge that's useful for webpack configuration + + + MIT + + + pkg:npm/webpack-merge@4.2.2?vcs_url=https://github.com/survivejs/webpack-merge.git + + + https://github.com/survivejs/webpack-merge.git + as detected from PackageJson property "repository.url" + + + https://github.com/survivejs/webpack-merge + as detected from PackageJson property "homepage" + + + https://github.com/survivejs/webpack-merge/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/webpack-merge + + + + Evan You + @vue + eslint-config-airbnb + 4.0.1 + eslint-config-airbnb for vue-cli + + + MIT + + + pkg:npm/%40vue/eslint-config-airbnb@4.0.1?vcs_url=git+https://github.com/vuejs/vue-cli.git#packages/@vue/eslint-config-airbnb + + + git+https://github.com/vuejs/vue-cli.git#packages/@vue/eslint-config-airbnb + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://github.com/vuejs/vue-cli/tree/dev/packages/@vue/eslint-config-airbnb#readme + as detected from PackageJson property "homepage" + + + https://github.com/vuejs/vue-cli/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/@vue/eslint-config-airbnb + + + + Jake Teton-Landis (https://twitter.com/@jitl) + eslint-config-airbnb-projx + 13.2.0 + Airbnb's projx JS ESLint config, following our styleguide + + + MIT + + + pkg:npm/eslint-config-airbnb-projx@13.2.0?vcs_url=https://github.com/airbnb/javascript + + + https://github.com/airbnb/javascript + as detected from PackageJson property "repository.url" + + + https://github.com/airbnb/javascript + as detected from PackageJson property "homepage" + + + https://github.com/airbnb/javascript/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/eslint-config-airbnb-projx + + + + confusing-browser-globals + 1.0.11 + A list of browser globals that are often used by mistake instead of local variables + + + MIT + + + pkg:npm/confusing-browser-globals@1.0.11?vcs_url=https://github.com/facebook/create-react-app.git#packages/confusing-browser-globals + + + https://github.com/facebook/create-react-app.git#packages/confusing-browser-globals + as detected from PackageJson property "repository.url" and "repository.directory" + + + + node_modules/confusing-browser-globals + + + + Ben Mosher <me@benmosher.com> + eslint-plugin-import + 2.26.0 + Import with sanity. + + + MIT + + + pkg:npm/eslint-plugin-import@2.26.0?vcs_url=https://github.com/import-js/eslint-plugin-import + + + https://github.com/import-js/eslint-plugin-import + as detected from PackageJson property "repository.url" + + + https://github.com/import-js/eslint-plugin-import + as detected from PackageJson property "homepage" + + + https://github.com/import-js/eslint-plugin-import/issues + as detected from PackageJson property "bugs.url" + + + + + TJ Holowaychuk <tj@vision-media.ca> + debug + 2.6.9 + small debugging utility + + + MIT + + + pkg:npm/debug@2.6.9?vcs_url=git://github.com/visionmedia/debug.git + + + git://github.com/visionmedia/debug.git + as detected from PackageJson property "repository.url" + + + + node_modules/eslint-plugin-import/node_modules/debug + + + + ms + 2.0.0 + Tiny milisecond conversion utility + + + MIT + + + pkg:npm/ms@2.0.0?vcs_url=zeit/ms + + + zeit/ms + as detected from PackageJson property "repository" + + + + node_modules/eslint-plugin-import/node_modules/ms + + + + doctrine + 2.1.0 + JSDoc parser + + + Apache-2.0 + + + pkg:npm/doctrine@2.1.0?vcs_url=eslint/doctrine + + + eslint/doctrine + as detected from PackageJson property "repository" + + + https://github.com/eslint/doctrine + as detected from PackageJson property "homepage" + + + + node_modules/eslint-plugin-import/node_modules/doctrine + + + + + node_modules/eslint-plugin-import + + + + Jordan Harband + object.entries + 1.1.5 + ES2017 spec-compliant Object.entries shim. + + + MIT + + + pkg:npm/object.entries@1.1.5?vcs_url=git://github.com/es-shims/Object.entries.git + + + git://github.com/es-shims/Object.entries.git + as detected from PackageJson property "repository.url" + + + + node_modules/object.entries + + + + Ben Mosher (me@benmosher.com) + eslint-import-resolver-webpack + 0.11.1 + Resolve paths to dependencies, given a webpack.config.js. Plugin for eslint-plugin-import. + + + MIT + + + pkg:npm/eslint-import-resolver-webpack@0.11.1?vcs_url=git+https://github.com/benmosher/eslint-plugin-import.git + + + git+https://github.com/benmosher/eslint-plugin-import.git + as detected from PackageJson property "repository.url" + + + https://github.com/benmosher/eslint-plugin-import/tree/master/resolvers/webpack + as detected from PackageJson property "homepage" + + + https://github.com/benmosher/eslint-plugin-import/issues + as detected from PackageJson property "bugs.url" + + + + + TJ Holowaychuk <tj@vision-media.ca> + debug + 2.6.9 + small debugging utility + + + MIT + + + pkg:npm/debug@2.6.9?vcs_url=git://github.com/visionmedia/debug.git + + + git://github.com/visionmedia/debug.git + as detected from PackageJson property "repository.url" + + + + node_modules/eslint-import-resolver-webpack/node_modules/debug + + + + ms + 2.0.0 + Tiny milisecond conversion utility + + + MIT + + + pkg:npm/ms@2.0.0?vcs_url=zeit/ms + + + zeit/ms + as detected from PackageJson property "repository" + + + + node_modules/eslint-import-resolver-webpack/node_modules/ms + + + + semver + 5.7.1 + The semantic version parser used by npm. + + + ISC + + + pkg:npm/semver@5.7.1?vcs_url=https://github.com/npm/node-semver + + + https://github.com/npm/node-semver + as detected from PackageJson property "repository" + + + + node_modules/eslint-import-resolver-webpack/node_modules/semver + + + + + node_modules/eslint-import-resolver-webpack + + + + Stefan Duberg <stefanduberg@gmail.com> + array-find + 1.0.0 + ES6 Array.find ponyfill. Return the first array element which satisfies a testing function. + + + MIT + + + pkg:npm/array-find@1.0.0?vcs_url=https://github.com/stefanduberg/array-find.git + + + https://github.com/stefanduberg/array-find.git + as detected from PackageJson property "repository.url" + + + https://github.com/stefanduberg/array-find + as detected from PackageJson property "homepage" + + + https://github.com/stefanduberg/array-find/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/array-find + + + + Tobias Koppers @sokra + enhanced-resolve + 0.9.1 + Offers a async require.resolve function. It's highly configurable. + + + MIT + http://www.opensource.org/licenses/mit-license.php + + + pkg:npm/enhanced-resolve@0.9.1?vcs_url=git://github.com/webpack/enhanced-resolve.git + + + git://github.com/webpack/enhanced-resolve.git + as detected from PackageJson property "repository.url" + + + http://github.com/webpack/enhanced-resolve + as detected from PackageJson property "homepage" + + + + node_modules/enhanced-resolve + + + + Tobias Koppers @sokra + memory-fs + 0.2.0 + A simple in-memory filesystem. Holds data in a javascript object. + + + MIT + + + pkg:npm/memory-fs@0.2.0?vcs_url=https://github.com/webpack/memory-fs.git + + + https://github.com/webpack/memory-fs.git + as detected from PackageJson property "repository.url" + + + https://github.com/webpack/memory-fs + as detected from PackageJson property "homepage" + + + https://github.com/webpack/memory-fs/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/memory-fs + + + + Tobias Koppers @sokra + tapable + 0.1.10 + Just a little module for plugins. + + + MIT + + + pkg:npm/tapable@0.1.10?vcs_url=http://github.com/webpack/tapable.git + + + http://github.com/webpack/tapable.git + as detected from PackageJson property "repository.url" + + + https://github.com/webpack/tapable + as detected from PackageJson property "homepage" + + + + node_modules/tapable + + + + jsdnxx + find-root + 1.1.0 + find the closest package.json + + + MIT + + + pkg:npm/find-root@1.1.0?vcs_url=git@github.com:js-n/find-root.git + + node_modules/find-root + + + + Gulp Team <team@gulpjs.com> (http://gulpjs.com/) + interpret + 1.4.0 + A dictionary of file extensions and associated module loaders. + + + MIT + + + pkg:npm/interpret@1.4.0?vcs_url=gulpjs/interpret + + + gulpjs/interpret + as detected from PackageJson property "repository" + + + + node_modules/interpret + + + + Jordan Harband + array-includes + 3.1.5 + An ES7/ES2016 spec-compliant `Array.prototype.includes` shim/polyfill/replacement that works as far down as ES3. + + + MIT + + + pkg:npm/array-includes@3.1.5?vcs_url=git://github.com/es-shims/array-includes.git + + + git://github.com/es-shims/array-includes.git + as detected from PackageJson property "repository.url" + + + + node_modules/array-includes + + + + Jordan Harband + array.prototype.flat + 1.3.0 + An ES2019 spec-compliant `Array.prototype.flat` shim/polyfill/replacement that works as far down as ES3. + + + MIT + + + pkg:npm/array.prototype.flat@1.3.0?vcs_url=git://github.com/es-shims/Array.prototype.flat.git + + + git://github.com/es-shims/Array.prototype.flat.git + as detected from PackageJson property "repository.url" + + + + node_modules/array.prototype.flat + + + + Jordan Harband <ljharb@gmail.com> + es-shim-unscopables + 1.0.0 + Helper package to shim a method into `Array.prototype[Symbol.unscopables]` + + + MIT + + + pkg:npm/es-shim-unscopables@1.0.0?vcs_url=git+https://github.com/ljharb/es-shim-unscopables.git + + + git+https://github.com/ljharb/es-shim-unscopables.git + as detected from PackageJson property "repository.url" + + + https://github.com/ljharb/es-shim-unscopables#readme + as detected from PackageJson property "homepage" + + + https://github.com/ljharb/es-shim-unscopables/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/es-shim-unscopables + + + + Ben Mosher (me@benmosher.com) + eslint-import-resolver-node + 0.3.6 + Node default behavior import resolution plugin for eslint-plugin-import. + + + MIT + + + pkg:npm/eslint-import-resolver-node@0.3.6?vcs_url=https://github.com/import-js/eslint-plugin-import + + + https://github.com/import-js/eslint-plugin-import + as detected from PackageJson property "repository.url" + + + https://github.com/import-js/eslint-plugin-import + as detected from PackageJson property "homepage" + + + https://github.com/import-js/eslint-plugin-import/issues + as detected from PackageJson property "bugs.url" + + + + + TJ Holowaychuk <tj@vision-media.ca> + debug + 3.2.7 + small debugging utility + + + MIT + + + pkg:npm/debug@3.2.7?vcs_url=git://github.com/visionmedia/debug.git + + + git://github.com/visionmedia/debug.git + as detected from PackageJson property "repository.url" + + + + node_modules/eslint-import-resolver-node/node_modules/debug + + + + + node_modules/eslint-import-resolver-node + + + + Ben Mosher <me@benmosher.com> + eslint-module-utils + 2.7.4 + Core utilities to support eslint-plugin-import and other module-related plugins. + + + MIT + + + pkg:npm/eslint-module-utils@2.7.4?vcs_url=git+https://github.com/import-js/eslint-plugin-import.git + + + git+https://github.com/import-js/eslint-plugin-import.git + as detected from PackageJson property "repository.url" + + + https://github.com/import-js/eslint-plugin-import#readme + as detected from PackageJson property "homepage" + + + https://github.com/import-js/eslint-plugin-import/issues + as detected from PackageJson property "bugs.url" + + + + + TJ Holowaychuk <tj@vision-media.ca> + debug + 3.2.7 + small debugging utility + + + MIT + + + pkg:npm/debug@3.2.7?vcs_url=git://github.com/visionmedia/debug.git + + + git://github.com/visionmedia/debug.git + as detected from PackageJson property "repository.url" + + + + node_modules/eslint-module-utils/node_modules/debug + + + + + node_modules/eslint-module-utils + + + + Jordan Harband <ljharb@gmail.com> + is-core-module + 2.10.0 + Is this specifier a node.js core module? + + + MIT + + + pkg:npm/is-core-module@2.10.0?vcs_url=git+https://github.com/inspect-js/is-core-module.git + + + git+https://github.com/inspect-js/is-core-module.git + as detected from PackageJson property "repository.url" + + + https://github.com/inspect-js/is-core-module + as detected from PackageJson property "homepage" + + + https://github.com/inspect-js/is-core-module/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/is-core-module + + + + Jonas Kello + tsconfig-paths + 3.14.1 + Load node modules according to tsconfig paths, in run-time or via API. + + + MIT + + + pkg:npm/tsconfig-paths@3.14.1?vcs_url=https://github.com/dividab/tsconfig-paths + + + https://github.com/dividab/tsconfig-paths + as detected from PackageJson property "repository" + + + + + Aseem Kishore <aseem.kishore@gmail.com> + json5 + 1.0.1 + JSON for humans. + + + MIT + + + pkg:npm/json5@1.0.1?vcs_url=git+https://github.com/json5/json5.git + + + git+https://github.com/json5/json5.git + as detected from PackageJson property "repository.url" + + + http://json5.org/ + as detected from PackageJson property "homepage" + + + https://github.com/json5/json5/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/tsconfig-paths/node_modules/json5 + + + + Sindre Sorhus + strip-bom + 3.0.0 + Strip UTF-8 byte order mark (BOM) from a string + + + MIT + + + pkg:npm/strip-bom@3.0.0?vcs_url=sindresorhus/strip-bom + + + sindresorhus/strip-bom + as detected from PackageJson property "repository" + + + + node_modules/tsconfig-paths/node_modules/strip-bom + + + + + node_modules/tsconfig-paths + + + + Jason Swearingen <https://jasonswearingen.github.io> + @types + json5 + 0.0.29 + TypeScript definitions for JSON5 + + + MIT + + + pkg:npm/%40types/json5@0.0.29?vcs_url=https://www.github.com/DefinitelyTyped/DefinitelyTyped.git + + + https://www.github.com/DefinitelyTyped/DefinitelyTyped.git + as detected from PackageJson property "repository.url" + + + + node_modules/@types/json5 + + + + vuejs + @vue + test-utils + 1.0.0-beta.29 + Utilities for testing Vue components. + + + MIT + + + pkg:npm/%40vue/test-utils@1.0.0-beta.29?vcs_url=git+https://github.com/vuejs/vue-test-utils.git#packages/test-utils + + + git+https://github.com/vuejs/vue-test-utils.git#packages/test-utils + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://github.com/vuejs/vue-test-utils#readme + as detected from PackageJson property "homepage" + + + https://github.com/vuejs/vue-test-utils/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/@vue/test-utils + + + + Edd Yerburgh + dom-event-types + 1.1.0 + DOM events data scraped from MDN + + + MIT + + + pkg:npm/dom-event-types@1.1.0?vcs_url=https://github.com/eddyerburgh/dom-event-types + + + https://github.com/eddyerburgh/dom-event-types + as detected from PackageJson property "repository" + + + + node_modules/dom-event-types + + + + The Babel Team (https://babel.dev/team) + @babel + highlight + 7.18.6 + Syntax highlight JavaScript strings for output in terminals. + + + MIT + + + pkg:npm/%40babel/highlight@7.18.6?vcs_url=https://github.com/babel/babel.git#packages/babel-highlight + + + https://github.com/babel/babel.git#packages/babel-highlight + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-highlight + as detected from PackageJson property "homepage" + + + + node_modules/@babel/highlight + + + + The Babel Team (https://babel.dev/team) + @babel + helper-string-parser + 7.18.10 + A utility package to parse strings + + + MIT + + + pkg:npm/%40babel/helper-string-parser@7.18.10?vcs_url=https://github.com/babel/babel.git#packages/babel-helper-string-parser + + + https://github.com/babel/babel.git#packages/babel-helper-string-parser + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://babel.dev/docs/en/next/babel-helper-string-parser + as detected from PackageJson property "homepage" + + + + node_modules/@babel/helper-string-parser + + + + Sindre Sorhus + to-fast-properties + 2.0.0 + Force V8 to use fast properties for an object + + + MIT + + + pkg:npm/to-fast-properties@2.0.0?vcs_url=sindresorhus/to-fast-properties + + + sindresorhus/to-fast-properties + as detected from PackageJson property "repository" + + + + node_modules/to-fast-properties + + + + Jordan Harband <ljharb@gmail.com> + supports-preserve-symlinks-flag + 1.0.0 + Determine if the current node version supports the `--preserve-symlinks` flag. + + + MIT + + + pkg:npm/supports-preserve-symlinks-flag@1.0.0?vcs_url=git+https://github.com/inspect-js/node-supports-preserve-symlinks-flag.git + + + git+https://github.com/inspect-js/node-supports-preserve-symlinks-flag.git + as detected from PackageJson property "repository.url" + + + https://github.com/inspect-js/node-supports-preserve-symlinks-flag#readme + as detected from PackageJson property "homepage" + + + https://github.com/inspect-js/node-supports-preserve-symlinks-flag/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/supports-preserve-symlinks-flag + + + + babel-plugin-syntax-object-rest-spread + 6.13.0 + Allow parsing of object rest/spread + + + MIT + + + pkg:npm/babel-plugin-syntax-object-rest-spread@6.13.0?vcs_url=https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-object-rest-spread + + + https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-object-rest-spread + as detected from PackageJson property "repository" + + + + node_modules/babel-plugin-syntax-object-rest-spread + + + + Sindre Sorhus + locate-path + 2.0.0 + Get the first path that exists on disk of multiple paths + + + MIT + + + pkg:npm/locate-path@2.0.0?vcs_url=sindresorhus/locate-path + + + sindresorhus/locate-path + as detected from PackageJson property "repository" + + + + node_modules/locate-path + + + + Sindre Sorhus + p-locate + 2.0.0 + Get the first fulfilled promise that satisfies the provided testing function + + + MIT + + + pkg:npm/p-locate@2.0.0?vcs_url=sindresorhus/p-locate + + + sindresorhus/p-locate + as detected from PackageJson property "repository" + + + + node_modules/p-locate + + + + Sindre Sorhus + detect-indent + 4.0.0 + Detect the indentation of code + + + MIT + + + pkg:npm/detect-indent@4.0.0?vcs_url=sindresorhus/detect-indent + + + sindresorhus/detect-indent + as detected from PackageJson property "repository" + + + + node_modules/detect-indent + + + + Sindre Sorhus + repeating + 2.0.1 + Repeat a string - fast + + + MIT + + + pkg:npm/repeating@2.0.1?vcs_url=sindresorhus/repeating + + + sindresorhus/repeating + as detected from PackageJson property "repository" + + + + node_modules/repeating + + + + Sindre Sorhus + is-finite + 1.1.0 + ES2015 Number.isFinite() ponyfill + + + MIT + + + pkg:npm/is-finite@1.1.0?vcs_url=sindresorhus/is-finite + + + sindresorhus/is-finite + as detected from PackageJson property "repository" + + + + node_modules/is-finite + + + + Sindre Sorhus + trim-right + 1.0.1 + Similar to String#trim() but removes only whitespace on the right + + + MIT + + + pkg:npm/trim-right@1.0.1?vcs_url=sindresorhus/trim-right + + + sindresorhus/trim-right + as detected from PackageJson property "repository" + + + + node_modules/trim-right + + + + Ben Coe <ben@npmjs.com> + test-exclude + 4.2.3 + test for inclusion or exclusion of paths using pkg-conf and globs + + + ISC + + + pkg:npm/test-exclude@4.2.3?vcs_url=git+https://github.com/istanbuljs/istanbuljs.git + + + git+https://github.com/istanbuljs/istanbuljs.git + as detected from PackageJson property "repository.url" + + + https://github.com/istanbuljs/istanbuljs#readme + as detected from PackageJson property "homepage" + + + https://github.com/istanbuljs/istanbuljs/issues + as detected from PackageJson property "bugs.url" + + + + + Jon Schlinkert (https://github.com/jonschlinkert) + micromatch + 2.3.11 + Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch. + + + MIT + + + pkg:npm/micromatch@2.3.11?vcs_url=jonschlinkert/micromatch + + + jonschlinkert/micromatch + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/micromatch + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/micromatch/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/test-exclude/node_modules/micromatch + + + + Jon Schlinkert (https://github.com/jonschlinkert) + arr-diff + 2.0.0 + Returns an array with only the unique values from the first array, by excluding all values from additional arrays using strict equality for comparisons. + + + MIT + + + pkg:npm/arr-diff@2.0.0?vcs_url=jonschlinkert/arr-diff + + + jonschlinkert/arr-diff + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/arr-diff + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/arr-diff/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/test-exclude/node_modules/arr-diff + + + + Jon Schlinkert + array-unique + 0.2.1 + Return an array free of duplicate values. Fastest ES5 implementation. + pkg:npm/array-unique@0.2.1?vcs_url=git://github.com/jonschlinkert/array-unique.git + + + git://github.com/jonschlinkert/array-unique.git + as detected from PackageJson property "repository.url" + + + https://github.com/jonschlinkert/array-unique + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/array-unique/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/test-exclude/node_modules/array-unique + + + + Jon Schlinkert (https://github.com/jonschlinkert) + braces + 1.8.5 + Fastest brace expansion for node.js, with the most complete support for the Bash 4.3 braces specification. + + + MIT + + + pkg:npm/braces@1.8.5?vcs_url=jonschlinkert/braces + + + jonschlinkert/braces + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/braces + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/braces/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/test-exclude/node_modules/braces + + + + Jon Schlinkert (https://github.com/jonschlinkert) + expand-brackets + 0.1.5 + Expand POSIX bracket expressions (character classes) in glob patterns. + + + MIT + + + pkg:npm/expand-brackets@0.1.5?vcs_url=jonschlinkert/expand-brackets + + + jonschlinkert/expand-brackets + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/expand-brackets + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/expand-brackets/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/test-exclude/node_modules/expand-brackets + + + + Jon Schlinkert + extglob + 0.3.2 + Convert extended globs to regex-compatible strings. Add (almost) the expressive power of regular expressions to glob patterns. + + + MIT + + + pkg:npm/extglob@0.3.2?vcs_url=git://github.com/jonschlinkert/extglob.git + + + git://github.com/jonschlinkert/extglob.git + as detected from PackageJson property "repository.url" + + + https://github.com/jonschlinkert/extglob + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/extglob/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/test-exclude/node_modules/extglob + + + + Jon Schlinkert + is-extglob + 1.0.0 + Returns true if a string has an extglob. + + + MIT + + + pkg:npm/is-extglob@1.0.0?vcs_url=jonschlinkert/is-extglob + + + jonschlinkert/is-extglob + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-extglob + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-extglob/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/test-exclude/node_modules/is-extglob + + + + Jon Schlinkert + is-glob + 2.0.1 + 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. + + + MIT + + + pkg:npm/is-glob@2.0.1?vcs_url=jonschlinkert/is-glob + + + jonschlinkert/is-glob + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/is-glob + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/is-glob/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/test-exclude/node_modules/is-glob + + + + Jon Schlinkert (https://github.com/jonschlinkert) + kind-of + 3.2.2 + Get the native type of a value. + + + MIT + + + pkg:npm/kind-of@3.2.2?vcs_url=jonschlinkert/kind-of + + + jonschlinkert/kind-of + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/kind-of + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/kind-of/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/test-exclude/node_modules/kind-of + + + + Jon Schlinkert (https://github.com/jonschlinkert) + normalize-path + 2.1.1 + 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. + + + MIT + + + pkg:npm/normalize-path@2.1.1?vcs_url=jonschlinkert/normalize-path + + + jonschlinkert/normalize-path + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/normalize-path + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/normalize-path/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/test-exclude/node_modules/normalize-path + + + + Sindre Sorhus + read-pkg-up + 1.0.1 + Read the closest package.json file + + + MIT + + + pkg:npm/read-pkg-up@1.0.1?vcs_url=sindresorhus/read-pkg-up + + + sindresorhus/read-pkg-up + as detected from PackageJson property "repository" + + + + node_modules/test-exclude/node_modules/read-pkg-up + + + + Sindre Sorhus + find-up + 1.1.2 + Find a file by walking up parent directories + + + MIT + + + pkg:npm/find-up@1.1.2?vcs_url=sindresorhus/find-up + + + sindresorhus/find-up + as detected from PackageJson property "repository" + + + + node_modules/test-exclude/node_modules/find-up + + + + Sindre Sorhus + path-exists + 2.1.0 + Check if a path exists + + + MIT + + + pkg:npm/path-exists@2.1.0?vcs_url=sindresorhus/path-exists + + + sindresorhus/path-exists + as detected from PackageJson property "repository" + + + + node_modules/test-exclude/node_modules/path-exists + + + + Sindre Sorhus + read-pkg + 1.1.0 + Read a package.json file + + + MIT + + + pkg:npm/read-pkg@1.1.0?vcs_url=sindresorhus/read-pkg + + + sindresorhus/read-pkg + as detected from PackageJson property "repository" + + + + node_modules/test-exclude/node_modules/read-pkg + + + + Meryn Stol <merynstol@gmail.com> + normalize-package-data + 2.5.0 + Normalizes data that can be found in package.json files. + + + BSD-2-Clause + + + pkg:npm/normalize-package-data@2.5.0?vcs_url=git://github.com/npm/normalize-package-data.git + + + git://github.com/npm/normalize-package-data.git + as detected from PackageJson property "repository.url" + + + + node_modules/test-exclude/node_modules/normalize-package-data + + + + Rebecca Turner <me@re-becca.org> (http://re-becca.org) + hosted-git-info + 2.8.9 + Provides metadata and conversions from repository urls for Github, Bitbucket and Gitlab + + + ISC + + + pkg:npm/hosted-git-info@2.8.9?vcs_url=git+https://github.com/npm/hosted-git-info.git + + + git+https://github.com/npm/hosted-git-info.git + as detected from PackageJson property "repository.url" + + + https://github.com/npm/hosted-git-info + as detected from PackageJson property "homepage" + + + https://github.com/npm/hosted-git-info/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/test-exclude/node_modules/hosted-git-info + + + + semver + 5.7.1 + The semantic version parser used by npm. + + + ISC + + + pkg:npm/semver@5.7.1?vcs_url=https://github.com/npm/node-semver + + + https://github.com/npm/node-semver + as detected from PackageJson property "repository" + + + + node_modules/test-exclude/node_modules/semver + + + + Sindre Sorhus + path-type + 1.1.0 + Check if a path is a file, directory, or symlink + + + MIT + + + pkg:npm/path-type@1.1.0?vcs_url=sindresorhus/path-type + + + sindresorhus/path-type + as detected from PackageJson property "repository" + + + + node_modules/test-exclude/node_modules/path-type + + + + Sindre Sorhus + pify + 2.3.0 + Promisify a callback-style function + + + MIT + + + pkg:npm/pify@2.3.0?vcs_url=sindresorhus/pify + + + sindresorhus/pify + as detected from PackageJson property "repository" + + + + node_modules/test-exclude/node_modules/pify + + + + + node_modules/test-exclude + + + + Sindre Sorhus + arrify + 1.0.1 + Convert a value to an array + + + MIT + + + pkg:npm/arrify@1.0.1?vcs_url=sindresorhus/arrify + + + sindresorhus/arrify + as detected from PackageJson property "repository" + + + + node_modules/arrify + + + + Sindre Sorhus + load-json-file + 1.1.0 + Read and parse a JSON file + + + MIT + + + pkg:npm/load-json-file@1.1.0?vcs_url=sindresorhus/load-json-file + + + sindresorhus/load-json-file + as detected from PackageJson property "repository" + + + + + Sindre Sorhus + parse-json + 2.2.0 + Parse JSON with more helpful errors + + + MIT + + + pkg:npm/parse-json@2.2.0?vcs_url=sindresorhus/parse-json + + + sindresorhus/parse-json + as detected from PackageJson property "repository" + + + + node_modules/load-json-file/node_modules/parse-json + + + + Sindre Sorhus + pify + 2.3.0 + Promisify a callback-style function + + + MIT + + + pkg:npm/pify@2.3.0?vcs_url=sindresorhus/pify + + + sindresorhus/pify + as detected from PackageJson property "repository" + + + + node_modules/load-json-file/node_modules/pify + + + + + node_modules/load-json-file + + + + wayfind + is-utf8 + 0.2.1 + Detect if a buffer is utf8 encoded. + + + MIT + + + pkg:npm/is-utf8@0.2.1?vcs_url=https://github.com/wayfind/is-utf8.git + + + https://github.com/wayfind/is-utf8.git + as detected from PackageJson property "repository" + + + + node_modules/is-utf8 + + + + babel-preset-jest + 23.2.0 + + + MIT + + + pkg:npm/babel-preset-jest@23.2.0?vcs_url=https://github.com/facebook/jest.git + + + https://github.com/facebook/jest.git + as detected from PackageJson property "repository.url" + + + + node_modules/babel-preset-jest + + + + babel-plugin-jest-hoist + 23.2.0 + + + MIT + + + pkg:npm/babel-plugin-jest-hoist@23.2.0?vcs_url=https://github.com/facebook/jest.git + + + https://github.com/facebook/jest.git + as detected from PackageJson property "repository.url" + + + + node_modules/babel-plugin-jest-hoist + + + + Twitter Inc. + bootstrap-sass + 2.3.2 + Sleek, intuitive, and powerful front-end framework for faster and easier web development. + + + Apache-2.0 + http://www.apache.org/licenses/LICENSE-2.0 + + + pkg:npm/bootstrap-sass@2.3.2?vcs_url=https://github.com/twitter/bootstrap.git + + + https://github.com/twitter/bootstrap.git + as detected from PackageJson property "repository.url" + + + http://twitter.github.com/bootstrap/ + as detected from PackageJson property "homepage" + + + + node_modules/bootstrap-sass + + + + date-fns + 2.29.3 + Modern JavaScript date utility library + + + MIT + + + pkg:npm/date-fns@2.29.3?vcs_url=https://github.com/date-fns/date-fns + + + https://github.com/date-fns/date-fns + as detected from PackageJson property "repository" + + + + node_modules/date-fns + + + + Toru Nagashima (https://github.com/mysticatea) + eslint-plugin-vue + 5.2.3 + Official ESLint plugin for Vue.js + + + MIT + + + pkg:npm/eslint-plugin-vue@5.2.3?vcs_url=git+https://github.com/vuejs/eslint-plugin-vue.git + + + git+https://github.com/vuejs/eslint-plugin-vue.git + as detected from PackageJson property "repository.url" + + + https://eslint.vuejs.org + as detected from PackageJson property "homepage" + + + https://github.com/vuejs/eslint-plugin-vue/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/eslint-plugin-vue + + + + Toru Nagashima + vue-eslint-parser + 5.0.0 + The ESLint custom parser for `.vue` files. + + + MIT + + + pkg:npm/vue-eslint-parser@5.0.0?vcs_url=git+https://github.com/mysticatea/vue-eslint-parser.git + + + git+https://github.com/mysticatea/vue-eslint-parser.git + as detected from PackageJson property "repository.url" + + + https://github.com/mysticatea/vue-eslint-parser#readme + as detected from PackageJson property "homepage" + + + https://github.com/mysticatea/vue-eslint-parser/issues + as detected from PackageJson property "bugs.url" + + + + + Nicholas C. Zakas <nicholas+npm@nczconsulting.com> + espree + 4.1.0 + An Esprima-compatible JavaScript parser built on Acorn + + + BSD-2-Clause + + + pkg:npm/espree@4.1.0?vcs_url=eslint/espree + + + eslint/espree + as detected from PackageJson property "repository" + + + https://github.com/eslint/espree + as detected from PackageJson property "homepage" + + + http://github.com/eslint/espree.git + as detected from PackageJson property "bugs.url" + + + + node_modules/vue-eslint-parser/node_modules/espree + + + + + node_modules/vue-eslint-parser + + + + acorn-jsx + 5.3.2 + Modern, fast React.js JSX parser + + + MIT + + + pkg:npm/acorn-jsx@5.3.2?vcs_url=https://github.com/acornjs/acorn-jsx + + + https://github.com/acornjs/acorn-jsx + as detected from PackageJson property "repository.url" + + + https://github.com/acornjs/acorn-jsx + as detected from PackageJson property "homepage" + + + + node_modules/acorn-jsx + + + + Evgeny Poberezkin + fast-deep-equal + 3.1.3 + Fast deep equal + + + MIT + + + pkg:npm/fast-deep-equal@3.1.3?vcs_url=git+https://github.com/epoberezkin/fast-deep-equal.git + + + git+https://github.com/epoberezkin/fast-deep-equal.git + as detected from PackageJson property "repository.url" + + + https://github.com/epoberezkin/fast-deep-equal#readme + as detected from PackageJson property "homepage" + + + https://github.com/epoberezkin/fast-deep-equal/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/fast-deep-equal + + + + Evgeny Poberezkin + json-schema-traverse + 0.4.1 + Traverse JSON Schema passing each schema object to callback + + + MIT + + + pkg:npm/json-schema-traverse@0.4.1?vcs_url=git+https://github.com/epoberezkin/json-schema-traverse.git + + + git+https://github.com/epoberezkin/json-schema-traverse.git + as detected from PackageJson property "repository.url" + + + https://github.com/epoberezkin/json-schema-traverse#readme + as detected from PackageJson property "homepage" + + + https://github.com/epoberezkin/json-schema-traverse/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/json-schema-traverse + + + + Gary Court <gary.court@gmail.com> + uri-js + 4.4.1 + An RFC 3986/3987 compliant, scheme extendable URI/IRI parsing/validating/resolving library for JavaScript. + + + BSD-2-Clause + + + pkg:npm/uri-js@4.4.1?vcs_url=http://github.com/garycourt/uri-js + + + http://github.com/garycourt/uri-js + as detected from PackageJson property "repository.url" + + + https://github.com/garycourt/uri-js + as detected from PackageJson property "homepage" + + + https://github.com/garycourt/uri-js/issues + as detected from PackageJson property "bugs.url" + + + + + Mathias Bynens + punycode + 2.1.1 + A robust Punycode converter that fully complies to RFC 3492 and RFC 5891, and works on nearly all JavaScript platforms. + + + MIT + + + pkg:npm/punycode@2.1.1?vcs_url=https://github.com/bestiejs/punycode.js.git + + + https://github.com/bestiejs/punycode.js.git + as detected from PackageJson property "repository.url" + + + https://mths.be/punycode + as detected from PackageJson property "homepage" + + + https://github.com/bestiejs/punycode.js/issues + as detected from PackageJson property "bugs" + + + + node_modules/uri-js/node_modules/punycode + + + + + node_modules/uri-js + + + + nice-try + 1.0.5 + Tries to execute a function and discards any error that occurs + + + MIT + + + pkg:npm/nice-try@1.0.5?vcs_url=https://github.com/electerious/nice-try.git + + + https://github.com/electerious/nice-try.git + as detected from PackageJson property "repository.url" + + + https://github.com/electerious/nice-try + as detected from PackageJson property "homepage" + + + + node_modules/nice-try + + + + Sindre Sorhus + shebang-regex + 1.0.0 + Regular expression for matching a shebang + + + MIT + + + pkg:npm/shebang-regex@1.0.0?vcs_url=sindresorhus/shebang-regex + + + sindresorhus/shebang-regex + as detected from PackageJson property "repository" + + + + node_modules/shebang-regex + + + + doctrine + 3.0.0 + JSDoc parser + + + Apache-2.0 + + + pkg:npm/doctrine@3.0.0?vcs_url=eslint/doctrine + + + eslint/doctrine + as detected from PackageJson property "repository" + + + https://github.com/eslint/doctrine + as detected from PackageJson property "homepage" + + + + node_modules/doctrine + + + + Toru Nagashima + eslint-utils + 1.4.3 + Utilities for ESLint plugins. + + + MIT + + + pkg:npm/eslint-utils@1.4.3?vcs_url=git+https://github.com/mysticatea/eslint-utils.git + + + git+https://github.com/mysticatea/eslint-utils.git + as detected from PackageJson property "repository.url" + + + https://github.com/mysticatea/eslint-utils#readme + as detected from PackageJson property "homepage" + + + https://github.com/mysticatea/eslint-utils/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/eslint-utils + + + + Nicholas C. Zakas <nicholas+npm@nczconsulting.com> + espree + 5.0.1 + An Esprima-compatible JavaScript parser built on Acorn + + + BSD-2-Clause + + + pkg:npm/espree@5.0.1?vcs_url=eslint/espree + + + eslint/espree + as detected from PackageJson property "repository" + + + https://github.com/eslint/espree + as detected from PackageJson property "homepage" + + + http://github.com/eslint/espree.git + as detected from PackageJson property "bugs.url" + + + + node_modules/espree + + + + Roy Riojas + file-entry-cache + 5.0.1 + 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 + + + MIT + + + pkg:npm/file-entry-cache@5.0.1?vcs_url=royriojas/file-entry-cache + + + royriojas/file-entry-cache + as detected from PackageJson property "repository" + + + + node_modules/file-entry-cache + + + + Roy Riojas + flat-cache + 2.0.1 + A stupidly simple key/value storage using files to persist some data + + + MIT + + + pkg:npm/flat-cache@2.0.1?vcs_url=royriojas/flat-cache + + + royriojas/flat-cache + as detected from PackageJson property "repository" + + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + rimraf + 2.6.3 + A deep deletion module for node (like `rm -rf`) + + + ISC + + + pkg:npm/rimraf@2.6.3?vcs_url=git://github.com/isaacs/rimraf.git + + + git://github.com/isaacs/rimraf.git + as detected from PackageJson property "repository" + + + + node_modules/flat-cache/node_modules/rimraf + + + + + node_modules/flat-cache + + + + Andrea Giammarchi + flatted + 2.0.2 + A super light and fast circular JSON parser. + + + ISC + + + pkg:npm/flatted@2.0.2?vcs_url=git+https://github.com/WebReflection/flatted.git + + + git+https://github.com/WebReflection/flatted.git + as detected from PackageJson property "repository.url" + + + https://github.com/WebReflection/flatted#readme + as detected from PackageJson property "homepage" + + + https://github.com/WebReflection/flatted/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/flatted + + + + Jon Schlinkert (https://github.com/jonschlinkert) + write + 1.0.3 + 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. + + + MIT + + + pkg:npm/write@1.0.3?vcs_url=jonschlinkert/write + + + jonschlinkert/write + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/write + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/write/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/write + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + wrappy + 1.0.2 + Callback wrapping utility + + + ISC + + + pkg:npm/wrappy@1.0.2?vcs_url=https://github.com/npm/wrappy + + + https://github.com/npm/wrappy + as detected from PackageJson property "repository.url" + + + https://github.com/npm/wrappy + as detected from PackageJson property "homepage" + + + https://github.com/npm/wrappy/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/wrappy + + + + Sindre Sorhus + parent-module + 1.0.1 + Get the path of the parent module + + + MIT + + + pkg:npm/parent-module@1.0.1?vcs_url=sindresorhus/parent-module + + + sindresorhus/parent-module + as detected from PackageJson property "repository" + + + + + Sindre Sorhus + callsites + 3.1.0 + Get callsites from the V8 stack trace API + + + MIT + + + pkg:npm/callsites@3.1.0?vcs_url=sindresorhus/callsites + + + sindresorhus/callsites + as detected from PackageJson property "repository" + + + + node_modules/parent-module/node_modules/callsites + + + + + node_modules/parent-module + + + + Simon Boudrias <admin@simonboudrias.com> + inquirer + 6.5.2 + A collection of common interactive command line user interfaces. + + + MIT + + + pkg:npm/inquirer@6.5.2?vcs_url=SBoudrias/Inquirer.js + + + SBoudrias/Inquirer.js + as detected from PackageJson property "repository" + + + + + Sindre Sorhus + string-width + 2.1.1 + Get the visual width of a string - the number of columns required to display it + + + MIT + + + pkg:npm/string-width@2.1.1?vcs_url=sindresorhus/string-width + + + sindresorhus/string-width + as detected from PackageJson property "repository" + + + + + Sindre Sorhus + strip-ansi + 4.0.0 + Strip ANSI escape codes + + + MIT + + + pkg:npm/strip-ansi@4.0.0?vcs_url=chalk/strip-ansi + + + chalk/strip-ansi + as detected from PackageJson property "repository" + + + + node_modules/inquirer/node_modules/string-width/node_modules/strip-ansi + + + + + node_modules/inquirer/node_modules/string-width + + + + Sindre Sorhus + is-fullwidth-code-point + 2.0.0 + Check if the character represented by a given Unicode code point is fullwidth + + + MIT + + + pkg:npm/is-fullwidth-code-point@2.0.0?vcs_url=sindresorhus/is-fullwidth-code-point + + + sindresorhus/is-fullwidth-code-point + as detected from PackageJson property "repository" + + + + node_modules/inquirer/node_modules/is-fullwidth-code-point + + + + Sindre Sorhus + strip-ansi + 5.2.0 + Strip ANSI escape codes from a string + + + MIT + + + pkg:npm/strip-ansi@5.2.0?vcs_url=chalk/strip-ansi + + + chalk/strip-ansi + as detected from PackageJson property "repository" + + + + + Sindre Sorhus + ansi-regex + 4.1.1 + Regular expression for matching ANSI escape codes + + + MIT + + + pkg:npm/ansi-regex@4.1.1?vcs_url=chalk/ansi-regex + + + chalk/ansi-regex + as detected from PackageJson property "repository" + + + + node_modules/inquirer/node_modules/strip-ansi/node_modules/ansi-regex + + + + + node_modules/inquirer/node_modules/strip-ansi + + + + + node_modules/inquirer + + + + Kevin Gravier <kevin@mrkmg.com> (https://mrkmg.com) + external-editor + 3.1.0 + Edit a string with the users preferred text editor using $VISUAL or $ENVIRONMENT + + + MIT + + + pkg:npm/external-editor@3.1.0?vcs_url=git+https://github.com/mrkmg/node-external-editor.git + + + git+https://github.com/mrkmg/node-external-editor.git + as detected from PackageJson property "repository.url" + + + https://github.com/mrkmg/node-external-editor#readme + as detected from PackageJson property "homepage" + + + https://github.com/mrkmg/node-external-editor/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/external-editor + + + + Dmitry Shirokov <deadrunk@gmail.com> + chardet + 0.7.0 + Character detector + + + MIT + + + pkg:npm/chardet@0.7.0?vcs_url=git@github.com:runk/node-chardet.git + + + https://github.com/runk/node-chardet + as detected from PackageJson property "homepage" + + + http://github.com/runk/node-chardet/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/chardet + + + + Ben Lesh <ben@benlesh.com> + rxjs + 6.6.7 + Reactive Extensions for modern JavaScript + + + Apache-2.0 + + + pkg:npm/rxjs@6.6.7?vcs_url=https://github.com/reactivex/rxjs.git + + + https://github.com/reactivex/rxjs.git + as detected from PackageJson property "repository.url" + + + https://github.com/ReactiveX/RxJS + as detected from PackageJson property "homepage" + + + https://github.com/ReactiveX/RxJS/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/rxjs + + + + Microsoft Corp. + tslib + 1.14.1 + Runtime library for TypeScript helper functions + + + 0BSD + + + pkg:npm/tslib@1.14.1?vcs_url=https://github.com/Microsoft/tslib.git + + + https://github.com/Microsoft/tslib.git + as detected from PackageJson property "repository.url" + + + https://www.typescriptlang.org/ + as detected from PackageJson property "homepage" + + + https://github.com/Microsoft/TypeScript/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/tslib + + + + Alexandru Marasteanu <hello@alexei.ro> (http://alexei.ro/) + sprintf-js + 1.0.3 + JavaScript sprintf implementation + + + BSD-3-Clause + + + pkg:npm/sprintf-js@1.0.3?vcs_url=https://github.com/alexei/sprintf.js.git + + + https://github.com/alexei/sprintf.js.git + as detected from PackageJson property "repository.url" + + + + node_modules/sprintf-js + + + + George Zahariev <z@georgezahariev.com> + prelude-ls + 1.1.2 + 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 projx library for, LiveScript. + + + MIT + https://raw.github.com/gkz/prelude-ls/master/LICENSE + + + pkg:npm/prelude-ls@1.1.2?vcs_url=git://github.com/gkz/prelude-ls.git + + + git://github.com/gkz/prelude-ls.git + as detected from PackageJson property "repository.url" + + + http://preludels.com + as detected from PackageJson property "homepage" + + + https://github.com/gkz/prelude-ls/issues + as detected from PackageJson property "bugs" + + + + node_modules/prelude-ls + + + + George Zahariev <z@georgezahariev.com> + type-check + 0.3.2 + type-check allows you to check the types of JavaScript values at runtime with a Haskell like type syntax. + + + MIT + + + pkg:npm/type-check@0.3.2?vcs_url=git://github.com/gkz/type-check.git + + + git://github.com/gkz/type-check.git + as detected from PackageJson property "repository.url" + + + https://github.com/gkz/type-check + as detected from PackageJson property "homepage" + + + https://github.com/gkz/type-check/issues + as detected from PackageJson property "bugs" + + + + node_modules/type-check + + + + Julian Gruber + brace-expansion + 1.1.11 + Brace expansion as known from sh/bash + + + MIT + + + pkg:npm/brace-expansion@1.1.11?vcs_url=git://github.com/juliangruber/brace-expansion.git + + + git://github.com/juliangruber/brace-expansion.git + as detected from PackageJson property "repository.url" + + + https://github.com/juliangruber/brace-expansion + as detected from PackageJson property "homepage" + + + + node_modules/brace-expansion + + + + James Halliday + concat-map + 0.0.1 + concatenative mapdashery + + + MIT + + + pkg:npm/concat-map@0.0.1?vcs_url=git://github.com/substack/node-concat-map.git + + + git://github.com/substack/node-concat-map.git + as detected from PackageJson property "repository.url" + + + + node_modules/concat-map + + + + Thorsten Lorenz + deep-is + 0.1.4 + node's assert.deepEqual algorithm except for NaN being equal to NaN + + + MIT + + + pkg:npm/deep-is@0.1.4?vcs_url=http://github.com/thlorenz/deep-is.git + + + http://github.com/thlorenz/deep-is.git + as detected from PackageJson property "repository.url" + + + + node_modules/deep-is + + + + Ramesh Nair <ram@hiddentao.com> (http://www.hiddentao.com/) + fast-levenshtein + 2.0.6 + Efficient implementation of Levenshtein algorithm with locale-specific collator support. + + + MIT + + + pkg:npm/fast-levenshtein@2.0.6?vcs_url=https://github.com/hiddentao/fast-levenshtein.git + + + https://github.com/hiddentao/fast-levenshtein.git + as detected from PackageJson property "repository.url" + + + + node_modules/fast-levenshtein + + + + Jon Schlinkert (https://github.com/jonschlinkert) + word-wrap + 1.2.3 + Wrap words to a specified length. + + + MIT + + + pkg:npm/word-wrap@1.2.3?vcs_url=jonschlinkert/word-wrap + + + jonschlinkert/word-wrap + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/word-wrap + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/word-wrap/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/word-wrap + + + + Toru Nagashima (https://github.com/mysticatea) + regexpp + 2.0.1 + Regular expression parser for ECMAScript 2018. + + + MIT + + + pkg:npm/regexpp@2.0.1?vcs_url=git+https://github.com/mysticatea/regexpp.git + + + git+https://github.com/mysticatea/regexpp.git + as detected from PackageJson property "repository.url" + + + https://github.com/mysticatea/regexpp#readme + as detected from PackageJson property "homepage" + + + https://github.com/mysticatea/regexpp/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/regexpp + + + + Gajus Kuizinas + table + 5.4.6 + Formats data into a string table. + + + BSD-3-Clause + + + pkg:npm/table@5.4.6?vcs_url=https://github.com/gajus/table + + + https://github.com/gajus/table + as detected from PackageJson property "repository.url" + + + + + Sindre Sorhus + string-width + 3.1.0 + Get the visual width of a string - the number of columns required to display it + + + MIT + + + pkg:npm/string-width@3.1.0?vcs_url=sindresorhus/string-width + + + sindresorhus/string-width + as detected from PackageJson property "repository" + + + + node_modules/table/node_modules/string-width + + + + Mathias Bynens + emoji-regex + 7.0.3 + A regular expression to match all Emoji-only symbols as per the Unicode Standard. + + + MIT + + + pkg:npm/emoji-regex@7.0.3?vcs_url=https://github.com/mathiasbynens/emoji-regex.git + + + https://github.com/mathiasbynens/emoji-regex.git + as detected from PackageJson property "repository.url" + + + https://mths.be/emoji-regex + as detected from PackageJson property "homepage" + + + https://github.com/mathiasbynens/emoji-regex/issues + as detected from PackageJson property "bugs" + + + + node_modules/table/node_modules/emoji-regex + + + + Sindre Sorhus + is-fullwidth-code-point + 2.0.0 + Check if the character represented by a given Unicode code point is fullwidth + + + MIT + + + pkg:npm/is-fullwidth-code-point@2.0.0?vcs_url=sindresorhus/is-fullwidth-code-point + + + sindresorhus/is-fullwidth-code-point + as detected from PackageJson property "repository" + + + + node_modules/table/node_modules/is-fullwidth-code-point + + + + Sindre Sorhus + strip-ansi + 5.2.0 + Strip ANSI escape codes from a string + + + MIT + + + pkg:npm/strip-ansi@5.2.0?vcs_url=chalk/strip-ansi + + + chalk/strip-ansi + as detected from PackageJson property "repository" + + + + node_modules/table/node_modules/strip-ansi + + + + Sindre Sorhus + ansi-regex + 4.1.1 + Regular expression for matching ANSI escape codes + + + MIT + + + pkg:npm/ansi-regex@4.1.1?vcs_url=chalk/ansi-regex + + + chalk/ansi-regex + as detected from PackageJson property "repository" + + + + node_modules/table/node_modules/ansi-regex + + + + + node_modules/table + + + + slice-ansi + 2.1.0 + Slice a string with ANSI escape codes + + + MIT + + + pkg:npm/slice-ansi@2.1.0?vcs_url=chalk/slice-ansi + + + chalk/slice-ansi + as detected from PackageJson property "repository" + + + + + Sindre Sorhus + is-fullwidth-code-point + 2.0.0 + Check if the character represented by a given Unicode code point is fullwidth + + + MIT + + + pkg:npm/is-fullwidth-code-point@2.0.0?vcs_url=sindresorhus/is-fullwidth-code-point + + + sindresorhus/is-fullwidth-code-point + as detected from PackageJson property "repository" + + + + node_modules/slice-ansi/node_modules/is-fullwidth-code-point + + + + + node_modules/slice-ansi + + + + James Halliday + optimist + 0.6.1 + Light-weight option parsing with an argv hash. No optstrings attached. + + + MIT/X11 + + + pkg:npm/optimist@0.6.1?vcs_url=http://github.com/substack/node-optimist.git + + + http://github.com/substack/node-optimist.git + as detected from PackageJson property "repository.url" + + + + + James Halliday + minimist + 0.0.10 + parse argument options + + + MIT + + + pkg:npm/minimist@0.0.10?vcs_url=git://github.com/substack/minimist.git + + + git://github.com/substack/minimist.git + as detected from PackageJson property "repository.url" + + + https://github.com/substack/minimist + as detected from PackageJson property "homepage" + + + + node_modules/optimist/node_modules/minimist + + + + + node_modules/optimist + + + + James Halliday + wordwrap + 0.0.3 + Wrap those words. Show them at what columns to start and stop. + + + MIT + + + pkg:npm/wordwrap@0.0.3?vcs_url=git://github.com/substack/node-wordwrap.git + + + git://github.com/substack/node-wordwrap.git + as detected from PackageJson property "repository.url" + + + + node_modules/wordwrap + + + + Christian Wlatschiha <c.wlatschiha@gmail.com> + jest-sonar-reporter + 2.0.0 + A Sonar test reporter for Jest. + + + MIT + + + pkg:npm/jest-sonar-reporter@2.0.0?vcs_url=git+https://github.com/3dmind/jest-sonar-reporter.git + + + git+https://github.com/3dmind/jest-sonar-reporter.git + as detected from PackageJson property "repository.url" + + + https://github.com/3dmind/jest-sonar-reporter#readme + as detected from PackageJson property "homepage" + + + https://github.com/3dmind/jest-sonar-reporter/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/jest-sonar-reporter + + + + Dylan Greene (https://github.com/dylang) + xml + 1.0.1 + Fast and simple xml generator. Supports attributes, CDATA, etc. Includes tests and examples. + + + MIT + + + pkg:npm/xml@1.0.1?vcs_url=http://github.com/dylang/node-xml + + + http://github.com/dylang/node-xml + as detected from PackageJson property "repository.url" + + + http://github.com/dylang/node-xml + as detected from PackageJson property "homepage" + + + http://github.com/dylang/node-xml/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/xml + + + + Iskren Ivov Chernev <iskren.chernev@gmail.com> (https://github.com/ichernev) + moment + 2.29.4 + Parse, validate, manipulate, and display dates + + + MIT + + + pkg:npm/moment@2.29.4?vcs_url=https://github.com/moment/moment.git + + + https://github.com/moment/moment.git + as detected from PackageJson property "repository.url" + + + https://momentjs.com + as detected from PackageJson property "homepage" + + + https://github.com/moment/moment/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/moment + + + + Andrew Nesbitt + node-sass + 7.0.3 + Wrapper around libsass + + + MIT + + + pkg:npm/node-sass@7.0.3?vcs_url=https://github.com/sass/node-sass + + + https://github.com/sass/node-sass + as detected from PackageJson property "repository.url" + + + https://github.com/sass/node-sass + as detected from PackageJson property "homepage" + + + https://github.com/sass/node-sass/issues + as detected from PackageJson property "bugs" + + + + + chalk + 4.1.2 + Terminal string styling done right + + + MIT + + + pkg:npm/chalk@4.1.2?vcs_url=chalk/chalk + + + chalk/chalk + as detected from PackageJson property "repository" + + + + node_modules/node-sass/node_modules/chalk + + + + Sindre Sorhus + ansi-styles + 4.3.0 + ANSI escape codes for styling strings in the terminal + + + MIT + + + pkg:npm/ansi-styles@4.3.0?vcs_url=chalk/ansi-styles + + + chalk/ansi-styles + as detected from PackageJson property "repository" + + + + node_modules/node-sass/node_modules/ansi-styles + + + + Heather Arthur <fayearthur@gmail.com> + color-convert + 2.0.1 + Plain color conversion functions + + + MIT + + + pkg:npm/color-convert@2.0.1?vcs_url=Qix-/color-convert + + + Qix-/color-convert + as detected from PackageJson property "repository" + + + + node_modules/node-sass/node_modules/color-convert + + + + DY <dfcreative@gmail.com> + color-name + 1.1.4 + A list of color names and its values + + + MIT + + + pkg:npm/color-name@1.1.4?vcs_url=git@github.com:colorjs/color-name.git + + + https://github.com/colorjs/color-name + as detected from PackageJson property "homepage" + + + https://github.com/colorjs/color-name/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/node-sass/node_modules/color-name + + + + Sindre Sorhus + supports-color + 7.2.0 + Detect whether a terminal supports color + + + MIT + + + pkg:npm/supports-color@7.2.0?vcs_url=chalk/supports-color + + + chalk/supports-color + as detected from PackageJson property "repository" + + + + node_modules/node-sass/node_modules/supports-color + + + + Sindre Sorhus + has-flag + 4.0.0 + Check if argv has a specific flag + + + MIT + + + pkg:npm/has-flag@4.0.0?vcs_url=sindresorhus/has-flag + + + sindresorhus/has-flag + as detected from PackageJson property "repository" + + + + node_modules/node-sass/node_modules/has-flag + + + + Andre Cruz <andre@moxy.studio> + cross-spawn + 7.0.3 + Cross platform child_process#spawn and child_process#spawnSync + + + MIT + + + pkg:npm/cross-spawn@7.0.3?vcs_url=git@github.com:moxystudio/node-cross-spawn.git + + + https://github.com/moxystudio/node-cross-spawn + as detected from PackageJson property "homepage" + + + + node_modules/node-sass/node_modules/cross-spawn + + + + Sindre Sorhus + path-key + 3.1.1 + Get the PATH environment variable key cross-platform + + + MIT + + + pkg:npm/path-key@3.1.1?vcs_url=sindresorhus/path-key + + + sindresorhus/path-key + as detected from PackageJson property "repository" + + + + node_modules/node-sass/node_modules/path-key + + + + Kevin Martensson + shebang-command + 2.0.0 + Get the command from a shebang + + + MIT + + + pkg:npm/shebang-command@2.0.0?vcs_url=kevva/shebang-command + + + kevva/shebang-command + as detected from PackageJson property "repository" + + + + node_modules/node-sass/node_modules/shebang-command + + + + Sindre Sorhus + shebang-regex + 3.0.0 + Regular expression for matching a shebang line + + + MIT + + + pkg:npm/shebang-regex@3.0.0?vcs_url=sindresorhus/shebang-regex + + + sindresorhus/shebang-regex + as detected from PackageJson property "repository" + + + + node_modules/node-sass/node_modules/shebang-regex + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me) + which + 2.0.2 + Like which(1) unix command. Find the first instance of an executable in the PATH. + + + ISC + + + pkg:npm/which@2.0.2?vcs_url=git://github.com/isaacs/node-which.git + + + git://github.com/isaacs/node-which.git + as detected from PackageJson property "repository.url" + + + + node_modules/node-sass/node_modules/which + + + + + node_modules/node-sass + + + + "Cowboy" Ben Alman (http://benalman.com/) + async-foreach + 0.1.3 + An optionally-asynchronous forEach with an interesting interface. + pkg:npm/async-foreach@0.1.3?vcs_url=git://github.com/cowboy/javascript-sync-async-foreach.git + + + git://github.com/cowboy/javascript-sync-async-foreach.git + as detected from PackageJson property "repository.url" + + + http://github.com/cowboy/javascript-sync-async-foreach + as detected from PackageJson property "homepage" + + + https://github.com/cowboy/javascript-sync-async-foreach/issues + as detected from PackageJson property "bugs" + + + + node_modules/async-foreach + + + + Kyle Robinson Young + gaze + 1.1.3 + A globbing fs.watch wrapper built from the best parts of other fine watch libs. + + + MIT + + + pkg:npm/gaze@1.1.3?vcs_url=https://github.com/shama/gaze.git + + + https://github.com/shama/gaze.git + as detected from PackageJson property "repository.url" + + + https://github.com/shama/gaze + as detected from PackageJson property "homepage" + + + https://github.com/shama/gaze/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/gaze + + + + "Cowboy" Ben Alman + globule + 1.3.4 + An easy-to-use wildcard globbing library. + + + MIT + + + pkg:npm/globule@1.3.4?vcs_url=git://github.com/cowboy/node-globule.git + + + git://github.com/cowboy/node-globule.git + as detected from PackageJson property "repository.url" + + + https://github.com/cowboy/node-globule + as detected from PackageJson property "homepage" + + + https://github.com/cowboy/node-globule/issues + as detected from PackageJson property "bugs.url" + + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + glob + 7.1.7 + a little globber + + + ISC + + + pkg:npm/glob@7.1.7?vcs_url=git://github.com/isaacs/node-glob.git + + + git://github.com/isaacs/node-glob.git + as detected from PackageJson property "repository.url" + + + + node_modules/globule/node_modules/glob + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me) + minimatch + 3.0.8 + a glob matcher in javascript + + + ISC + + + pkg:npm/minimatch@3.0.8?vcs_url=git://github.com/isaacs/minimatch.git + + + git://github.com/isaacs/minimatch.git + as detected from PackageJson property "repository.url" + + + + node_modules/globule/node_modules/minimatch + + + + + node_modules/globule + + + + Sindre Sorhus + get-stdin + 4.0.1 + Easier stdin + + + MIT + + + pkg:npm/get-stdin@4.0.1?vcs_url=sindresorhus/get-stdin + + + sindresorhus/get-stdin + as detected from PackageJson property "repository" + + + + node_modules/get-stdin + + + + Sindre Sorhus + meow + 9.0.0 + CLI app helper + + + MIT + + + pkg:npm/meow@9.0.0?vcs_url=sindresorhus/meow + + + sindresorhus/meow + as detected from PackageJson property "repository" + + + + node_modules/meow + + + + @types + minimist + 1.2.2 + TypeScript definitions for minimist + + + MIT + + + pkg:npm/%40types/minimist@1.2.2?vcs_url=https://github.com/DefinitelyTyped/DefinitelyTyped.git#types/minimist + + + https://github.com/DefinitelyTyped/DefinitelyTyped.git#types/minimist + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/minimist + as detected from PackageJson property "homepage" + + + + node_modules/@types/minimist + + + + Sindre Sorhus + camelcase-keys + 6.2.2 + Convert object keys to camel case + + + MIT + + + pkg:npm/camelcase-keys@6.2.2?vcs_url=sindresorhus/camelcase-keys + + + sindresorhus/camelcase-keys + as detected from PackageJson property "repository" + + + + node_modules/camelcase-keys + + + + Sindre Sorhus + map-obj + 4.3.0 + Map object keys and values into a new object + + + MIT + + + pkg:npm/map-obj@4.3.0?vcs_url=sindresorhus/map-obj + + + sindresorhus/map-obj + as detected from PackageJson property "repository" + + + + node_modules/map-obj + + + + Sindre Sorhus + quick-lru + 4.0.1 + Simple "Least Recently Used" (LRU) cache + + + MIT + + + pkg:npm/quick-lru@4.0.1?vcs_url=sindresorhus/quick-lru + + + sindresorhus/quick-lru + as detected from PackageJson property "repository" + + + + node_modules/quick-lru + + + + Sindre Sorhus + decamelize-keys + 1.1.0 + Convert object keys from camelCase to lowercase with a custom separator + + + MIT + + + pkg:npm/decamelize-keys@1.1.0?vcs_url=dsblv/decamelize-keys + + + dsblv/decamelize-keys + as detected from PackageJson property "repository" + + + + + Sindre Sorhus + map-obj + 1.0.1 + Map object keys and values into a new object + + + MIT + + + pkg:npm/map-obj@1.0.1?vcs_url=sindresorhus/map-obj + + + sindresorhus/map-obj + as detected from PackageJson property "repository" + + + + node_modules/decamelize-keys/node_modules/map-obj + + + + + node_modules/decamelize-keys + + + + Sindre Sorhus + hard-rejection + 2.1.0 + Make unhandled promise rejections fail hard right away instead of the default silent fail + + + MIT + + + pkg:npm/hard-rejection@2.1.0?vcs_url=sindresorhus/hard-rejection + + + sindresorhus/hard-rejection + as detected from PackageJson property "repository" + + + + node_modules/hard-rejection + + + + Vadim Demedes <vdemedes@gmail.com> + minimist-options + 4.1.0 + Pretty options for minimist + + + MIT + + + pkg:npm/minimist-options@4.1.0?vcs_url=vadimdemedes/minimist-options + + + vadimdemedes/minimist-options + as detected from PackageJson property "repository" + + + + node_modules/minimist-options + + + + Meryn Stol <merynstol@gmail.com> + normalize-package-data + 3.0.3 + Normalizes data that can be found in package.json files. + + + BSD-2-Clause + + + pkg:npm/normalize-package-data@3.0.3?vcs_url=git://github.com/npm/normalize-package-data.git + + + git://github.com/npm/normalize-package-data.git + as detected from PackageJson property "repository.url" + + + + + GitHub Inc. + semver + 7.3.7 + The semantic version parser used by npm. + + + ISC + + + pkg:npm/semver@7.3.7?vcs_url=https://github.com/npm/node-semver.git + + + https://github.com/npm/node-semver.git + as detected from PackageJson property "repository.url" + + + + node_modules/normalize-package-data/node_modules/semver + + + + Isaac Z. Schlueter <i@izs.me> + lru-cache + 6.0.0 + A cache object that deletes the least-recently-used items. + + + ISC + + + pkg:npm/lru-cache@6.0.0?vcs_url=git://github.com/isaacs/node-lru-cache.git + + + git://github.com/isaacs/node-lru-cache.git + as detected from PackageJson property "repository" + + + + node_modules/normalize-package-data/node_modules/lru-cache + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + yallist + 4.0.0 + Yet Another Linked List + + + ISC + + + pkg:npm/yallist@4.0.0?vcs_url=git+https://github.com/isaacs/yallist.git + + + git+https://github.com/isaacs/yallist.git + as detected from PackageJson property "repository.url" + + + + node_modules/normalize-package-data/node_modules/yallist + + + + + node_modules/normalize-package-data + + + + Rebecca Turner <me@re-becca.org> (http://re-becca.org) + hosted-git-info + 4.1.0 + Provides metadata and conversions from repository urls for GitHub, Bitbucket and GitLab + + + ISC + + + pkg:npm/hosted-git-info@4.1.0?vcs_url=git+https://github.com/npm/hosted-git-info.git + + + git+https://github.com/npm/hosted-git-info.git + as detected from PackageJson property "repository.url" + + + https://github.com/npm/hosted-git-info + as detected from PackageJson property "homepage" + + + https://github.com/npm/hosted-git-info/issues + as detected from PackageJson property "bugs.url" + + + + + Isaac Z. Schlueter <i@izs.me> + lru-cache + 6.0.0 + A cache object that deletes the least-recently-used items. + + + ISC + + + pkg:npm/lru-cache@6.0.0?vcs_url=git://github.com/isaacs/node-lru-cache.git + + + git://github.com/isaacs/node-lru-cache.git + as detected from PackageJson property "repository" + + + + node_modules/hosted-git-info/node_modules/lru-cache + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + yallist + 4.0.0 + Yet Another Linked List + + + ISC + + + pkg:npm/yallist@4.0.0?vcs_url=git+https://github.com/isaacs/yallist.git + + + git+https://github.com/isaacs/yallist.git + as detected from PackageJson property "repository.url" + + + + node_modules/hosted-git-info/node_modules/yallist + + + + + node_modules/hosted-git-info + + + + Sindre Sorhus + read-pkg-up + 7.0.1 + Read the closest package.json file + + + MIT + + + pkg:npm/read-pkg-up@7.0.1?vcs_url=sindresorhus/read-pkg-up + + + sindresorhus/read-pkg-up + as detected from PackageJson property "repository" + + + + + Sindre Sorhus + find-up + 4.1.0 + Find a file or directory by walking up parent directories + + + MIT + + + pkg:npm/find-up@4.1.0?vcs_url=sindresorhus/find-up + + + sindresorhus/find-up + as detected from PackageJson property "repository" + + + + node_modules/read-pkg-up/node_modules/find-up + + + + Sindre Sorhus + locate-path + 5.0.0 + Get the first path that exists on disk of multiple paths + + + MIT + + + pkg:npm/locate-path@5.0.0?vcs_url=sindresorhus/locate-path + + + sindresorhus/locate-path + as detected from PackageJson property "repository" + + + + node_modules/read-pkg-up/node_modules/locate-path + + + + Sindre Sorhus + p-locate + 4.1.0 + Get the first fulfilled promise that satisfies the provided testing function + + + MIT + + + pkg:npm/p-locate@4.1.0?vcs_url=sindresorhus/p-locate + + + sindresorhus/p-locate + as detected from PackageJson property "repository" + + + + node_modules/read-pkg-up/node_modules/p-locate + + + + Sindre Sorhus + p-limit + 2.3.0 + Run multiple promise-returning & async functions with limited concurrency + + + MIT + + + pkg:npm/p-limit@2.3.0?vcs_url=sindresorhus/p-limit + + + sindresorhus/p-limit + as detected from PackageJson property "repository" + + + + node_modules/read-pkg-up/node_modules/p-limit + + + + Sindre Sorhus + p-try + 2.2.0 + `Start a promise chain + + + MIT + + + pkg:npm/p-try@2.2.0?vcs_url=sindresorhus/p-try + + + sindresorhus/p-try + as detected from PackageJson property "repository" + + + + node_modules/read-pkg-up/node_modules/p-try + + + + Sindre Sorhus + path-exists + 4.0.0 + Check if a path exists + + + MIT + + + pkg:npm/path-exists@4.0.0?vcs_url=sindresorhus/path-exists + + + sindresorhus/path-exists + as detected from PackageJson property "repository" + + + + node_modules/read-pkg-up/node_modules/path-exists + + + + Sindre Sorhus + type-fest + 0.8.1 + A collection of essential TypeScript types + + (MIT OR CC0-1.0) + + pkg:npm/type-fest@0.8.1?vcs_url=sindresorhus/type-fest + + + sindresorhus/type-fest + as detected from PackageJson property "repository" + + + + node_modules/read-pkg-up/node_modules/type-fest + + + + + node_modules/read-pkg-up + + + + Sindre Sorhus + redent + 3.0.0 + Strip redundant indentation and indent the string + + + MIT + + + pkg:npm/redent@3.0.0?vcs_url=sindresorhus/redent + + + sindresorhus/redent + as detected from PackageJson property "repository" + + + + node_modules/redent + + + + Sindre Sorhus + indent-string + 4.0.0 + Indent each line in a string + + + MIT + + + pkg:npm/indent-string@4.0.0?vcs_url=sindresorhus/indent-string + + + sindresorhus/indent-string + as detected from PackageJson property "repository" + + + + node_modules/indent-string + + + + Sindre Sorhus + strip-indent + 3.0.0 + Strip leading whitespace from each line in a string + + + MIT + + + pkg:npm/strip-indent@3.0.0?vcs_url=sindresorhus/strip-indent + + + sindresorhus/strip-indent + as detected from PackageJson property "repository" + + + + node_modules/strip-indent + + + + James Kyle + min-indent + 1.0.1 + Get the shortest leading whitespace from lines in a string + + + MIT + + + pkg:npm/min-indent@1.0.1?vcs_url=https://github.com/thejameskyle/min-indent + + + https://github.com/thejameskyle/min-indent + as detected from PackageJson property "repository" + + + + node_modules/min-indent + + + + Sindre Sorhus + trim-newlines + 3.0.1 + Trim newlines from the start and/or end of a string + + + MIT + + + pkg:npm/trim-newlines@3.0.1?vcs_url=sindresorhus/trim-newlines + + + sindresorhus/trim-newlines + as detected from PackageJson property "repository" + + + + node_modules/trim-newlines + + + + Sindre Sorhus + type-fest + 0.18.1 + A collection of essential TypeScript types + + (MIT OR CC0-1.0) + + pkg:npm/type-fest@0.18.1?vcs_url=sindresorhus/type-fest + + + sindresorhus/type-fest + as detected from PackageJson property "repository" + + + + node_modules/type-fest + + + + nan + 2.16.0 + Native Abstractions for Node.js: C++ header for Node 0.8 -> 14 compatibility + + + MIT + + + pkg:npm/nan@2.16.0?vcs_url=git://github.com/nodejs/nan.git + + + git://github.com/nodejs/nan.git + as detected from PackageJson property "repository.url" + + + + node_modules/nan + + + + Nathan Rajlich <nathan@tootallnate.net> (http://tootallnate.net) + node-gyp + 8.4.1 + Node.js native addon build tool + + + MIT + + + pkg:npm/node-gyp@8.4.1?vcs_url=git://github.com/nodejs/node-gyp.git + + + git://github.com/nodejs/node-gyp.git + as detected from PackageJson property "repository.url" + + + + + GitHub Inc. + npmlog + 6.0.2 + logger for npm + + + ISC + + + pkg:npm/npmlog@6.0.2?vcs_url=https://github.com/npm/npmlog.git + + + https://github.com/npm/npmlog.git + as detected from PackageJson property "repository.url" + + + + node_modules/node-gyp/node_modules/npmlog + + + + GitHub Inc. + are-we-there-yet + 3.0.1 + Keep track of the overall completion of many disparate processes + + + ISC + + + pkg:npm/are-we-there-yet@3.0.1?vcs_url=https://github.com/npm/are-we-there-yet.git + + + https://github.com/npm/are-we-there-yet.git + as detected from PackageJson property "repository.url" + + + https://github.com/npm/are-we-there-yet + as detected from PackageJson property "homepage" + + + https://github.com/npm/are-we-there-yet/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/node-gyp/node_modules/are-we-there-yet + + + + readable-stream + 3.6.0 + Streams3, a user-land copy of the stream library from Node.js + + + MIT + + + pkg:npm/readable-stream@3.6.0?vcs_url=git://github.com/nodejs/readable-stream + + + git://github.com/nodejs/readable-stream + as detected from PackageJson property "repository.url" + + + + node_modules/node-gyp/node_modules/readable-stream + + + + GitHub Inc. + gauge + 4.0.4 + A terminal projxd horizontal gauge + + + ISC + + + pkg:npm/gauge@4.0.4?vcs_url=https://github.com/npm/gauge.git + + + https://github.com/npm/gauge.git + as detected from PackageJson property "repository.url" + + + https://github.com/npm/gauge + as detected from PackageJson property "homepage" + + + https://github.com/npm/gauge/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/node-gyp/node_modules/gauge + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + rimraf + 3.0.2 + A deep deletion module for node (like `rm -rf`) + + + ISC + + + pkg:npm/rimraf@3.0.2?vcs_url=git://github.com/isaacs/rimraf.git + + + git://github.com/isaacs/rimraf.git + as detected from PackageJson property "repository" + + + + node_modules/node-gyp/node_modules/rimraf + + + + GitHub Inc. + semver + 7.3.7 + The semantic version parser used by npm. + + + ISC + + + pkg:npm/semver@7.3.7?vcs_url=https://github.com/npm/node-semver.git + + + https://github.com/npm/node-semver.git + as detected from PackageJson property "repository.url" + + + + node_modules/node-gyp/node_modules/semver + + + + Isaac Z. Schlueter <i@izs.me> + lru-cache + 6.0.0 + A cache object that deletes the least-recently-used items. + + + ISC + + + pkg:npm/lru-cache@6.0.0?vcs_url=git://github.com/isaacs/node-lru-cache.git + + + git://github.com/isaacs/node-lru-cache.git + as detected from PackageJson property "repository" + + + + node_modules/node-gyp/node_modules/lru-cache + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + yallist + 4.0.0 + Yet Another Linked List + + + ISC + + + pkg:npm/yallist@4.0.0?vcs_url=git+https://github.com/isaacs/yallist.git + + + git+https://github.com/isaacs/yallist.git + as detected from PackageJson property "repository.url" + + + + node_modules/node-gyp/node_modules/yallist + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me) + which + 2.0.2 + Like which(1) unix command. Find the first instance of an executable in the PATH. + + + ISC + + + pkg:npm/which@2.0.2?vcs_url=git://github.com/isaacs/node-which.git + + + git://github.com/isaacs/node-which.git + as detected from PackageJson property "repository.url" + + + + node_modules/node-gyp/node_modules/which + + + + + node_modules/node-gyp + + + + Sindre Sorhus + env-paths + 2.2.1 + Get paths for storing things like data, config, cache, etc + + + MIT + + + pkg:npm/env-paths@2.2.1?vcs_url=sindresorhus/env-paths + + + sindresorhus/env-paths + as detected from PackageJson property "repository" + + + + node_modules/env-paths + + + + Kat Marchan + make-fetch-happen + 9.1.0 + Opinionated, caching, retrying fetch client + + + ISC + + + pkg:npm/make-fetch-happen@9.1.0?vcs_url=https://github.com/npm/make-fetch-happen + + + https://github.com/npm/make-fetch-happen + as detected from PackageJson property "repository" + + + + + cacache + 15.3.0 + Fast, fault-tolerant, cross-platform, disk-projxd, data-agnostic, content-addressable cache. + + + ISC + + + pkg:npm/cacache@15.3.0?vcs_url=https://github.com/npm/cacache + + + https://github.com/npm/cacache + as detected from PackageJson property "repository" + + + + node_modules/make-fetch-happen/node_modules/cacache + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + chownr + 2.0.0 + like `chown -R` + + + ISC + + + pkg:npm/chownr@2.0.0?vcs_url=git://github.com/isaacs/chownr.git + + + git://github.com/isaacs/chownr.git + as detected from PackageJson property "repository.url" + + + + node_modules/make-fetch-happen/node_modules/chownr + + + + Isaac Z. Schlueter <i@izs.me> + lru-cache + 6.0.0 + A cache object that deletes the least-recently-used items. + + + ISC + + + pkg:npm/lru-cache@6.0.0?vcs_url=git://github.com/isaacs/node-lru-cache.git + + + git://github.com/isaacs/node-lru-cache.git + as detected from PackageJson property "repository" + + + + node_modules/make-fetch-happen/node_modules/lru-cache + + + + mkdirp + 1.0.4 + Recursively mkdir, like `mkdir -p` + + + MIT + + + pkg:npm/mkdirp@1.0.4?vcs_url=https://github.com/isaacs/node-mkdirp.git + + + https://github.com/isaacs/node-mkdirp.git + as detected from PackageJson property "repository.url" + + + + node_modules/make-fetch-happen/node_modules/mkdirp + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + rimraf + 3.0.2 + A deep deletion module for node (like `rm -rf`) + + + ISC + + + pkg:npm/rimraf@3.0.2?vcs_url=git://github.com/isaacs/rimraf.git + + + git://github.com/isaacs/rimraf.git + as detected from PackageJson property "repository" + + + + node_modules/make-fetch-happen/node_modules/rimraf + + + + Kat Marchan + ssri + 8.0.1 + Standard Subresource Integrity library -- parses, serializes, generates, and verifies integrity metadata according to the SRI spec. + + + ISC + + + pkg:npm/ssri@8.0.1?vcs_url=https://github.com/npm/ssri + + + https://github.com/npm/ssri + as detected from PackageJson property "repository" + + + + node_modules/make-fetch-happen/node_modules/ssri + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + yallist + 4.0.0 + Yet Another Linked List + + + ISC + + + pkg:npm/yallist@4.0.0?vcs_url=git+https://github.com/isaacs/yallist.git + + + git+https://github.com/isaacs/yallist.git + as detected from PackageJson property "repository.url" + + + + node_modules/make-fetch-happen/node_modules/yallist + + + + + node_modules/make-fetch-happen + + + + fengmk2 <fengmk2@gmail.com> (https://fengmk2.com) + agentkeepalive + 4.2.1 + Missing keepalive http.Agent + + + MIT + + + pkg:npm/agentkeepalive@4.2.1?vcs_url=git://github.com/node-modules/agentkeepalive.git + + + git://github.com/node-modules/agentkeepalive.git + as detected from PackageJson property "repository.url" + + + https://github.com/node-modules/agentkeepalive/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/agentkeepalive + + + + dead-horse + humanize-ms + 1.2.1 + transform humanize time to ms + + + MIT + + + pkg:npm/humanize-ms@1.2.1?vcs_url=https://github.com/node-modules/humanize-ms + + + https://github.com/node-modules/humanize-ms + as detected from PackageJson property "repository.url" + + + + node_modules/humanize-ms + + + + GitHub Inc. + @npmcli + fs + 1.1.1 + filesystem utilities for the npm cli + + + ISC + + + pkg:npm/%40npmcli/fs@1.1.1 + + + GitHub Inc. + semver + 7.3.7 + The semantic version parser used by npm. + + + ISC + + + pkg:npm/semver@7.3.7?vcs_url=https://github.com/npm/node-semver.git + + + https://github.com/npm/node-semver.git + as detected from PackageJson property "repository.url" + + + + node_modules/@npmcli/fs/node_modules/semver + + + + Isaac Z. Schlueter <i@izs.me> + lru-cache + 6.0.0 + A cache object that deletes the least-recently-used items. + + + ISC + + + pkg:npm/lru-cache@6.0.0?vcs_url=git://github.com/isaacs/node-lru-cache.git + + + git://github.com/isaacs/node-lru-cache.git + as detected from PackageJson property "repository" + + + + node_modules/@npmcli/fs/node_modules/lru-cache + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + yallist + 4.0.0 + Yet Another Linked List + + + ISC + + + pkg:npm/yallist@4.0.0?vcs_url=git+https://github.com/isaacs/yallist.git + + + git+https://github.com/isaacs/yallist.git + as detected from PackageJson property "repository.url" + + + + node_modules/@npmcli/fs/node_modules/yallist + + + + + node_modules/@npmcli/fs + + + + Gar <gar+npm@danger.computer> + @gar + promisify + 1.1.3 + Promisify an entire class or object + + + MIT + + + pkg:npm/%40gar/promisify@1.1.3?vcs_url=https://github.com/wraithgar/gar-promisify.git + + + https://github.com/wraithgar/gar-promisify.git + as detected from PackageJson property "repository.url" + + + + node_modules/@gar/promisify + + + + @npmcli + move-file + 1.1.2 + move a file (fork of move-file) + + + MIT + + + pkg:npm/%40npmcli/move-file@1.1.2?vcs_url=git+https://github.com/npm/move-file + + + git+https://github.com/npm/move-file + as detected from PackageJson property "repository.url" + + + + + mkdirp + 1.0.4 + Recursively mkdir, like `mkdir -p` + + + MIT + + + pkg:npm/mkdirp@1.0.4?vcs_url=https://github.com/isaacs/node-mkdirp.git + + + https://github.com/isaacs/node-mkdirp.git + as detected from PackageJson property "repository.url" + + + + node_modules/@npmcli/move-file/node_modules/mkdirp + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + rimraf + 3.0.2 + A deep deletion module for node (like `rm -rf`) + + + ISC + + + pkg:npm/rimraf@3.0.2?vcs_url=git://github.com/isaacs/rimraf.git + + + git://github.com/isaacs/rimraf.git + as detected from PackageJson property "repository" + + + + node_modules/@npmcli/move-file/node_modules/rimraf + + + + + node_modules/@npmcli/move-file + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + fs-minipass + 2.1.0 + fs read and write streams projxd on minipass + + + ISC + + + pkg:npm/fs-minipass@2.1.0?vcs_url=git+https://github.com/npm/fs-minipass.git + + + git+https://github.com/npm/fs-minipass.git + as detected from PackageJson property "repository.url" + + + https://github.com/npm/fs-minipass#readme + as detected from PackageJson property "homepage" + + + https://github.com/npm/fs-minipass/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/fs-minipass + + + + Isaac Z. Schlueter <i@izs.me> (https://izs.me) + minipass-collect + 1.0.2 + A Minipass stream that collects all the data into a single chunk + + + ISC + + + pkg:npm/minipass-collect@1.0.2 + + node_modules/minipass-collect + + + + Isaac Z. Schlueter <i@izs.me> (https://izs.me) + minipass-flush + 1.0.5 + A Minipass stream that calls a flush function before emitting 'end' + + + ISC + + + pkg:npm/minipass-flush@1.0.5?vcs_url=git+https://github.com/isaacs/minipass-flush.git + + + git+https://github.com/isaacs/minipass-flush.git + as detected from PackageJson property "repository.url" + + + + node_modules/minipass-flush + + + + Isaac Z. Schlueter <i@izs.me> (https://izs.me) + minipass-pipeline + 1.2.4 + create a pipeline of streams using Minipass + + + ISC + + + pkg:npm/minipass-pipeline@1.2.4 + + node_modules/minipass-pipeline + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + minipass + 3.3.4 + minimal implementation of a PassThrough stream + + + ISC + + + pkg:npm/minipass@3.3.4?vcs_url=git+https://github.com/isaacs/minipass.git + + + git+https://github.com/isaacs/minipass.git + as detected from PackageJson property "repository.url" + + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + yallist + 4.0.0 + Yet Another Linked List + + + ISC + + + pkg:npm/yallist@4.0.0?vcs_url=git+https://github.com/isaacs/yallist.git + + + git+https://github.com/isaacs/yallist.git + as detected from PackageJson property "repository.url" + + + + node_modules/minipass/node_modules/yallist + + + + + node_modules/minipass + + + + Sindre Sorhus + p-map + 4.0.0 + Map over promises concurrently + + + MIT + + + pkg:npm/p-map@4.0.0?vcs_url=sindresorhus/p-map + + + sindresorhus/p-map + as detected from PackageJson property "repository" + + + + node_modules/p-map + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + tar + 6.1.11 + tar for node + + + ISC + + + pkg:npm/tar@6.1.11?vcs_url=https://github.com/npm/node-tar.git + + + https://github.com/npm/node-tar.git + as detected from PackageJson property "repository.url" + + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + chownr + 2.0.0 + like `chown -R` + + + ISC + + + pkg:npm/chownr@2.0.0?vcs_url=git://github.com/isaacs/chownr.git + + + git://github.com/isaacs/chownr.git + as detected from PackageJson property "repository.url" + + + + node_modules/tar/node_modules/chownr + + + + mkdirp + 1.0.4 + Recursively mkdir, like `mkdir -p` + + + MIT + + + pkg:npm/mkdirp@1.0.4?vcs_url=https://github.com/isaacs/node-mkdirp.git + + + https://github.com/isaacs/node-mkdirp.git + as detected from PackageJson property "repository.url" + + + + node_modules/tar/node_modules/mkdirp + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + yallist + 4.0.0 + Yet Another Linked List + + + ISC + + + pkg:npm/yallist@4.0.0?vcs_url=git+https://github.com/isaacs/yallist.git + + + git+https://github.com/isaacs/yallist.git + as detected from PackageJson property "repository.url" + + + + node_modules/tar/node_modules/yallist + + + + + node_modules/tar + + + + Kornel Lesinski <kornel@geekhood.net> (https://kornel.ski/) + http-cache-semantics + 4.1.0 + Parses Cache-Control and other headers. Helps building correct HTTP caches and proxies + + + BSD-2-Clause + + + pkg:npm/http-cache-semantics@4.1.0?vcs_url=https://github.com/kornelski/http-cache-semantics.git + + + https://github.com/kornelski/http-cache-semantics.git + as detected from PackageJson property "repository" + + + + node_modules/http-cache-semantics + + + + Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/) + http-proxy-agent + 4.0.1 + An HTTP(s) proxy `http.Agent` implementation for HTTP + + + MIT + + + pkg:npm/http-proxy-agent@4.0.1?vcs_url=git://github.com/TooTallNate/node-http-proxy-agent.git + + + git://github.com/TooTallNate/node-http-proxy-agent.git + as detected from PackageJson property "repository.url" + + + https://github.com/TooTallNate/node-http-proxy-agent/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/http-proxy-agent + + + + Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/) + @tootallnate + once + 1.1.2 + Creates a Promise that waits for a single event + + + MIT + + + pkg:npm/%40tootallnate/once@1.1.2?vcs_url=git://github.com/TooTallNate/once.git + + + git://github.com/TooTallNate/once.git + as detected from PackageJson property "repository.url" + + + https://github.com/TooTallNate/once/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/@tootallnate/once + + + + Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/) + agent-projx + 6.0.2 + Turn a function into an `http.Agent` instance + + + MIT + + + pkg:npm/agent-projx@6.0.2?vcs_url=git://github.com/TooTallNate/node-agent-projx.git + + + git://github.com/TooTallNate/node-agent-projx.git + as detected from PackageJson property "repository.url" + + + https://github.com/TooTallNate/node-agent-projx/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/agent-projx + + + + Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/) + https-proxy-agent + 5.0.1 + An HTTP(s) proxy `http.Agent` implementation for HTTPS + + + MIT + + + pkg:npm/https-proxy-agent@5.0.1?vcs_url=git://github.com/TooTallNate/node-https-proxy-agent.git + + + git://github.com/TooTallNate/node-https-proxy-agent.git + as detected from PackageJson property "repository.url" + + + https://github.com/TooTallNate/node-https-proxy-agent/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/https-proxy-agent + + + + Thomas Watson Steen <w@tson.dk> (https://twitter.com/wa7son) + is-lambda + 1.0.1 + Detect if your code is running on an AWS Lambda server + + + MIT + + + pkg:npm/is-lambda@1.0.1?vcs_url=https://github.com/watson/is-lambda.git + + + https://github.com/watson/is-lambda.git + as detected from PackageJson property "repository.url" + + + https://github.com/watson/is-lambda + as detected from PackageJson property "homepage" + + + https://github.com/watson/is-lambda/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/is-lambda + + + + minipass-fetch + 1.4.1 + An implementation of window.fetch in Node.js using Minipass streams + + + MIT + + + pkg:npm/minipass-fetch@1.4.1?vcs_url=git+https://github.com/npm/minipass-fetch.git + + + git+https://github.com/npm/minipass-fetch.git + as detected from PackageJson property "repository.url" + + + + node_modules/minipass-fetch + + + + Andris Reinman + encoding + 0.1.13 + Convert encodings, uses iconv-lite + + + MIT + + + pkg:npm/encoding@0.1.13?vcs_url=https://github.com/andris9/encoding.git + + + https://github.com/andris9/encoding.git + as detected from PackageJson property "repository" + + + + + Alexander Shtuchkin <ashtuchkin@gmail.com> + iconv-lite + 0.6.3 + Convert character encodings in pure javascript. + + + MIT + + + pkg:npm/iconv-lite@0.6.3?vcs_url=git://github.com/ashtuchkin/iconv-lite.git + + + git://github.com/ashtuchkin/iconv-lite.git + as detected from PackageJson property "repository.url" + + + https://github.com/ashtuchkin/iconv-lite + as detected from PackageJson property "homepage" + + + https://github.com/ashtuchkin/iconv-lite/issues + as detected from PackageJson property "bugs" + + + + node_modules/encoding/node_modules/iconv-lite + + + + + node_modules/encoding + + + + Isaac Z. Schlueter <i@izs.me> (https://izs.me) + minipass-sized + 1.0.3 + A Minipass stream that raises an error if you get a different number of bytes than expected + + + ISC + + + pkg:npm/minipass-sized@1.0.3?vcs_url=git+https://github.com/isaacs/minipass-sized.git + + + git+https://github.com/isaacs/minipass-sized.git + as detected from PackageJson property "repository.url" + + + + node_modules/minipass-sized + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + minizlib + 2.1.2 + A small fast zlib stream built on [minipass](http://npm.im/minipass) and Node.js's zlib binding. + + + MIT + + + pkg:npm/minizlib@2.1.2?vcs_url=git+https://github.com/isaacs/minizlib.git + + + git+https://github.com/isaacs/minizlib.git + as detected from PackageJson property "repository.url" + + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + yallist + 4.0.0 + Yet Another Linked List + + + ISC + + + pkg:npm/yallist@4.0.0?vcs_url=git+https://github.com/isaacs/yallist.git + + + git+https://github.com/isaacs/yallist.git + as detected from PackageJson property "repository.url" + + + + node_modules/minizlib/node_modules/yallist + + + + + node_modules/minizlib + + + + IndigoUnited <hello@indigounited.com> (http://indigounited.com) + promise-retry + 2.0.1 + Retries a function that returns a promise, leveraging the power of the retry module. + + + MIT + + + pkg:npm/promise-retry@2.0.1?vcs_url=git://github.com/IndigoUnited/node-promise-retry.git + + + git://github.com/IndigoUnited/node-promise-retry.git + as detected from PackageJson property "repository.url" + + + https://github.com/IndigoUnited/node-promise-retry/issues/ + as detected from PackageJson property "bugs.url" + + + + node_modules/promise-retry + + + + IndigoUnited <hello@indigounited.com> (http://indigounited.com) + err-code + 2.0.3 + Create an error with a code + + + MIT + + + pkg:npm/err-code@2.0.3?vcs_url=git://github.com/IndigoUnited/js-err-code.git + + + git://github.com/IndigoUnited/js-err-code.git + as detected from PackageJson property "repository.url" + + + https://github.com/IndigoUnited/js-err-code/issues/ + as detected from PackageJson property "bugs.url" + + + + node_modules/err-code + + + + Nathan Rajlich + socks-proxy-agent + 6.2.1 + A SOCKS proxy `http.Agent` implementation for HTTP and HTTPS + + + MIT + + + pkg:npm/socks-proxy-agent@6.2.1?vcs_url=git://github.com/TooTallNate/node-socks-proxy-agent.git + + + git://github.com/TooTallNate/node-socks-proxy-agent.git + as detected from PackageJson property "repository.url" + + + https://github.com/TooTallNate/node-socks-proxy-agent#readme + as detected from PackageJson property "homepage" + + + https://github.com/TooTallNate/node-socks-proxy-agent/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/socks-proxy-agent + + + + Josh Glazebrook + socks + 2.7.0 + Fully featured SOCKS proxy client supporting SOCKSv4, SOCKSv4a, and SOCKSv5. Includes Bind and Associate functionality. + + + MIT + + + pkg:npm/socks@2.7.0?vcs_url=https://github.com/JoshGlazebrook/socks.git + + + https://github.com/JoshGlazebrook/socks.git + as detected from PackageJson property "repository.url" + + + https://github.com/JoshGlazebrook/socks/ + as detected from PackageJson property "homepage" + + + https://github.com/JoshGlazebrook/socks/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/socks + + + + Fedor Indutny <fedor@indutny.com> + ip + 2.0.0 + + + MIT + + + pkg:npm/ip@2.0.0?vcs_url=http://github.com/indutny/node-ip.git + + + http://github.com/indutny/node-ip.git + as detected from PackageJson property "repository.url" + + + https://github.com/indutny/node-ip + as detected from PackageJson property "homepage" + + + + node_modules/ip + + + + Josh Glazebrook + smart-buffer + 4.2.0 + smart-buffer is a Buffer wrapper that adds automatic read & write offset tracking, string operations, data insertions, and more. + + + MIT + + + pkg:npm/smart-buffer@4.2.0?vcs_url=https://github.com/JoshGlazebrook/smart-buffer.git + + + https://github.com/JoshGlazebrook/smart-buffer.git + as detected from PackageJson property "repository.url" + + + https://github.com/JoshGlazebrook/smart-buffer/ + as detected from PackageJson property "homepage" + + + https://github.com/JoshGlazebrook/smart-buffer/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/smart-buffer + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + nopt + 5.0.0 + Option parsing for Node, supporting types, shorthands, etc. Used by npm. + + + ISC + + + pkg:npm/nopt@5.0.0?vcs_url=https://github.com/npm/nopt.git + + + https://github.com/npm/nopt.git + as detected from PackageJson property "repository.url" + + + + node_modules/nopt + + + + delegates + 1.0.0 + delegate methods and accessors to another property + + + MIT + + + pkg:npm/delegates@1.0.0?vcs_url=visionmedia/node-delegates + + + visionmedia/node-delegates + as detected from PackageJson property "repository" + + + + node_modules/delegates + + + + Rebecca Turner <me@re-becca.org> (http://re-becca.org/) + console-control-strings + 1.1.0 + 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. + + + ISC + + + pkg:npm/console-control-strings@1.1.0?vcs_url=https://github.com/iarna/console-control-strings + + + https://github.com/iarna/console-control-strings + as detected from PackageJson property "repository.url" + + + + node_modules/console-control-strings + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + color-support + 1.1.3 + A module which will endeavor to guess your terminal's level of color support. + + + ISC + + + pkg:npm/color-support@1.1.3?vcs_url=git+https://github.com/isaacs/color-support.git + + + git+https://github.com/isaacs/color-support.git + as detected from PackageJson property "repository.url" + + + + node_modules/color-support + + + + Rebecca Turner <me@re-becca.org> + has-unicode + 2.0.1 + Try to guess if your terminal supports unicode + + + ISC + + + pkg:npm/has-unicode@2.0.1?vcs_url=https://github.com/iarna/has-unicode + + + https://github.com/iarna/has-unicode + as detected from PackageJson property "repository.url" + + + https://github.com/iarna/has-unicode + as detected from PackageJson property "homepage" + + + https://github.com/iarna/has-unicode/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/has-unicode + + + + Rebecca Turner <me@re-becca.org> (http://re-becca.org/) + wide-align + 1.1.5 + A wide-character aware text alignment function for use on the console or with fixed width fonts. + + + ISC + + + pkg:npm/wide-align@1.1.5?vcs_url=https://github.com/iarna/wide-align + + + https://github.com/iarna/wide-align + as detected from PackageJson property "repository.url" + + + + node_modules/wide-align + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + npmlog + 5.0.1 + logger for npm + + + ISC + + + pkg:npm/npmlog@5.0.1?vcs_url=https://github.com/npm/npmlog.git + + + https://github.com/npm/npmlog.git + as detected from PackageJson property "repository.url" + + + + node_modules/npmlog + + + + GitHub Inc. + are-we-there-yet + 2.0.0 + Keep track of the overall completion of many disparate processes + + + ISC + + + pkg:npm/are-we-there-yet@2.0.0?vcs_url=https://github.com/npm/are-we-there-yet.git + + + https://github.com/npm/are-we-there-yet.git + as detected from PackageJson property "repository.url" + + + https://github.com/npm/are-we-there-yet + as detected from PackageJson property "homepage" + + + https://github.com/npm/are-we-there-yet/issues + as detected from PackageJson property "bugs.url" + + + + + readable-stream + 3.6.0 + Streams3, a user-land copy of the stream library from Node.js + + + MIT + + + pkg:npm/readable-stream@3.6.0?vcs_url=git://github.com/nodejs/readable-stream + + + git://github.com/nodejs/readable-stream + as detected from PackageJson property "repository.url" + + + + node_modules/are-we-there-yet/node_modules/readable-stream + + + + + node_modules/are-we-there-yet + + + + Rebecca Turner <me@re-becca.org> + gauge + 3.0.2 + A terminal projxd horizontal guage + + + ISC + + + pkg:npm/gauge@3.0.2?vcs_url=https://github.com/iarna/gauge + + + https://github.com/iarna/gauge + as detected from PackageJson property "repository.url" + + + https://github.com/npm/gauge + as detected from PackageJson property "homepage" + + + https://github.com/npm/gauge/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/gauge + + + + Mikeal Rogers <mikeal.rogers@gmail.com> (http://www.futurealoof.com) + aws-sign2 + 0.7.0 + AWS signing. Originally pulled from LearnBoost/knox, maintained as vendor in request, now a standalone module. + + + Apache-2.0 + + + pkg:npm/aws-sign2@0.7.0?vcs_url=https://github.com/mikeal/aws-sign + + + https://github.com/mikeal/aws-sign + as detected from PackageJson property "repository.url" + + + + node_modules/aws-sign2 + + + + Michael Hart <michael.hart.au@gmail.com> (https://github.com/mhart) + aws4 + 1.11.0 + Signs and prepares requests using AWS Signature Version 4 + + + MIT + + + pkg:npm/aws4@1.11.0?vcs_url=github:mhart/aws4 + + + github:mhart/aws4 + as detected from PackageJson property "repository" + + + + node_modules/aws4 + + + + Mikeal Rogers <mikeal.rogers@gmail.com> + caseless + 0.12.0 + Caseless object set/get/has, very useful when working with HTTP headers. + + + Apache-2.0 + + + pkg:npm/caseless@0.12.0?vcs_url=https://github.com/mikeal/caseless + + + https://github.com/mikeal/caseless + as detected from PackageJson property "repository.url" + + + https://github.com/mikeal/caseless/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/caseless + + + + Felix Geisendorfer <felix@debuggable.com> (http://debuggable.com/) + combined-stream + 1.0.8 + A stream that emits multiple other streams one after another. + + + MIT + + + pkg:npm/combined-stream@1.0.8?vcs_url=git://github.com/felixge/node-combined-stream.git + + + git://github.com/felixge/node-combined-stream.git + as detected from PackageJson property "repository.url" + + + https://github.com/felixge/node-combined-stream + as detected from PackageJson property "homepage" + + + + node_modules/combined-stream + + + + Felix Geisendorfer <felix@debuggable.com> (http://debuggable.com/) + delayed-stream + 1.0.0 + Buffers events from a stream until you are ready to handle them. + + + MIT + + + pkg:npm/delayed-stream@1.0.0?vcs_url=git://github.com/felixge/node-delayed-stream.git + + + git://github.com/felixge/node-delayed-stream.git + as detected from PackageJson property "repository.url" + + + https://github.com/felixge/node-delayed-stream + as detected from PackageJson property "homepage" + + + + node_modules/delayed-stream + + + + Stefan Thomas <justmoon@members.fsf.org> (http://www.justmoon.net) + extend + 3.0.2 + Port of jQuery.extend for node.js and the browser + + + MIT + + + pkg:npm/extend@3.0.2?vcs_url=https://github.com/justmoon/node-extend.git + + + https://github.com/justmoon/node-extend.git + as detected from PackageJson property "repository.url" + + + + node_modules/extend + + + + Mikeal Rogers <mikeal.rogers@gmail.com> (http://www.futurealoof.com) + forever-agent + 0.6.1 + HTTP Agent that keeps socket connections alive between keep-alive requests. Formerly part of mikeal/request, now a standalone module. + + + Apache-2.0 + + + pkg:npm/forever-agent@0.6.1?vcs_url=https://github.com/mikeal/forever-agent + + + https://github.com/mikeal/forever-agent + as detected from PackageJson property "repository.url" + + + + node_modules/forever-agent + + + + Felix Geisendorfer <felix@debuggable.com> (http://debuggable.com/) + form-data + 2.3.3 + A library to create readable "multipart/form-data" streams. Can be used to submit forms and file uploads to other web applications. + + + MIT + + + pkg:npm/form-data@2.3.3?vcs_url=git://github.com/form-data/form-data.git + + + git://github.com/form-data/form-data.git + as detected from PackageJson property "repository.url" + + + + node_modules/form-data + + + + Alex Indigo <iam@alexindigo.com> + asynckit + 0.4.0 + Minimal async jobs utility library, with streams support + + + MIT + + + pkg:npm/asynckit@0.4.0?vcs_url=git+https://github.com/alexindigo/asynckit.git + + + git+https://github.com/alexindigo/asynckit.git + as detected from PackageJson property "repository.url" + + + https://github.com/alexindigo/asynckit#readme + as detected from PackageJson property "homepage" + + + https://github.com/alexindigo/asynckit/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/asynckit + + + + Ahmad Nassri <ahmad@ahmadnassri.com> (https://www.ahmadnassri.com/) + har-validator + 5.1.5 + Extremely fast HTTP Archive (HAR) validator using JSON Schema + + + MIT + + + pkg:npm/har-validator@5.1.5?vcs_url=https://github.com/ahmadnassri/node-har-validator.git + + + https://github.com/ahmadnassri/node-har-validator.git + as detected from PackageJson property "repository.url" + + + https://github.com/ahmadnassri/node-har-validator + as detected from PackageJson property "homepage" + + + https://github.com/ahmadnassri/node-har-validator/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/har-validator + + + + Ahmad Nassri <ahmad@ahmadnassri.com> (https://www.ahmadnassri.com/) + har-schema + 2.0.0 + JSON Schema for HTTP Archive (HAR) + + + ISC + + + pkg:npm/har-schema@2.0.0?vcs_url=https://github.com/ahmadnassri/har-schema.git + + + https://github.com/ahmadnassri/har-schema.git + as detected from PackageJson property "repository.url" + + + https://github.com/ahmadnassri/har-schema + as detected from PackageJson property "homepage" + + + https://github.com/ahmadnassri/har-schema/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/har-schema + + + + Joyent, Inc + http-signature + 1.2.0 + Reference implementation of Joyent's HTTP Signature scheme. + + + MIT + + + pkg:npm/http-signature@1.2.0?vcs_url=git://github.com/joyent/node-http-signature.git + + + git://github.com/joyent/node-http-signature.git + as detected from PackageJson property "repository.url" + + + https://github.com/joyent/node-http-signature/ + as detected from PackageJson property "homepage" + + + https://github.com/joyent/node-http-signature/issues + as detected from PackageJson property "bugs" + + + + node_modules/http-signature + + + + Mark Cavage <mcavage@gmail.com> + assert-plus + 1.0.0 + Extra assertions on top of node's assert module + + + MIT + + + pkg:npm/assert-plus@1.0.0?vcs_url=https://github.com/mcavage/node-assert-plus.git + + + https://github.com/mcavage/node-assert-plus.git + as detected from PackageJson property "repository.url" + + + + node_modules/assert-plus + + + + jsprim + 1.4.2 + utilities for primitive JavaScript types + + + MIT + + + pkg:npm/jsprim@1.4.2?vcs_url=git://github.com/joyent/node-jsprim.git + + + git://github.com/joyent/node-jsprim.git + as detected from PackageJson property "repository.url" + + + + node_modules/jsprim + + + + extsprintf + 1.3.0 + extended POSIX-style sprintf + + + MIT + + + pkg:npm/extsprintf@1.3.0?vcs_url=git://github.com/davepacheco/node-extsprintf.git + + + git://github.com/davepacheco/node-extsprintf.git + as detected from PackageJson property "repository.url" + + + + node_modules/extsprintf + + + + Kris Zyp + json-schema + 0.4.0 + JSON Schema validation and specifications + + (AFL-2.1 OR BSD-3-Clause) + + pkg:npm/json-schema@0.4.0?vcs_url=http://github.com/kriszyp/json-schema + + + http://github.com/kriszyp/json-schema + as detected from PackageJson property "repository.url" + + + + node_modules/json-schema + + + + verror + 1.10.0 + richer JavaScript errors + + + MIT + + + pkg:npm/verror@1.10.0?vcs_url=git://github.com/davepacheco/node-verror.git + + + git://github.com/davepacheco/node-verror.git + as detected from PackageJson property "repository.url" + + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + core-util-is + 1.0.2 + The `util.is*` functions introduced in Node v0.12. + + + MIT + + + pkg:npm/core-util-is@1.0.2?vcs_url=git://github.com/isaacs/core-util-is + + + git://github.com/isaacs/core-util-is + as detected from PackageJson property "repository.url" + + + https://github.com/isaacs/core-util-is/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/verror/node_modules/core-util-is + + + + + node_modules/verror + + + + Joyent, Inc + sshpk + 1.17.0 + A library for finding and using SSH public keys + + + MIT + + + pkg:npm/sshpk@1.17.0?vcs_url=git+https://github.com/joyent/node-sshpk.git + + + git+https://github.com/joyent/node-sshpk.git + as detected from PackageJson property "repository.url" + + + https://github.com/arekinath/node-sshpk#readme + as detected from PackageJson property "homepage" + + + https://github.com/arekinath/node-sshpk/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/sshpk + + + + Joyent (joyent.com) + asn1 + 0.2.6 + Contains parsers and serializers for ASN.1 (currently BER only) + + + MIT + + + pkg:npm/asn1@0.2.6?vcs_url=https://github.com/joyent/node-asn1.git + + + https://github.com/joyent/node-asn1.git + as detected from PackageJson property "repository.url" + + + + node_modules/asn1 + + + + bcrypt-pbkdf + 1.0.2 + Port of the OpenBSD bcrypt_pbkdf function to pure JS + + + BSD-3-Clause + + + pkg:npm/bcrypt-pbkdf@1.0.2?vcs_url=git://github.com/joyent/node-bcrypt-pbkdf.git + + + git://github.com/joyent/node-bcrypt-pbkdf.git + as detected from PackageJson property "repository.url" + + + + node_modules/bcrypt-pbkdf + + + + TweetNaCl-js contributors + tweetnacl + 0.14.5 + Port of TweetNaCl cryptographic library to JavaScript + + + Unlicense + + + pkg:npm/tweetnacl@0.14.5?vcs_url=https://github.com/dchest/tweetnacl-js.git + + + https://github.com/dchest/tweetnacl-js.git + as detected from PackageJson property "repository.url" + + + https://tweetnacl.js.org + as detected from PackageJson property "homepage" + + + https://github.com/dchest/tweetnacl-js/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/tweetnacl + + + + Trent Mick <trentm@gmail.com> (http://trentm.com) + dashdash + 1.14.1 + A light, featureful and explicit option parsing library. + + + MIT + + + pkg:npm/dashdash@1.14.1?vcs_url=git://github.com/trentm/node-dashdash.git + + + git://github.com/trentm/node-dashdash.git + as detected from PackageJson property "repository.url" + + + + node_modules/dashdash + + + + Jeremie Miller + ecc-jsbn + 0.1.2 + ECC JS code projxd on JSBN + + + MIT + + + pkg:npm/ecc-jsbn@0.1.2?vcs_url=https://github.com/quartzjer/ecc-jsbn.git + + + https://github.com/quartzjer/ecc-jsbn.git + as detected from PackageJson property "repository.url" + + + https://github.com/quartzjer/ecc-jsbn + as detected from PackageJson property "homepage" + + + https://github.com/quartzjer/ecc-jsbn/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/ecc-jsbn + + + + Tom Wu + jsbn + 0.1.1 + 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. + + + MIT + + + pkg:npm/jsbn@0.1.1?vcs_url=https://github.com/andyperlitch/jsbn.git + + + https://github.com/andyperlitch/jsbn.git + as detected from PackageJson property "repository.url" + + + + node_modules/jsbn + + + + Alex Wilson <alex.wilson@joyent.com> + getpass + 0.1.7 + getpass for node.js + + + MIT + + + pkg:npm/getpass@0.1.7?vcs_url=https://github.com/arekinath/node-getpass.git + + + https://github.com/arekinath/node-getpass.git + as detected from PackageJson property "repository.url" + + + + node_modules/getpass + + + + Hugh Kennedy <hughskennedy@gmail.com> (http://hughsk.io/) + is-typedarray + 1.0.0 + Detect whether or not an object is a Typed Array + + + MIT + + + pkg:npm/is-typedarray@1.0.0?vcs_url=git://github.com/hughsk/is-typedarray.git + + + git://github.com/hughsk/is-typedarray.git + as detected from PackageJson property "repository.url" + + + https://github.com/hughsk/is-typedarray + as detected from PackageJson property "homepage" + + + https://github.com/hughsk/is-typedarray/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/is-typedarray + + + + Rod Vagg <rod@vagg.org> + isstream + 0.1.2 + Determine if an object is a Stream + + + MIT + + + pkg:npm/isstream@0.1.2?vcs_url=https://github.com/rvagg/isstream.git + + + https://github.com/rvagg/isstream.git + as detected from PackageJson property "repository.url" + + + https://github.com/rvagg/isstream + as detected from PackageJson property "homepage" + + + https://github.com/rvagg/isstream/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/isstream + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me) + json-stringify-safe + 5.0.1 + Like JSON.stringify, but doesn't blow up on circular refs. + + + ISC + + + pkg:npm/json-stringify-safe@5.0.1?vcs_url=git://github.com/isaacs/json-stringify-safe + + + git://github.com/isaacs/json-stringify-safe + as detected from PackageJson property "repository.url" + + + https://github.com/isaacs/json-stringify-safe + as detected from PackageJson property "homepage" + + + https://github.com/isaacs/json-stringify-safe/issues + as detected from PackageJson property "bugs" + + + + node_modules/json-stringify-safe + + + + Mikeal Rogers <mikeal.rogers@gmail.com> (http://www.futurealoof.com) + oauth-sign + 0.9.0 + OAuth 1 signing. Formerly a vendor lib in mikeal/request, now a standalone module. + + + Apache-2.0 + + + pkg:npm/oauth-sign@0.9.0?vcs_url=https://github.com/mikeal/oauth-sign + + + https://github.com/mikeal/oauth-sign + as detected from PackageJson property "repository.url" + + + + node_modules/oauth-sign + + + + Braveg1rl <braveg1rl@outlook.com> + performance-now + 2.1.0 + Implements performance.now (projxd on process.hrtime). + + + MIT + + + pkg:npm/performance-now@2.1.0?vcs_url=git://github.com/braveg1rl/performance-now.git + + + git://github.com/braveg1rl/performance-now.git + as detected from PackageJson property "repository.url" + + + https://github.com/braveg1rl/performance-now + as detected from PackageJson property "homepage" + + + https://github.com/braveg1rl/performance-now/issues + as detected from PackageJson property "bugs" + + + + node_modules/performance-now + + + + qs + 6.5.3 + A querystring parser that supports nesting and arrays, with a depth limit + + + BSD-3-Clause + + + pkg:npm/qs@6.5.3?vcs_url=https://github.com/ljharb/qs.git + + + https://github.com/ljharb/qs.git + as detected from PackageJson property "repository.url" + + + https://github.com/ljharb/qs + as detected from PackageJson property "homepage" + + + + node_modules/qs + + + + Lupo Montero <lupomontero@gmail.com> (https://lupomontero.com/) + psl + 1.9.0 + Domain name parser projxd on the Public Suffix List + + + MIT + + + pkg:npm/psl@1.9.0?vcs_url=git@github.com:lupomontero/psl.git + + node_modules/psl + + + + Mikeal Rogers <mikeal.rogers@gmail.com> (http://www.futurealoof.com) + tunnel-agent + 0.6.0 + HTTP proxy tunneling agent. Formerly part of mikeal/request, now a standalone module. + + + Apache-2.0 + + + pkg:npm/tunnel-agent@0.6.0?vcs_url=https://github.com/mikeal/tunnel-agent + + + https://github.com/mikeal/tunnel-agent + as detected from PackageJson property "repository.url" + + + + node_modules/tunnel-agent + + + + xzyfer + sass-graph + 4.0.1 + Parse sass files and extract a graph of imports + + + MIT + + + pkg:npm/sass-graph@4.0.1?vcs_url=xzyfer/sass-graph + + + xzyfer/sass-graph + as detected from PackageJson property "repository" + + + + + yargs + 17.5.1 + yargs the modern, pirate-themed, successor to optimist. + + + MIT + + + pkg:npm/yargs@17.5.1?vcs_url=https://github.com/yargs/yargs.git + + + https://github.com/yargs/yargs.git + as detected from PackageJson property "repository.url" + + + https://yargs.js.org/ + as detected from PackageJson property "homepage" + + + + node_modules/sass-graph/node_modules/yargs + + + + Ben Coe <ben@npmjs.com> + cliui + 7.0.4 + easily create complex multi-column command-line-interfaces + + + ISC + + + pkg:npm/cliui@7.0.4?vcs_url=yargs/cliui + + + yargs/cliui + as detected from PackageJson property "repository" + + + + node_modules/sass-graph/node_modules/cliui + + + + Sindre Sorhus + wrap-ansi + 7.0.0 + Wordwrap a string with ANSI escape codes + + + MIT + + + pkg:npm/wrap-ansi@7.0.0?vcs_url=chalk/wrap-ansi + + + chalk/wrap-ansi + as detected from PackageJson property "repository" + + + + node_modules/sass-graph/node_modules/wrap-ansi + + + + Sindre Sorhus + ansi-styles + 4.3.0 + ANSI escape codes for styling strings in the terminal + + + MIT + + + pkg:npm/ansi-styles@4.3.0?vcs_url=chalk/ansi-styles + + + chalk/ansi-styles + as detected from PackageJson property "repository" + + + + node_modules/sass-graph/node_modules/ansi-styles + + + + Heather Arthur <fayearthur@gmail.com> + color-convert + 2.0.1 + Plain color conversion functions + + + MIT + + + pkg:npm/color-convert@2.0.1?vcs_url=Qix-/color-convert + + + Qix-/color-convert + as detected from PackageJson property "repository" + + + + node_modules/sass-graph/node_modules/color-convert + + + + DY <dfcreative@gmail.com> + color-name + 1.1.4 + A list of color names and its values + + + MIT + + + pkg:npm/color-name@1.1.4?vcs_url=git@github.com:colorjs/color-name.git + + + https://github.com/colorjs/color-name + as detected from PackageJson property "homepage" + + + https://github.com/colorjs/color-name/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/sass-graph/node_modules/color-name + + + + Ben Coe <bencoe@gmail.com> + y18n + 5.0.8 + the bare-bones internationalization library used by yargs + + + ISC + + + pkg:npm/y18n@5.0.8?vcs_url=yargs/y18n + + + yargs/y18n + as detected from PackageJson property "repository" + + + https://github.com/yargs/y18n + as detected from PackageJson property "homepage" + + + https://github.com/yargs/y18n/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/sass-graph/node_modules/y18n + + + + Ben Coe <ben@npmjs.com> + yargs-parser + 21.1.1 + the mighty option parser used by yargs + + + ISC + + + pkg:npm/yargs-parser@21.1.1?vcs_url=https://github.com/yargs/yargs-parser.git + + + https://github.com/yargs/yargs-parser.git + as detected from PackageJson property "repository.url" + + + + node_modules/sass-graph/node_modules/yargs-parser + + + + + node_modules/sass-graph + + + + xzyfer + scss-tokenizer + 0.4.3 + A tokenzier for Sass' SCSS syntax + + + MIT + + + pkg:npm/scss-tokenizer@0.4.3?vcs_url=https://github.com/sasstools/scss-tokenizer.git + + + https://github.com/sasstools/scss-tokenizer.git + as detected from PackageJson property "repository.url" + + + https://github.com/sasstools/scss-tokenizer + as detected from PackageJson property "homepage" + + + https://github.com/sasstools/scss-tokenizer/issues + as detected from PackageJson property "bugs.url" + + + + + Nick Fitzgerald <nfitzgerald@mozilla.com> + source-map + 0.7.4 + Generates and consumes source maps + + + BSD-3-Clause + + + pkg:npm/source-map@0.7.4?vcs_url=http://github.com/mozilla/source-map.git + + + http://github.com/mozilla/source-map.git + as detected from PackageJson property "repository.url" + + + https://github.com/mozilla/source-map + as detected from PackageJson property "homepage" + + + + node_modules/scss-tokenizer/node_modules/source-map + + + + + node_modules/scss-tokenizer + + + + Dan Kogai + js-projx64 + 2.6.4 + Yet another projx64 transcoder in pure-JS + + + BSD-3-Clause + + + pkg:npm/js-projx64@2.6.4?vcs_url=git://github.com/dankogai/js-projx64.git + + + git://github.com/dankogai/js-projx64.git + as detected from PackageJson property "repository.url" + + + + node_modules/js-projx64 + + + + stdout-stream + 1.4.1 + Non-blocking stdout stream + + + MIT + + + pkg:npm/stdout-stream@1.4.1?vcs_url=mafintosh/stdout-stream + + + mafintosh/stdout-stream + as detected from PackageJson property "repository" + + + + node_modules/stdout-stream + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/) + core-util-is + 1.0.3 + The `util.is*` functions introduced in Node v0.12. + + + MIT + + + pkg:npm/core-util-is@1.0.3?vcs_url=git://github.com/isaacs/core-util-is + + + git://github.com/isaacs/core-util-is + as detected from PackageJson property "repository.url" + + + https://github.com/isaacs/core-util-is/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/core-util-is + + + + process-nextick-args + 2.0.1 + process.nextTick but always with args + + + MIT + + + pkg:npm/process-nextick-args@2.0.1?vcs_url=https://github.com/calvinmetcalf/process-nextick-args.git + + + https://github.com/calvinmetcalf/process-nextick-args.git + as detected from PackageJson property "repository.url" + + + https://github.com/calvinmetcalf/process-nextick-args + as detected from PackageJson property "homepage" + + + https://github.com/calvinmetcalf/process-nextick-args/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/process-nextick-args + + + + barsh + true-case-path + 1.0.3 + Given a possibly case-variant version of an existing filesystem path, returns the case-exact, normalized version as stored in the filesystem. + + + Apache-2.0 + + + pkg:npm/true-case-path@1.0.3?vcs_url=git+https://github.com/barsh/true-case-path.git + + + git+https://github.com/barsh/true-case-path.git + as detected from PackageJson property "repository.url" + + + https://github.com/barsh/true-case-path#readme + as detected from PackageJson property "homepage" + + + https://github.com/barsh/true-case-path/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/true-case-path + + + + Thorsten Lunborg + portal-vue + 2.1.7 + + + MIT + + + pkg:npm/portal-vue@2.1.7?vcs_url=https://github.com/LinusBorg/portal-vue + + + https://github.com/LinusBorg/portal-vue + as detected from PackageJson property "repository" + + + + node_modules/portal-vue + + + + Sergey Kuznetsov + remove-files-webpack-plugin + 1.5.0 + A plugin for webpack that removes files and folders before and after compilation. + + + MIT + + + pkg:npm/remove-files-webpack-plugin@1.5.0?vcs_url=https://github.com/Amaimersion/remove-files-webpack-plugin.git + + + https://github.com/Amaimersion/remove-files-webpack-plugin.git + as detected from PackageJson property "repository.url" + + + https://github.com/Amaimersion/remove-files-webpack-plugin/blob/master/README.md + as detected from PackageJson property "homepage" + + + https://github.com/Amaimersion/remove-files-webpack-plugin/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/remove-files-webpack-plugin + + + + @types + webpack + 5.28.0 + TypeScript definitions for webpack + + + MIT + + + pkg:npm/%40types/webpack@5.28.0?vcs_url=https://github.com/DefinitelyTyped/DefinitelyTyped.git#types/webpack + + + https://github.com/DefinitelyTyped/DefinitelyTyped.git#types/webpack + as detected from PackageJson property "repository.url" and "repository.directory" + + + + + Tobias Koppers @sokra + tapable + 2.2.1 + Just a little module for plugins. + + + MIT + + + pkg:npm/tapable@2.2.1?vcs_url=http://github.com/webpack/tapable.git + + + http://github.com/webpack/tapable.git + as detected from PackageJson property "repository.url" + + + https://github.com/webpack/tapable + as detected from PackageJson property "homepage" + + + + node_modules/@types/webpack/node_modules/tapable + + + + Tobias Koppers @sokra + webpack + 5.74.0 + Packs CommonJs/AMD modules for the browser. Allows to split your codeprojx 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. + + + MIT + + + pkg:npm/webpack@5.74.0?vcs_url=https://github.com/webpack/webpack.git + + + https://github.com/webpack/webpack.git + as detected from PackageJson property "repository.url" + + + https://github.com/webpack/webpack + as detected from PackageJson property "homepage" + + + https://github.com/webpack/webpack/issues + as detected from PackageJson property "bugs" + + + + node_modules/@types/webpack/node_modules/webpack + + + + Sven Sauleau + @webassemblyjs + ast + 1.11.1 + AST utils for webassemblyjs + + + MIT + + + pkg:npm/%40webassemblyjs/ast@1.11.1?vcs_url=https://github.com/xtuc/webassemblyjs.git + + + https://github.com/xtuc/webassemblyjs.git + as detected from PackageJson property "repository.url" + + + + node_modules/@types/webpack/node_modules/@webassemblyjs/ast + + + + Sven Sauleau + @webassemblyjs + helper-wasm-bytecode + 1.11.1 + WASM's Bytecode constants + + + MIT + + + pkg:npm/%40webassemblyjs/helper-wasm-bytecode@1.11.1?vcs_url=https://github.com/xtuc/webassemblyjs.git + + + https://github.com/xtuc/webassemblyjs.git + as detected from PackageJson property "repository.url" + + + + node_modules/@types/webpack/node_modules/@webassemblyjs/helper-wasm-bytecode + + + + Sven Sauleau + @webassemblyjs + wasm-edit + 1.11.1 + + + MIT + + + pkg:npm/%40webassemblyjs/wasm-edit@1.11.1?vcs_url=https://github.com/xtuc/webassemblyjs.git + + + https://github.com/xtuc/webassemblyjs.git + as detected from PackageJson property "repository.url" + + + + node_modules/@types/webpack/node_modules/@webassemblyjs/wasm-edit + + + + Sven Sauleau + @webassemblyjs + helper-buffer + 1.11.1 + Buffer manipulation utility + + + MIT + + + pkg:npm/%40webassemblyjs/helper-buffer@1.11.1?vcs_url=https://github.com/xtuc/webassemblyjs.git + + + https://github.com/xtuc/webassemblyjs.git + as detected from PackageJson property "repository.url" + + + + node_modules/@types/webpack/node_modules/@webassemblyjs/helper-buffer + + + + Sven Sauleau + @webassemblyjs + helper-wasm-section + 1.11.1 + + + MIT + + + pkg:npm/%40webassemblyjs/helper-wasm-section@1.11.1?vcs_url=https://github.com/xtuc/webassemblyjs.git + + + https://github.com/xtuc/webassemblyjs.git + as detected from PackageJson property "repository.url" + + + + node_modules/@types/webpack/node_modules/@webassemblyjs/helper-wasm-section + + + + Sven Sauleau + @webassemblyjs + wasm-gen + 1.11.1 + WebAssembly binary format printer + + + MIT + + + pkg:npm/%40webassemblyjs/wasm-gen@1.11.1?vcs_url=https://github.com/xtuc/webassemblyjs.git + + + https://github.com/xtuc/webassemblyjs.git + as detected from PackageJson property "repository.url" + + + + node_modules/@types/webpack/node_modules/@webassemblyjs/wasm-gen + + + + @webassemblyjs + ieee754 + 1.11.1 + IEEE754 decoder and encoder + + + MIT + + + pkg:npm/%40webassemblyjs/ieee754@1.11.1?vcs_url=https://github.com/xtuc/webassemblyjs.git#packages/ieee754 + + + https://github.com/xtuc/webassemblyjs.git#packages/ieee754 + as detected from PackageJson property "repository.url" and "repository.directory" + + + + node_modules/@types/webpack/node_modules/@webassemblyjs/ieee754 + + + + @webassemblyjs + leb128 + 1.11.1 + LEB128 decoder and encoder + + + Apache-2.0 + + + pkg:npm/%40webassemblyjs/leb128@1.11.1?vcs_url=https://github.com/xtuc/webassemblyjs.git#packages/leb128 + + + https://github.com/xtuc/webassemblyjs.git#packages/leb128 + as detected from PackageJson property "repository.url" and "repository.directory" + + + + node_modules/@types/webpack/node_modules/@webassemblyjs/leb128 + + + + Sven Sauleau + @webassemblyjs + utf8 + 1.11.1 + UTF8 encoder/decoder for WASM + + + MIT + + + pkg:npm/%40webassemblyjs/utf8@1.11.1?vcs_url=https://github.com/xtuc/webassemblyjs.git + + + https://github.com/xtuc/webassemblyjs.git + as detected from PackageJson property "repository.url" + + + + node_modules/@types/webpack/node_modules/@webassemblyjs/utf8 + + + + Sven Sauleau + @webassemblyjs + wasm-opt + 1.11.1 + + + MIT + + + pkg:npm/%40webassemblyjs/wasm-opt@1.11.1?vcs_url=https://github.com/xtuc/webassemblyjs.git + + + https://github.com/xtuc/webassemblyjs.git + as detected from PackageJson property "repository.url" + + + + node_modules/@types/webpack/node_modules/@webassemblyjs/wasm-opt + + + + Sven Sauleau + @webassemblyjs + wasm-parser + 1.11.1 + WebAssembly binary format parser + + + MIT + + + pkg:npm/%40webassemblyjs/wasm-parser@1.11.1?vcs_url=https://github.com/xtuc/webassemblyjs.git + + + https://github.com/xtuc/webassemblyjs.git + as detected from PackageJson property "repository.url" + + + + node_modules/@types/webpack/node_modules/@webassemblyjs/wasm-parser + + + + Sven Sauleau + @webassemblyjs + wast-printer + 1.11.1 + WebAssembly text format printer + + + MIT + + + pkg:npm/%40webassemblyjs/wast-printer@1.11.1?vcs_url=https://github.com/xtuc/webassemblyjs.git + + + https://github.com/xtuc/webassemblyjs.git + as detected from PackageJson property "repository.url" + + + + node_modules/@types/webpack/node_modules/@webassemblyjs/wast-printer + + + + Sven Sauleau + @webassemblyjs + helper-api-error + 1.11.1 + Common API errors + + + MIT + + + pkg:npm/%40webassemblyjs/helper-api-error@1.11.1?vcs_url=https://github.com/xtuc/webassemblyjs.git#packages/helper-api-error + + + https://github.com/xtuc/webassemblyjs.git#packages/helper-api-error + as detected from PackageJson property "repository.url" and "repository.directory" + + + + node_modules/@types/webpack/node_modules/@webassemblyjs/helper-api-error + + + + Sven Sauleau <sven@sauleau.com> + acorn-import-assertions + 1.8.0 + Support for import assertions in acorn + + + MIT + + + pkg:npm/acorn-import-assertions@1.8.0?vcs_url=https://github.com/xtuc/acorn-import-assertions + + + https://github.com/xtuc/acorn-import-assertions + as detected from PackageJson property "repository.url" + + + + node_modules/@types/webpack/node_modules/acorn-import-assertions + + + + acorn + 8.8.0 + ECMAScript parser + + + MIT + + + pkg:npm/acorn@8.8.0?vcs_url=https://github.com/acornjs/acorn.git + + + https://github.com/acornjs/acorn.git + as detected from PackageJson property "repository.url" + + + https://github.com/acornjs/acorn + as detected from PackageJson property "homepage" + + + + node_modules/@types/webpack/node_modules/acorn + + + + Tobias Koppers @sokra + enhanced-resolve + 5.10.0 + Offers a async require.resolve function. It's highly configurable. + + + MIT + + + pkg:npm/enhanced-resolve@5.10.0?vcs_url=git://github.com/webpack/enhanced-resolve.git + + + git://github.com/webpack/enhanced-resolve.git + as detected from PackageJson property "repository.url" + + + http://github.com/webpack/enhanced-resolve + as detected from PackageJson property "homepage" + + + + node_modules/@types/webpack/node_modules/enhanced-resolve + + + + eslint-scope + 5.1.1 + ECMAScript scope analyzer for ESLint + + + BSD-2-Clause + + + pkg:npm/eslint-scope@5.1.1?vcs_url=eslint/eslint-scope + + + eslint/eslint-scope + as detected from PackageJson property "repository" + + + http://github.com/eslint/eslint-scope + as detected from PackageJson property "homepage" + + + https://github.com/eslint/eslint-scope/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/@types/webpack/node_modules/eslint-scope + + + + Nick Fitzgerald <fitzgen@gmail.com> + glob-to-regexp + 0.4.1 + Convert globs to regular expressions + + + BSD-2-Clause + + + pkg:npm/glob-to-regexp@0.4.1?vcs_url=https://github.com/fitzgen/glob-to-regexp.git + + + https://github.com/fitzgen/glob-to-regexp.git + as detected from PackageJson property "repository.url" + + + + node_modules/@types/webpack/node_modules/glob-to-regexp + + + + Tobias Koppers @sokra + loader-runner + 4.3.0 + Runs (webpack) loaders + + + MIT + + + pkg:npm/loader-runner@4.3.0?vcs_url=git+https://github.com/webpack/loader-runner.git + + + git+https://github.com/webpack/loader-runner.git + as detected from PackageJson property "repository.url" + + + https://github.com/webpack/loader-runner#readme + as detected from PackageJson property "homepage" + + + https://github.com/webpack/loader-runner/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/@types/webpack/node_modules/loader-runner + + + + webpack Contrib (https://github.com/webpack-contrib) + schema-utils + 3.1.1 + webpack Validation Utils + + + MIT + + + pkg:npm/schema-utils@3.1.1?vcs_url=webpack/schema-utils + + + webpack/schema-utils + as detected from PackageJson property "repository" + + + https://github.com/webpack/schema-utils + as detected from PackageJson property "homepage" + + + https://github.com/webpack/schema-utils/issues + as detected from PackageJson property "bugs" + + + + node_modules/@types/webpack/node_modules/schema-utils + + + + webpack Contrib Team + terser-webpack-plugin + 5.3.6 + Terser plugin for webpack + + + MIT + + + pkg:npm/terser-webpack-plugin@5.3.6?vcs_url=webpack-contrib/terser-webpack-plugin + + + webpack-contrib/terser-webpack-plugin + as detected from PackageJson property "repository" + + + https://github.com/webpack-contrib/terser-webpack-plugin + as detected from PackageJson property "homepage" + + + https://github.com/webpack-contrib/terser-webpack-plugin/issues + as detected from PackageJson property "bugs" + + + + node_modules/@types/webpack/node_modules/terser-webpack-plugin + + + + jest-worker + 27.5.1 + + + MIT + + + pkg:npm/jest-worker@27.5.1?vcs_url=https://github.com/facebook/jest.git#packages/jest-worker + + + https://github.com/facebook/jest.git#packages/jest-worker + as detected from PackageJson property "repository.url" and "repository.directory" + + + + node_modules/@types/webpack/node_modules/jest-worker + + + + Stephen Sugden <me@stephensugden.com> + merge-stream + 2.0.0 + Create a stream that emits events from multiple other streams + + + MIT + + + pkg:npm/merge-stream@2.0.0?vcs_url=grncdr/merge-stream + + + grncdr/merge-stream + as detected from PackageJson property "repository" + + + + node_modules/@types/webpack/node_modules/merge-stream + + + + Sindre Sorhus + supports-color + 8.1.1 + Detect whether a terminal supports color + + + MIT + + + pkg:npm/supports-color@8.1.1?vcs_url=chalk/supports-color + + + chalk/supports-color + as detected from PackageJson property "repository" + + + + node_modules/@types/webpack/node_modules/supports-color + + + + Sindre Sorhus + has-flag + 4.0.0 + Check if argv has a specific flag + + + MIT + + + pkg:npm/has-flag@4.0.0?vcs_url=sindresorhus/has-flag + + + sindresorhus/has-flag + as detected from PackageJson property "repository" + + + + node_modules/@types/webpack/node_modules/has-flag + + + + Eric Ferraiuolo <edf@ericf.me> + serialize-javascript + 6.0.0 + Serialize JavaScript to a superset of JSON that includes regular expressions and functions. + + + BSD-3-Clause + + + pkg:npm/serialize-javascript@6.0.0?vcs_url=git+https://github.com/yahoo/serialize-javascript.git + + + git+https://github.com/yahoo/serialize-javascript.git + as detected from PackageJson property "repository.url" + + + https://github.com/yahoo/serialize-javascript + as detected from PackageJson property "homepage" + + + https://github.com/yahoo/serialize-javascript/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/@types/webpack/node_modules/serialize-javascript + + + + Mihai Bazon <mihai.bazon@gmail.com> (http://lisperator.net/) + terser + 5.15.0 + JavaScript parser, mangler/compressor and beautifier toolkit for ES6+ + + + BSD-2-Clause + + + pkg:npm/terser@5.15.0?vcs_url=https://github.com/terser/terser + + + https://github.com/terser/terser + as detected from PackageJson property "repository" + + + https://terser.org + as detected from PackageJson property "homepage" + + + + node_modules/@types/webpack/node_modules/terser + + + + TJ Holowaychuk <tj@vision-media.ca> + commander + 2.20.3 + the complete solution for node.js command-line programs + + + MIT + + + pkg:npm/commander@2.20.3?vcs_url=https://github.com/tj/commander.js.git + + + https://github.com/tj/commander.js.git + as detected from PackageJson property "repository.url" + + + + node_modules/@types/webpack/node_modules/commander + + + + Tobias Koppers @sokra + watchpack + 2.4.0 + + + MIT + + + pkg:npm/watchpack@2.4.0?vcs_url=https://github.com/webpack/watchpack.git + + + https://github.com/webpack/watchpack.git + as detected from PackageJson property "repository.url" + + + https://github.com/webpack/watchpack + as detected from PackageJson property "homepage" + + + https://github.com/webpack/watchpack/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/@types/webpack/node_modules/watchpack + + + + Tobias Koppers @sokra + webpack-sources + 3.2.3 + Source code handling classes for webpack + + + MIT + + + pkg:npm/webpack-sources@3.2.3?vcs_url=git+https://github.com/webpack/webpack-sources.git + + + git+https://github.com/webpack/webpack-sources.git + as detected from PackageJson property "repository.url" + + + https://github.com/webpack/webpack-sources#readme + as detected from PackageJson property "homepage" + + + https://github.com/webpack/webpack-sources/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/@types/webpack/node_modules/webpack-sources + + + + + node_modules/@types/webpack + + + + @types + eslint-scope + 3.7.4 + TypeScript definitions for eslint-scope + + + MIT + + + pkg:npm/%40types/eslint-scope@3.7.4?vcs_url=https://github.com/DefinitelyTyped/DefinitelyTyped.git#types/eslint-scope + + + https://github.com/DefinitelyTyped/DefinitelyTyped.git#types/eslint-scope + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/eslint-scope + as detected from PackageJson property "homepage" + + + + node_modules/@types/eslint-scope + + + + @types + eslint + 8.4.6 + TypeScript definitions for eslint + + + MIT + + + pkg:npm/%40types/eslint@8.4.6?vcs_url=https://github.com/DefinitelyTyped/DefinitelyTyped.git#types/eslint + + + https://github.com/DefinitelyTyped/DefinitelyTyped.git#types/eslint + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/eslint + as detected from PackageJson property "homepage" + + + + node_modules/@types/eslint + + + + @types + estree + 0.0.51 + TypeScript definitions for ESTree AST specification + + + MIT + + + pkg:npm/%40types/estree@0.0.51?vcs_url=https://github.com/DefinitelyTyped/DefinitelyTyped.git#types/estree + + + https://github.com/DefinitelyTyped/DefinitelyTyped.git#types/estree + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/estree + as detected from PackageJson property "homepage" + + + + node_modules/@types/estree + + + + Sven Sauleau + @webassemblyjs + helper-numbers + 1.11.1 + Number parsing utility + + + MIT + + + pkg:npm/%40webassemblyjs/helper-numbers@1.11.1?vcs_url=https://github.com/xtuc/webassemblyjs.git + + + https://github.com/xtuc/webassemblyjs.git + as detected from PackageJson property "repository.url" + + + + + Mauro Bringolf + @webassemblyjs + floating-point-hex-parser + 1.11.1 + A function to parse floating point hexadecimal strings as defined by the WebAssembly specification + + + MIT + + + pkg:npm/%40webassemblyjs/floating-point-hex-parser@1.11.1?vcs_url=https://github.com/xtuc/webassemblyjs.git + + + https://github.com/xtuc/webassemblyjs.git + as detected from PackageJson property "repository.url" + + + + node_modules/@webassemblyjs/helper-numbers/node_modules/@webassemblyjs/floating-point-hex-parser + + + + Sven Sauleau + @webassemblyjs + helper-api-error + 1.11.1 + Common API errors + + + MIT + + + pkg:npm/%40webassemblyjs/helper-api-error@1.11.1?vcs_url=https://github.com/xtuc/webassemblyjs.git#packages/helper-api-error + + + https://github.com/xtuc/webassemblyjs.git#packages/helper-api-error + as detected from PackageJson property "repository.url" and "repository.directory" + + + + node_modules/@webassemblyjs/helper-numbers/node_modules/@webassemblyjs/helper-api-error + + + + + node_modules/@webassemblyjs/helper-numbers + + + + Guy Bedford + es-module-lexer + 0.9.3 + Lexes ES modules returning their import/export metadata + + + MIT + + + pkg:npm/es-module-lexer@0.9.3?vcs_url=git+https://github.com/guybedford/es-module-lexer.git + + + git+https://github.com/guybedford/es-module-lexer.git + as detected from PackageJson property "repository.url" + + + https://github.com/guybedford/es-module-lexer#readme + as detected from PackageJson property "homepage" + + + https://github.com/guybedford/es-module-lexer/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/es-module-lexer + + + + Justin Ridgewell <justin@ridgewell.name> + @jridgewell + source-map + 0.3.2 + Packages @jridgewell/trace-mapping and @jridgewell/gen-mapping into the familiar source-map API + + + MIT + + + pkg:npm/%40jridgewell/source-map@0.3.2?vcs_url=https://github.com/jridgewell/source-map + + + https://github.com/jridgewell/source-map + as detected from PackageJson property "repository" + + + + + Justin Ridgewell <justin@ridgewell.name> + @jridgewell + gen-mapping + 0.3.2 + Generate source maps + + + MIT + + + pkg:npm/%40jridgewell/gen-mapping@0.3.2?vcs_url=https://github.com/jridgewell/gen-mapping + + + https://github.com/jridgewell/gen-mapping + as detected from PackageJson property "repository" + + + + node_modules/@jridgewell/source-map/node_modules/@jridgewell/gen-mapping + + + + + node_modules/@jridgewell/source-map + + + + Sindre Sorhus + trash + 7.2.0 + Move files and folders to the trash + + + MIT + + + pkg:npm/trash@7.2.0?vcs_url=sindresorhus/trash + + + sindresorhus/trash + as detected from PackageJson property "repository" + + + + + Sindre Sorhus + globby + 7.1.1 + Extends `glob` with support for multiple patterns and exposes a Promise API + + + MIT + + + pkg:npm/globby@7.1.1?vcs_url=sindresorhus/globby + + + sindresorhus/globby + as detected from PackageJson property "repository" + + + + node_modules/trash/node_modules/globby + + + + kael + ignore + 3.3.10 + Ignore is a manager and filter for .gitignore rules. + + + MIT + + + pkg:npm/ignore@3.3.10?vcs_url=git@github.com:kaelzhang/node-ignore.git + + + https://github.com/kaelzhang/node-ignore/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/trash/node_modules/ignore + + + + Sindre Sorhus + pify + 3.0.0 + Promisify a callback-style function + + + MIT + + + pkg:npm/pify@3.0.0?vcs_url=sindresorhus/pify + + + sindresorhus/pify + as detected from PackageJson property "repository" + + + + node_modules/trash/node_modules/pify + + + + Sindre Sorhus + slash + 1.0.0 + Convert Windows backslash paths to slash paths + + + MIT + + + pkg:npm/slash@1.0.0?vcs_url=sindresorhus/slash + + + sindresorhus/slash + as detected from PackageJson property "repository" + + + + node_modules/trash/node_modules/slash + + + + uuid + 8.3.2 + RFC4122 (v1, v4, and v5) UUIDs + + + MIT + + + pkg:npm/uuid@8.3.2?vcs_url=https://github.com/uuidjs/uuid.git + + + https://github.com/uuidjs/uuid.git + as detected from PackageJson property "repository.url" + + + + node_modules/trash/node_modules/uuid + + + + + node_modules/trash + + + + Yanis Benson <yanis.benson+project.nodejs.procfs@gmail.com> + @stroncium + procfs + 1.2.1 + Zero dependency library for reading and parsing various files from `procfs` for Node.js, implemented in pure JS. + + + CC0-1.0 + + + pkg:npm/%40stroncium/procfs@1.2.1?vcs_url=https://github.com/stroncium/nodejs-procfs.git + + + https://github.com/stroncium/nodejs-procfs.git + as detected from PackageJson property "repository.url" + + + https://github.com/stroncium/nodejs-procfs + as detected from PackageJson property "homepage" + + + https://github.com/stroncium/nodejs-procfs/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/@stroncium/procfs + + + + Sindre Sorhus + is-path-inside + 3.0.3 + Check if a path is inside another path + + + MIT + + + pkg:npm/is-path-inside@3.0.3?vcs_url=sindresorhus/is-path-inside + + + sindresorhus/is-path-inside + as detected from PackageJson property "repository" + + + + node_modules/is-path-inside + + + + Sindre Sorhus + move-file + 2.1.0 + Move a file - Even works across devices + + + MIT + + + pkg:npm/move-file@2.1.0?vcs_url=sindresorhus/move-file + + + sindresorhus/move-file + as detected from PackageJson property "repository" + + + + + Sindre Sorhus + path-exists + 4.0.0 + Check if a path exists + + + MIT + + + pkg:npm/path-exists@4.0.0?vcs_url=sindresorhus/path-exists + + + sindresorhus/path-exists + as detected from PackageJson property "repository" + + + + node_modules/move-file/node_modules/path-exists + + + + + node_modules/move-file + + + + Sindre Sorhus + aggregate-error + 3.1.0 + Create an error from multiple errors + + + MIT + + + pkg:npm/aggregate-error@3.1.0?vcs_url=sindresorhus/aggregate-error + + + sindresorhus/aggregate-error + as detected from PackageJson property "repository" + + + + node_modules/aggregate-error + + + + Sindre Sorhus + clean-stack + 2.2.0 + Clean up error stack traces + + + MIT + + + pkg:npm/clean-stack@2.2.0?vcs_url=sindresorhus/clean-stack + + + sindresorhus/clean-stack + as detected from PackageJson property "repository" + + + + node_modules/clean-stack + + + + Kevin Martensson + xdg-trashdir + 3.1.0 + Get the correct trash path on Linux + + + MIT + + + pkg:npm/xdg-trashdir@3.1.0?vcs_url=kevva/xdg-trashdir + + + kevva/xdg-trashdir + as detected from PackageJson property "repository" + + + + node_modules/xdg-trashdir + + + + Sindre Sorhus + @sindresorhus + df + 3.1.1 + Get free disk space info from `df -kP` + + + MIT + + + pkg:npm/%40sindresorhus/df@3.1.1?vcs_url=sindresorhus/df + + + sindresorhus/df + as detected from PackageJson property "repository" + + + + + Sindre Sorhus + execa + 2.1.0 + Process execution for humans + + + MIT + + + pkg:npm/execa@2.1.0?vcs_url=sindresorhus/execa + + + sindresorhus/execa + as detected from PackageJson property "repository" + + + + node_modules/@sindresorhus/df/node_modules/execa + + + + Andre Cruz <andre@moxy.studio> + cross-spawn + 7.0.3 + Cross platform child_process#spawn and child_process#spawnSync + + + MIT + + + pkg:npm/cross-spawn@7.0.3?vcs_url=git@github.com:moxystudio/node-cross-spawn.git + + + https://github.com/moxystudio/node-cross-spawn + as detected from PackageJson property "homepage" + + + + node_modules/@sindresorhus/df/node_modules/cross-spawn + + + + Sindre Sorhus + path-key + 3.1.1 + Get the PATH environment variable key cross-platform + + + MIT + + + pkg:npm/path-key@3.1.1?vcs_url=sindresorhus/path-key + + + sindresorhus/path-key + as detected from PackageJson property "repository" + + + + node_modules/@sindresorhus/df/node_modules/path-key + + + + Kevin Martensson + shebang-command + 2.0.0 + Get the command from a shebang + + + MIT + + + pkg:npm/shebang-command@2.0.0?vcs_url=kevva/shebang-command + + + kevva/shebang-command + as detected from PackageJson property "repository" + + + + node_modules/@sindresorhus/df/node_modules/shebang-command + + + + Sindre Sorhus + shebang-regex + 3.0.0 + Regular expression for matching a shebang line + + + MIT + + + pkg:npm/shebang-regex@3.0.0?vcs_url=sindresorhus/shebang-regex + + + sindresorhus/shebang-regex + as detected from PackageJson property "repository" + + + + node_modules/@sindresorhus/df/node_modules/shebang-regex + + + + Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me) + which + 2.0.2 + Like which(1) unix command. Find the first instance of an executable in the PATH. + + + ISC + + + pkg:npm/which@2.0.2?vcs_url=git://github.com/isaacs/node-which.git + + + git://github.com/isaacs/node-which.git + as detected from PackageJson property "repository.url" + + + + node_modules/@sindresorhus/df/node_modules/which + + + + Sindre Sorhus + get-stream + 5.2.0 + Get a stream as a string, buffer, or array + + + MIT + + + pkg:npm/get-stream@5.2.0?vcs_url=sindresorhus/get-stream + + + sindresorhus/get-stream + as detected from PackageJson property "repository" + + + + node_modules/@sindresorhus/df/node_modules/get-stream + + + + Sindre Sorhus + is-stream + 2.0.1 + Check if something is a Node.js stream + + + MIT + + + pkg:npm/is-stream@2.0.1?vcs_url=sindresorhus/is-stream + + + sindresorhus/is-stream + as detected from PackageJson property "repository" + + + + node_modules/@sindresorhus/df/node_modules/is-stream + + + + Stephen Sugden <me@stephensugden.com> + merge-stream + 2.0.0 + Create a stream that emits events from multiple other streams + + + MIT + + + pkg:npm/merge-stream@2.0.0?vcs_url=grncdr/merge-stream + + + grncdr/merge-stream + as detected from PackageJson property "repository" + + + + node_modules/@sindresorhus/df/node_modules/merge-stream + + + + Sindre Sorhus + npm-run-path + 3.1.0 + Get your PATH prepended with locally installed binaries + + + MIT + + + pkg:npm/npm-run-path@3.1.0?vcs_url=sindresorhus/npm-run-path + + + sindresorhus/npm-run-path + as detected from PackageJson property "repository" + + + + node_modules/@sindresorhus/df/node_modules/npm-run-path + + + + Sindre Sorhus + onetime + 5.1.2 + Ensure a function is only called once + + + MIT + + + pkg:npm/onetime@5.1.2?vcs_url=sindresorhus/onetime + + + sindresorhus/onetime + as detected from PackageJson property "repository" + + + + node_modules/@sindresorhus/df/node_modules/onetime + + + + Sindre Sorhus + mimic-fn + 2.1.0 + Make a function mimic another one + + + MIT + + + pkg:npm/mimic-fn@2.1.0?vcs_url=sindresorhus/mimic-fn + + + sindresorhus/mimic-fn + as detected from PackageJson property "repository" + + + + node_modules/@sindresorhus/df/node_modules/mimic-fn + + + + Sindre Sorhus + p-finally + 2.0.1 + `Promise#finally()` ponyfill - Invoked when the promise is settled regardless of outcome + + + MIT + + + pkg:npm/p-finally@2.0.1?vcs_url=sindresorhus/p-finally + + + sindresorhus/p-finally + as detected from PackageJson property "repository" + + + + node_modules/@sindresorhus/df/node_modules/p-finally + + + + + node_modules/@sindresorhus/df + + + + Kevin Martensson + mount-point + 3.0.0 + Get the mount point for a file + + + MIT + + + pkg:npm/mount-point@3.0.0?vcs_url=kevva/mount-point + + + kevva/mount-point + as detected from PackageJson property "repository" + + + + + Sindre Sorhus + @sindresorhus + df + 1.0.1 + Get free disk space info from `df -kP` + + + MIT + + + pkg:npm/%40sindresorhus/df@1.0.1?vcs_url=sindresorhus/df + + + sindresorhus/df + as detected from PackageJson property "repository" + + + + node_modules/mount-point/node_modules/@sindresorhus/df + + + + Sindre Sorhus + pify + 2.3.0 + Promisify a callback-style function + + + MIT + + + pkg:npm/pify@2.3.0?vcs_url=sindresorhus/pify + + + sindresorhus/pify + as detected from PackageJson property "repository" + + + + node_modules/mount-point/node_modules/pify + + + + + node_modules/mount-point + + + + Sindre Sorhus + user-home + 2.0.0 + Get the path to the user home directory + + + MIT + + + pkg:npm/user-home@2.0.0?vcs_url=sindresorhus/user-home + + + sindresorhus/user-home + as detected from PackageJson property "repository" + + + + node_modules/user-home + + + + Sindre Sorhus + xdg-projxdir + 4.0.0 + Get XDG projx Directory paths + + + MIT + + + pkg:npm/xdg-projxdir@4.0.0?vcs_url=sindresorhus/xdg-projxdir + + + sindresorhus/xdg-projxdir + as detected from PackageJson property "repository" + + + + node_modules/xdg-projxdir + + + + J. Tangelder + sass-loader + 7.3.1 + Sass loader for webpack + + + MIT + + + pkg:npm/sass-loader@7.3.1?vcs_url=webpack-contrib/sass-loader + + + webpack-contrib/sass-loader + as detected from PackageJson property "repository" + + + https://github.com/webpack-contrib/sass-loader + as detected from PackageJson property "homepage" + + + https://github.com/webpack-contrib/sass-loader/issues + as detected from PackageJson property "bugs" + + + + + Tobias Koppers @sokra + loader-utils + 1.4.0 + utils for webpack loaders + + + MIT + + + pkg:npm/loader-utils@1.4.0?vcs_url=https://github.com/webpack/loader-utils.git + + + https://github.com/webpack/loader-utils.git + as detected from PackageJson property "repository.url" + + + + node_modules/sass-loader/node_modules/loader-utils + + + + Aseem Kishore <aseem.kishore@gmail.com> + json5 + 1.0.1 + JSON for humans. + + + MIT + + + pkg:npm/json5@1.0.1?vcs_url=git+https://github.com/json5/json5.git + + + git+https://github.com/json5/json5.git + as detected from PackageJson property "repository.url" + + + http://json5.org/ + as detected from PackageJson property "homepage" + + + https://github.com/json5/json5/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/sass-loader/node_modules/json5 + + + + + node_modules/sass-loader + + + + Jon Schlinkert (https://github.com/jonschlinkert) + clone-deep + 4.0.1 + Recursively (deep) clone JavaScript native types, like Object, Array, RegExp, Date as well as primitives. + + + MIT + + + pkg:npm/clone-deep@4.0.1?vcs_url=jonschlinkert/clone-deep + + + jonschlinkert/clone-deep + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/clone-deep + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/clone-deep/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/clone-deep + + + + Jon Schlinkert (https://github.com/jonschlinkert) + shallow-clone + 3.0.1 + Creates a shallow clone of any JavaScript value. + + + MIT + + + pkg:npm/shallow-clone@3.0.1?vcs_url=jonschlinkert/shallow-clone + + + jonschlinkert/shallow-clone + as detected from PackageJson property "repository" + + + https://github.com/jonschlinkert/shallow-clone + as detected from PackageJson property "homepage" + + + https://github.com/jonschlinkert/shallow-clone/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/shallow-clone + + + + Natalie Weizenbaum + sass + 1.55.0 + A pure JavaScript implementation of Sass. + + + MIT + + + pkg:npm/sass@1.55.0?vcs_url=https://github.com/sass/dart-sass + + + https://github.com/sass/dart-sass + as detected from PackageJson property "repository.url" + + + https://github.com/sass/dart-sass + as detected from PackageJson property "homepage" + + + https://github.com/sass/dart-sass/issues + as detected from PackageJson property "bugs" + + + + node_modules/sass + + + + Jon Schlinkert (https://github.com/jonschlinkert) + picomatch + 2.3.1 + 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. + + + MIT + + + pkg:npm/picomatch@2.3.1?vcs_url=micromatch/picomatch + + + micromatch/picomatch + as detected from PackageJson property "repository" + + + https://github.com/micromatch/picomatch + as detected from PackageJson property "homepage" + + + https://github.com/micromatch/picomatch/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/picomatch + + + + Sindre Sorhus + is-binary-path + 2.1.0 + Check if a file path is a binary file + + + MIT + + + pkg:npm/is-binary-path@2.1.0?vcs_url=sindresorhus/is-binary-path + + + sindresorhus/is-binary-path + as detected from PackageJson property "repository" + + + + node_modules/is-binary-path + + + + Sindre Sorhus + binary-extensions + 2.2.0 + List of binary file extensions + + + MIT + + + pkg:npm/binary-extensions@2.2.0?vcs_url=sindresorhus/binary-extensions + + + sindresorhus/binary-extensions + as detected from PackageJson property "repository" + + + + node_modules/binary-extensions + + + + Thorsten Lorenz <thlorenz@gmx.de> (thlorenz.com) + readdirp + 3.6.0 + Recursive version of fs.readdir with streaming API. + + + MIT + + + pkg:npm/readdirp@3.6.0?vcs_url=git://github.com/paulmillr/readdirp.git + + + git://github.com/paulmillr/readdirp.git + as detected from PackageJson property "repository.url" + + + https://github.com/paulmillr/readdirp + as detected from PackageJson property "homepage" + + + https://github.com/paulmillr/readdirp/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/readdirp + + + + Lee Byron + immutable + 4.1.0 + Immutable Data Collections + + + MIT + + + pkg:npm/immutable@4.1.0?vcs_url=git://github.com/immutable-js/immutable-js.git + + + git://github.com/immutable-js/immutable-js.git + as detected from PackageJson property "repository.url" + + + https://immutable-js.com + as detected from PackageJson property "homepage" + + + https://github.com/immutable-js/immutable-js/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/immutable + + + + Valentin 7rulnik Semirulnik <v7rulnik@gmail.com> + source-map-js + 1.0.2 + Generates and consumes source maps + + + BSD-3-Clause + + + pkg:npm/source-map-js@1.0.2?vcs_url=7rulnik/source-map-js + + + 7rulnik/source-map-js + as detected from PackageJson property "repository" + + + https://github.com/7rulnik/source-map-js + as detected from PackageJson property "homepage" + + + + node_modules/source-map-js + + + + vue-resource + 1.5.3 + The HTTP client for Vue.js + + + MIT + + + pkg:npm/vue-resource@1.5.3?vcs_url=git+https://github.com/pagekit/vue-resource.git + + + git+https://github.com/pagekit/vue-resource.git + as detected from PackageJson property "repository.url" + + + https://github.com/pagekit/vue-resource + as detected from PackageJson property "homepage" + + + https://github.com/pagekit/vue-resource/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/vue-resource + + + + got + 11.8.5 + Human-friendly and powerful HTTP request library for Node.js + + + MIT + + + pkg:npm/got@11.8.5?vcs_url=sindresorhus/got + + + sindresorhus/got + as detected from PackageJson property "repository" + + + + node_modules/got + + + + Sindre Sorhus + @sindresorhus + is + 4.6.0 + Type check values + + + MIT + + + pkg:npm/%40sindresorhus/is@4.6.0?vcs_url=sindresorhus/is + + + sindresorhus/is + as detected from PackageJson property "repository" + + + + node_modules/@sindresorhus/is + + + + Szymon Marczak + @szmarczak + http-timer + 4.0.6 + Timings for HTTP requests + + + MIT + + + pkg:npm/%40szmarczak/http-timer@4.0.6?vcs_url=git+https://github.com/szmarczak/http-timer.git + + + git+https://github.com/szmarczak/http-timer.git + as detected from PackageJson property "repository.url" + + + https://github.com/szmarczak/http-timer#readme + as detected from PackageJson property "homepage" + + + https://github.com/szmarczak/http-timer/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/@szmarczak/http-timer + + + + Szymon Marczak + defer-to-connect + 2.0.1 + The safe way to handle the `connect` socket event + + + MIT + + + pkg:npm/defer-to-connect@2.0.1?vcs_url=git+https://github.com/szmarczak/defer-to-connect.git + + + git+https://github.com/szmarczak/defer-to-connect.git + as detected from PackageJson property "repository.url" + + + https://github.com/szmarczak/defer-to-connect#readme + as detected from PackageJson property "homepage" + + + https://github.com/szmarczak/defer-to-connect/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/defer-to-connect + + + + @types + cacheable-request + 6.0.2 + TypeScript definitions for cacheable-request + + + MIT + + + pkg:npm/%40types/cacheable-request@6.0.2?vcs_url=https://github.com/DefinitelyTyped/DefinitelyTyped.git#types/cacheable-request + + + https://github.com/DefinitelyTyped/DefinitelyTyped.git#types/cacheable-request + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/cacheable-request + as detected from PackageJson property "homepage" + + + + node_modules/@types/cacheable-request + + + + @types + http-cache-semantics + 4.0.1 + TypeScript definitions for http-cache-semantics + + + MIT + + + pkg:npm/%40types/http-cache-semantics@4.0.1?vcs_url=https://github.com/DefinitelyTyped/DefinitelyTyped.git#types/http-cache-semantics + + + https://github.com/DefinitelyTyped/DefinitelyTyped.git#types/http-cache-semantics + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/http-cache-semantics + as detected from PackageJson property "homepage" + + + + node_modules/@types/http-cache-semantics + + + + @types + keyv + 3.1.4 + TypeScript definitions for keyv + + + MIT + + + pkg:npm/%40types/keyv@3.1.4?vcs_url=https://github.com/DefinitelyTyped/DefinitelyTyped.git#types/keyv + + + https://github.com/DefinitelyTyped/DefinitelyTyped.git#types/keyv + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/keyv + as detected from PackageJson property "homepage" + + + + node_modules/@types/keyv + + + + @types + responselike + 1.0.0 + TypeScript definitions for responselike + + + MIT + + + pkg:npm/%40types/responselike@1.0.0?vcs_url=https://github.com/DefinitelyTyped/DefinitelyTyped.git + + + https://github.com/DefinitelyTyped/DefinitelyTyped.git + as detected from PackageJson property "repository.url" + + + + node_modules/@types/responselike + + + + Szymon Marczak + cacheable-lookup + 5.0.4 + A cacheable dns.lookup(...) that respects the TTL + + + MIT + + + pkg:npm/cacheable-lookup@5.0.4?vcs_url=git+https://github.com/szmarczak/cacheable-lookup.git + + + git+https://github.com/szmarczak/cacheable-lookup.git + as detected from PackageJson property "repository.url" + + + https://github.com/szmarczak/cacheable-lookup#readme + as detected from PackageJson property "homepage" + + + https://github.com/szmarczak/cacheable-lookup/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/cacheable-lookup + + + + Luke Childs <lukechilds123@gmail.com> (http://lukechilds.co.uk) + cacheable-request + 7.0.2 + Wrap native HTTP requests with RFC compliant cache support + + + MIT + + + pkg:npm/cacheable-request@7.0.2?vcs_url=lukechilds/cacheable-request + + + lukechilds/cacheable-request + as detected from PackageJson property "repository" + + + + + Sindre Sorhus + get-stream + 5.2.0 + Get a stream as a string, buffer, or array + + + MIT + + + pkg:npm/get-stream@5.2.0?vcs_url=sindresorhus/get-stream + + + sindresorhus/get-stream + as detected from PackageJson property "repository" + + + + node_modules/cacheable-request/node_modules/get-stream + + + + Sindre Sorhus + normalize-url + 6.1.0 + Normalize a URL + + + MIT + + + pkg:npm/normalize-url@6.1.0?vcs_url=sindresorhus/normalize-url + + + sindresorhus/normalize-url + as detected from PackageJson property "repository" + + + + node_modules/cacheable-request/node_modules/normalize-url + + + + + node_modules/cacheable-request + + + + Luke Childs <lukechilds123@gmail.com> (http://lukechilds.co.uk) + clone-response + 1.0.3 + Clone a Node.js HTTP response stream + + + MIT + + + pkg:npm/clone-response@1.0.3?vcs_url=git+https://github.com/sindresorhus/clone-response.git + + + git+https://github.com/sindresorhus/clone-response.git + as detected from PackageJson property "repository.url" + + + + node_modules/clone-response + + + + Sindre Sorhus + mimic-response + 1.0.1 + Mimic a Node.js HTTP response stream + + + MIT + + + pkg:npm/mimic-response@1.0.1?vcs_url=sindresorhus/mimic-response + + + sindresorhus/mimic-response + as detected from PackageJson property "repository" + + + + node_modules/mimic-response + + + + Jared Wray <me@jaredwray.com> (http://jaredwray.com) + keyv + 4.5.0 + Simple key-value storage with support for multiple backends + + + MIT + + + pkg:npm/keyv@4.5.0?vcs_url=git+https://github.com/jaredwray/keyv.git + + + git+https://github.com/jaredwray/keyv.git + as detected from PackageJson property "repository.url" + + + https://github.com/jaredwray/keyv + as detected from PackageJson property "homepage" + + + https://github.com/jaredwray/keyv/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/keyv + + + + Dominic Tarr <dominic.tarr@gmail.com> (http://dominictarr.com) + json-buffer + 3.0.1 + JSON parse & stringify that supports binary via bops & projx64 + + + MIT + + + pkg:npm/json-buffer@3.0.1?vcs_url=git://github.com/dominictarr/json-buffer.git + + + git://github.com/dominictarr/json-buffer.git + as detected from PackageJson property "repository.url" + + + https://github.com/dominictarr/json-buffer + as detected from PackageJson property "homepage" + + + + node_modules/json-buffer + + + + Sindre Sorhus + lowercase-keys + 2.0.0 + Lowercase the keys of an object + + + MIT + + + pkg:npm/lowercase-keys@2.0.0?vcs_url=sindresorhus/lowercase-keys + + + sindresorhus/lowercase-keys + as detected from PackageJson property "repository" + + + + node_modules/lowercase-keys + + + + lukechilds + responselike + 2.0.1 + A response-like object for mocking a Node.js HTTP response stream + + + MIT + + + pkg:npm/responselike@2.0.1?vcs_url=https://github.com/sindresorhus/responselike.git + + + https://github.com/sindresorhus/responselike.git + as detected from PackageJson property "repository.url" + + + + node_modules/responselike + + + + Sindre Sorhus + decompress-response + 6.0.0 + Decompress a HTTP response if needed + + + MIT + + + pkg:npm/decompress-response@6.0.0?vcs_url=sindresorhus/decompress-response + + + sindresorhus/decompress-response + as detected from PackageJson property "repository" + + + + + Sindre Sorhus + mimic-response + 3.1.0 + Mimic a Node.js HTTP response stream + + + MIT + + + pkg:npm/mimic-response@3.1.0?vcs_url=sindresorhus/mimic-response + + + sindresorhus/mimic-response + as detected from PackageJson property "repository" + + + + node_modules/decompress-response/node_modules/mimic-response + + + + + node_modules/decompress-response + + + + Szymon Marczak + http2-wrapper + 1.0.3 + HTTP2 client, just with the familiar `https` API + + + MIT + + + pkg:npm/http2-wrapper@1.0.3?vcs_url=git+https://github.com/szmarczak/http2-wrapper.git + + + git+https://github.com/szmarczak/http2-wrapper.git + as detected from PackageJson property "repository.url" + + + https://github.com/szmarczak/http2-wrapper#readme + as detected from PackageJson property "homepage" + + + https://github.com/szmarczak/http2-wrapper/issues + as detected from PackageJson property "bugs.url" + + + + + Sindre Sorhus + quick-lru + 5.1.1 + Simple "Least Recently Used" (LRU) cache + + + MIT + + + pkg:npm/quick-lru@5.1.1?vcs_url=sindresorhus/quick-lru + + + sindresorhus/quick-lru + as detected from PackageJson property "repository" + + + + node_modules/http2-wrapper/node_modules/quick-lru + + + + + node_modules/http2-wrapper + + + + Szymon Marczak + resolve-alpn + 1.2.1 + Detects the ALPN protocol + + + MIT + + + pkg:npm/resolve-alpn@1.2.1?vcs_url=git+https://github.com/szmarczak/resolve-alpn.git + + + git+https://github.com/szmarczak/resolve-alpn.git + as detected from PackageJson property "repository.url" + + + https://github.com/szmarczak/resolve-alpn#readme + as detected from PackageJson property "homepage" + + + https://github.com/szmarczak/resolve-alpn/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/resolve-alpn + + + + Sindre Sorhus + p-cancelable + 2.1.1 + Create a promise that can be canceled + + + MIT + + + pkg:npm/p-cancelable@2.1.1?vcs_url=sindresorhus/p-cancelable + + + sindresorhus/p-cancelable + as detected from PackageJson property "repository" + + + + node_modules/p-cancelable + + + + Evan You + vue-router + 3.6.5 + Official router for Vue.js 2 + + + MIT + + + pkg:npm/vue-router@3.6.5?vcs_url=https://github.com/vuejs/vue-router.git + + + https://github.com/vuejs/vue-router.git + as detected from PackageJson property "repository.url" + + + https://github.com/vuejs/vue-router#readme + as detected from PackageJson property "homepage" + + + https://github.com/vuejs/vue-router/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/vue-router + + + + Evan You + de-indent + 1.0.2 + remove extra indent from a block of code + + + MIT + + + pkg:npm/de-indent@1.0.2?vcs_url=git+https://github.com/yyx990803/de-indent.git + + + git+https://github.com/yyx990803/de-indent.git + as detected from PackageJson property "repository.url" + + + https://github.com/yyx990803/de-indent#readme + as detected from PackageJson property "homepage" + + + https://github.com/yyx990803/de-indent/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/de-indent + + + + @vue + compiler-sfc + 2.7.10 + compiler-sfc for Vue 2 + pkg:npm/%40vue/compiler-sfc@2.7.10 + + + Andrey Sitnik <andrey@sitnik.ru> + postcss + 8.4.16 + Tool for transforming styles with JS plugins + + + MIT + + + pkg:npm/postcss@8.4.16?vcs_url=postcss/postcss + + + postcss/postcss + as detected from PackageJson property "repository" + + + https://postcss.org/ + as detected from PackageJson property "homepage" + + + https://github.com/postcss/postcss/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/@vue/compiler-sfc/node_modules/postcss + + + + Alexey Raspopov + picocolors + 1.0.0 + The tiniest and the fastest library for terminal output formatting with ANSI colors + + + ISC + + + pkg:npm/picocolors@1.0.0?vcs_url=alexeyraspopov/picocolors + + + alexeyraspopov/picocolors + as detected from PackageJson property "repository" + + + + node_modules/@vue/compiler-sfc/node_modules/picocolors + + + + + node_modules/@vue/compiler-sfc + + + + Andrey Sitnik <andrey@sitnik.ru> + nanoid + 3.3.4 + A tiny (116 bytes), secure URL-friendly unique string ID generator + + + MIT + + + pkg:npm/nanoid@3.3.4?vcs_url=ai/nanoid + + + ai/nanoid + as detected from PackageJson property "repository" + + + + node_modules/nanoid + + + + Fredrik Nicol <fredrik.nicol@gmail.com> + csstype + 3.1.1 + Strict TypeScript and Flow types for style projxd on MDN data + + + MIT + + + pkg:npm/csstype@3.1.1?vcs_url=https://github.com/frenic/csstype + + + https://github.com/frenic/csstype + as detected from PackageJson property "repository" + + + + node_modules/csstype + + + + Charlie Kassel <ck@charliekassel.com> + vuejs-datepicker + 1.6.2 + A simple Vue.js datepicker component. Supports disabling of dates, inline mode, translations + + + MIT + + + pkg:npm/vuejs-datepicker@1.6.2?vcs_url=https://github.com/charliekassel/vuejs-datepicker + + + https://github.com/charliekassel/vuejs-datepicker + as detected from PackageJson property "repository.url" + + + https://github.com/charliekassel/vuejs-datepicker/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/vuejs-datepicker + + + + Evan You + vuex + 3.6.2 + state management for Vue.js + + + MIT + + + pkg:npm/vuex@3.6.2?vcs_url=git+https://github.com/vuejs/vuex.git + + + git+https://github.com/vuejs/vuex.git + as detected from PackageJson property "repository.url" + + + https://github.com/vuejs/vuex#readme + as detected from PackageJson property "homepage" + + + https://github.com/vuejs/vuex/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/vuex + + + + Eric King + webpack-assets-manifest + 3.1.1 + This Webpack plugin will generate a JSON file that matches the original filename with the hashed version. + + + MIT + + + pkg:npm/webpack-assets-manifest@3.1.1?vcs_url=https://github.com/webdeveric/webpack-assets-manifest.git + + + https://github.com/webdeveric/webpack-assets-manifest.git + as detected from PackageJson property "repository.url" + + + https://github.com/webdeveric/webpack-assets-manifest + as detected from PackageJson property "homepage" + + + https://github.com/webdeveric/webpack-assets-manifest/issues + as detected from PackageJson property "bugs.url" + + + + + webpack Contrib (https://github.com/webpack-contrib) + schema-utils + 1.0.0 + webpack Validation Utils + + + MIT + + + pkg:npm/schema-utils@1.0.0?vcs_url=https://github.com/webpack-contrib/schema-utils + + + https://github.com/webpack-contrib/schema-utils + as detected from PackageJson property "repository" + + + https://github.com/webpack-contrib/schema-utils + as detected from PackageJson property "homepage" + + + https://github.com/webpack-contrib/schema-utils/issues + as detected from PackageJson property "bugs" + + + + node_modules/webpack-assets-manifest/node_modules/schema-utils + + + + Tobias Koppers @sokra + tapable + 1.1.3 + Just a little module for plugins. + + + MIT + + + pkg:npm/tapable@1.1.3?vcs_url=http://github.com/webpack/tapable.git + + + http://github.com/webpack/tapable.git + as detected from PackageJson property "repository.url" + + + https://github.com/webpack/tapable + as detected from PackageJson property "homepage" + + + + node_modules/webpack-assets-manifest/node_modules/tapable + + + + + node_modules/webpack-assets-manifest + + + + John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/) + lodash.get + 4.4.2 + The lodash method `_.get` exported as a module. + + + MIT + + + pkg:npm/lodash.get@4.4.2?vcs_url=lodash/lodash + + + lodash/lodash + as detected from PackageJson property "repository" + + + https://lodash.com/ + as detected from PackageJson property "homepage" + + + + node_modules/lodash.get + + + + John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/) + lodash.has + 4.5.2 + The lodash method `_.has` exported as a module. + + + MIT + + + pkg:npm/lodash.has@4.5.2?vcs_url=lodash/lodash + + + lodash/lodash + as detected from PackageJson property "repository" + + + https://lodash.com/ + as detected from PackageJson property "homepage" + + + + node_modules/lodash.has + + + + Liad Yosef + webpack-node-externals + 1.7.2 + Easily exclude node_modules in Webpack bundle + + + MIT + + + pkg:npm/webpack-node-externals@1.7.2?vcs_url=https://github.com/liady/webpack-node-externals.git + + + https://github.com/liady/webpack-node-externals.git + as detected from PackageJson property "repository.url" + + + https://github.com/liady/webpack-node-externals + as detected from PackageJson property "homepage" + + + https://github.com/liady/webpack-node-externals/issues + as detected from PackageJson property "bugs.url" + + + + node_modules/webpack-node-externals + + + + Jan Kowalleck + @cyclonedx + cyclonedx-npm + 1.7.2 + Create CycloneDX Software Bill of Materials (SBOM) from NPM projects. + + 40055932876204236b91770e525561da3945d518a537ade9013dd2f7bfd5841c92aee185cc7d25291b316c34bcdc6bc87a1296d75950813e7534f67fa2c52639 + + + + Apache-2.0 + + + pkg:npm/%40cyclonedx/cyclonedx-npm@1.7.2 + + + git+https://github.com/CycloneDX/cyclonedx-node-npm.git + as detected from PackageJson property "repository.url" + + + https://github.com/CycloneDX/cyclonedx-node-npm#readme + as detected from PackageJson property "homepage" + + + https://github.com/CycloneDX/cyclonedx-node-npm/issues + as detected from PackageJson property "bugs.url" + + + https://registry.npmjs.org/@cyclonedx/cyclonedx-npm/-/cyclonedx-npm-1.7.2.tgz + as detected from npm-ls property "resolved" + + + + node_modules/@cyclonedx/cyclonedx-npm + + + + Jan Kowalleck + @cyclonedx + cyclonedx-library + 1.9.2 + Core functionality of CycloneDX for JavaScript (Node.js or WebBrowser). + + b6fca2be92dd702b7ac4c40afa45e474b0591cb90bc90cb0de091abe61aa3e621590a56cd3ec1c889e8e9d17423a550fabb27adbd5e7391ea0659bd16ccdbad8 + + + + Apache-2.0 + + + pkg:npm/%40cyclonedx/cyclonedx-library@1.9.2 + + + git+https://github.com/CycloneDX/cyclonedx-javascript-library.git + as detected from PackageJson property "repository.url" + + + https://github.com/CycloneDX/cyclonedx-javascript-library#readme + as detected from PackageJson property "homepage" + + + https://github.com/CycloneDX/cyclonedx-javascript-library/issues + as detected from PackageJson property "bugs.url" + + + https://registry.npmjs.org/@cyclonedx/cyclonedx-library/-/cyclonedx-library-1.9.2.tgz + as detected from npm-ls property "resolved" + + + + node_modules/@cyclonedx/cyclonedx-library + + + + the purl authors + packageurl-js + 1.0.0 + JavaScript library to parse and build "purl" aka. package URLs. This is a microlibrary implementing the purl spec at https://github.com/package-url + + d3a90d154fb2076a630dfe49c97a2e41e29fc1249c18ff21ad92ba56007e5b84a5572e32e72078be5f8056687747418135df9f06dd1d1224b1dc72a6b9c86e25 + + + + MIT + + + pkg:npm/packageurl-js@1.0.0 + + + git+https://github.com/package-url/packageurl-js.git + as detected from PackageJson property "repository.url" + + + https://github.com/package-url/packageurl-js#readme + as detected from PackageJson property "homepage" + + + https://github.com/package-url/packageurl-js/issues + as detected from PackageJson property "bugs.url" + + + https://registry.npmjs.org/packageurl-js/-/packageurl-js-1.0.0.tgz + as detected from npm-ls property "resolved" + + + + node_modules/packageurl-js + + + + Ozgur Ozcitak <oozcitak@gmail.com> + xmlbuilder2 + 3.0.2 + An XML builder for node.js + + 8783146b0198db5093761578c66dc31bd760b2aca10e466f549071f3c6dea97f3026cdd58321908009f956b787b9a7baba74d0c61d75e5a30ae489c25663882b + + + + MIT + + + pkg:npm/xmlbuilder2@3.0.2 + + + git://github.com/oozcitak/xmlbuilder2.git + as detected from PackageJson property "repository.url" + + + http://github.com/oozcitak/xmlbuilder2 + as detected from PackageJson property "homepage" + + + http://github.com/oozcitak/xmlbuilder2/issues + as detected from PackageJson property "bugs.url" + + + https://registry.npmjs.org/xmlbuilder2/-/xmlbuilder2-3.0.2.tgz + as detected from npm-ls property "resolved" + + + + node_modules/xmlbuilder2 + + + + TJ Holowaychuk <tj@vision-media.ca> + commander + 9.5.0 + the complete solution for node.js command-line programs + + 291b3b5950ca83ce8f5a2b80aa10eb0109d35d92ab69570273abc574bd78aab67f0dc5b0b91a3b5688985da9573bb4b918aa6a622544c026e01437f134728905 + + + + MIT + + + pkg:npm/commander@9.5.0 + + + https://github.com/tj/commander.js.git + as detected from PackageJson property "repository.url" + + + https://registry.npmjs.org/commander/-/commander-9.5.0.tgz + as detected from npm-ls property "resolved" + + + + node_modules/commander + + + + Ozgur Ozcitak <oozcitak@gmail.com> + @oozcitak + dom + 1.15.10 + A modern DOM implementation + + d094f6f7f2dac558117062af1e64ab51312f67c057bd98469762c04915201ea0d30b5339835a4b995bf9e8860dcadddb1b60948c391cebbc27c990b5e296d0ad + + + + MIT + + + pkg:npm/%40oozcitak/dom@1.15.10 + + + git://github.com/oozcitak/dom.git + as detected from PackageJson property "repository.url" + + + http://github.com/oozcitak/dom + as detected from PackageJson property "homepage" + + + http://github.com/oozcitak/dom/issues + as detected from PackageJson property "bugs.url" + + + https://registry.npmjs.org/@oozcitak/dom/-/dom-1.15.10.tgz + as detected from npm-ls property "resolved" + + + + node_modules/@oozcitak/dom + + + + Ozgur Ozcitak <oozcitak@gmail.com> + @oozcitak + infra + 1.0.8 + An implementation of the Infra Living Standard + + 25101473d551e8818738bece185fb2aefb342cef1296a1a73c032acb33ae1593d26525c8ed77f63bdf9ac103d2317808586b6051ffdd03a1ece97eb24846964e + + + + MIT + + + pkg:npm/%40oozcitak/infra@1.0.8 + + + git+https://github.com/oozcitak/infra.git + as detected from PackageJson property "repository.url" + + + http://github.com/oozcitak/infra + as detected from PackageJson property "homepage" + + + http://github.com/oozcitak/infra/issues + as detected from PackageJson property "bugs.url" + + + https://registry.npmjs.org/@oozcitak/infra/-/infra-1.0.8.tgz + as detected from npm-ls property "resolved" + + + + node_modules/@oozcitak/infra + + + + Ozgur Ozcitak <oozcitak@gmail.com> + @oozcitak + url + 1.0.4 + An implementation of the URL Living Standard + + 903703f32fb2dc50923af9c123a1c9825d34be23bf9c66d0a0220d990d21f7c3a19c6213ad64776ce19fc180ad86072b57c0274c9cfc333b254d06c2dd23809b + + + + MIT + + + pkg:npm/%40oozcitak/url@1.0.4 + + + git+https://github.com/oozcitak/url.git + as detected from PackageJson property "repository.url" + + + http://github.com/oozcitak/url + as detected from PackageJson property "homepage" + + + http://github.com/oozcitak/url/issues + as detected from PackageJson property "bugs.url" + + + https://registry.npmjs.org/@oozcitak/url/-/url-1.0.4.tgz + as detected from npm-ls property "resolved" + + + + node_modules/@oozcitak/url + + + + Ozgur Ozcitak <oozcitak@gmail.com> + @oozcitak + util + 8.3.8 + Utility functions + + 4fc4db4a71acc68e930c1271fd282ffc195524bdedb21c593fb02ae51d664a733939c1d8d9d41ac4b32edbe13cbb780dd0c2cecdd8eeaea37865156ecd0c9c39 + + + + MIT + + + pkg:npm/%40oozcitak/util@8.3.8 + + + git://github.com/oozcitak/util.git + as detected from PackageJson property "repository.url" + + + http://github.com/oozcitak/util + as detected from PackageJson property "homepage" + + + http://github.com/oozcitak/util/issues + as detected from PackageJson property "bugs.url" + + + https://registry.npmjs.org/@oozcitak/util/-/util-8.3.8.tgz + as detected from npm-ls property "resolved" + + + + node_modules/@oozcitak/util + + + + @types + node + 18.11.18 + TypeScript definitions for Node.js + + 0c74295868f240a4878f779b8c523fc1129ca9071d47e328141ca09ed60e672b42a8d7e4776642e004432760d0aa18c7e69f393677778e1509217aeccc55ff24 + + + + MIT + + + pkg:npm/%40types/node@18.11.18#types/node + + + https://github.com/DefinitelyTyped/DefinitelyTyped.git#types/node + as detected from PackageJson property "repository.url" and "repository.directory" + + + https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node + as detected from PackageJson property "homepage" + + + https://registry.npmjs.org/@types/node/-/node-18.11.18.tgz + as detected from npm-ls property "resolved" + + + + node_modules/@types/node + + + + Vladimir Zapparov <dervus.grim@gmail.com> + js-yaml + 3.14.0 + YAML 1.2 parser and serializer + + ff821b21e1dc0fd54c1c5a8347f810ec475974b8a63af5b60dd731163772c99f4db1b4be71cad7a95583b5a6ff95197902552a9a9071f0484f69647e3ad635ec + + + + MIT + + + pkg:npm/js-yaml@3.14.0 + + + nodeca/js-yaml + as detected from PackageJson property "repository" + + + https://github.com/nodeca/js-yaml + as detected from PackageJson property "homepage" + + + https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.0.tgz + as detected from npm-ls property "resolved" + + + + node_modules/js-yaml + + + + argparse + 1.0.10 + Very powerful CLI arguments parser. Native port of argparse - python's options parsing library + + a39468cbab4d1b848bfc53a408037a4738e26a4652db944b605adc32db49a9b75df015ab9c0f9f1b3e7b88de4f6f4ea9bc11af979810d01e3c74996c957be84e + + + + MIT + + + pkg:npm/argparse@1.0.10 + + + nodeca/argparse + as detected from PackageJson property "repository" + + + https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz + as detected from npm-ls property "resolved" + + + + node_modules/argparse + + + + Alexandru Marasteanu <hello@alexei.ro> (http://alexei.ro/) + sprintf-js + 1.0.3 + JavaScript sprintf implementation + + 0fd70f824bcb955deddc8ccbd03d182ef180f40864e0f72f57051b3747521abd5a3f436bb780049d351bb86beab840b4980eb81aab757f38ab951b3989b5f1f2 + + + + BSD-3-Clause + + + pkg:npm/sprintf-js@1.0.3 + + + https://github.com/alexei/sprintf.js.git + as detected from PackageJson property "repository.url" + + + https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz + as detected from npm-ls property "resolved" + + + + node_modules/sprintf-js + + + + Ariya Hidayat + esprima + 4.0.1 + ECMAScript parsing infrastructure for multipurpose analysis + + 786b85170ed4a5d6be838a7e407be75b44724d7fd255e2410ccfe00ad30044ed1c2ee4f61dc10a9d33ef86357a6867aaac207fb1b368a742acce6d23b1a594e0 + + + + BSD-2-Clause + + + pkg:npm/esprima@4.0.1 + + + https://github.com/jquery/esprima.git + as detected from PackageJson property "repository.url" + + + http://esprima.org + as detected from PackageJson property "homepage" + + + https://github.com/jquery/esprima/issues + as detected from PackageJson property "bugs.url" + + + https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz + as detected from npm-ls property "resolved" + + + + node_modules/esprima + + + + Andrew Rowls <eternicode@gmail.com> + bootstrap-datepicker + 1.9.0 + A datepicker for Bootstrap + + f6b6186da54e85e198c633abffe6c90a644f8a17f2f8b90b4a0e1f205313f4e77c5b0581fcc079d30d093b578180a50c6dbecf147403e6e01f23702b0316515c + + + + Apache-2.0 + + + pkg:npm/bootstrap-datepicker@1.9.0 + + + https://github.com/uxsolutions/bootstrap-datepicker.git + as detected from PackageJson property "repository.url" + + + https://github.com/uxsolutions/bootstrap-datepicker + as detected from PackageJson property "homepage" + + + https://registry.npmjs.org/bootstrap-datepicker/-/bootstrap-datepicker-1.9.0.tgz + as detected from npm-ls property "resolved" + + + + node_modules/bootstrap-datepicker + + + + OpenJS Foundation and other contributors + jquery + 3.6.1 + JavaScript library for DOM operations + + a2925e3b89c2b9c567b23897384fbf3dc0a0630f46c29becfdae81d4b2ff9508705b0a5b5445580d9d45a2416bf0f45cee085896b14fbb21ee8a20cd4d0c6673 + + + + MIT + + + pkg:npm/jquery@3.6.1 + + + https://github.com/jquery/jquery.git + as detected from PackageJson property "repository.url" + + + https://jquery.com + as detected from PackageJson property "homepage" + + + https://github.com/jquery/jquery/issues + as detected from PackageJson property "bugs.url" + + + https://registry.npmjs.org/jquery/-/jquery-3.6.1.tgz + as detected from npm-ls property "resolved" + + + + node_modules/jquery + + + + David Stutz + bootstrap-multiselect + 0.9.15 + JQuery multiselect plugin projxd on Twitter Bootstrap. + + 530177d9ad1047cdb1904106a6e36b9f9ec1bb46ffec37c2ba888e6b38921df40a163e5aad1e9cefe3182ece518887f7ce5e1767e62763b6418bafc4377bc464 + + + + Apache License, Version 2.0 + + + pkg:npm/bootstrap-multiselect@0.9.15 + + + https://github.com/davidstutz/bootstrap-multiselect + as detected from PackageJson property "repository.url" + + + http://davidstutz.de/bootstrap-multiselect/ + as detected from PackageJson property "homepage" + + + https://github.com/davidstutz/bootstrap-multiselect/issues + as detected from PackageJson property "bugs.url" + + + https://registry.npmjs.org/bootstrap-multiselect/-/bootstrap-multiselect-0.9.15.tgz + as detected from npm-ls property "resolved" + + + + + jQuery Foundation and other contributors + jquery + 2.1.4 + JavaScript library for DOM operations + + c1647e782abf4ff42dd0d705c8cf90561a34655cd6c456003628e648c2265e23399a3af568e69fe1217478e10f73dd9b6cad8bdaf0e9c70de522cceeb3b78ef1 + + + + MIT + https://github.com/jquery/jquery/blob/2.1.4/MIT-LICENSE.txt + + + pkg:npm/jquery@2.1.4 + + + https://github.com/jquery/jquery.git + as detected from PackageJson property "repository.url" + + + http://jquery.com + as detected from PackageJson property "homepage" + + + http://bugs.jquery.com + as detected from PackageJson property "bugs.url" + + + https://registry.npmjs.org/jquery/-/jquery-2.1.4.tgz + as detected from npm-ls property "resolved" + + + + node_modules/bootstrap-multiselect/node_modules/jquery + + + + + node_modules/bootstrap-multiselect + + + + Twitter Inc. + bootstrap2 + 2.3.1 + Sleek, intuitive, and powerful front-end framework for faster and easier web development. + + 3a8c2abf384b6454bed1cb3cc46f5517530881ca05b3901bf52571f77e81877fe9366ba8adf38996bae30204ef583e582f3096fcea88618a51ee4eca3dff4963 + + + + Apache-2.0 + http://www.apache.org/licenses/LICENSE-2.0 + + + pkg:npm/bootstrap2@2.3.1 + + + https://github.com/twitter/bootstrap.git + as detected from PackageJson property "repository.url" + + + http://twitter.github.com/bootstrap/ + as detected from PackageJson property "homepage" + + + https://registry.npmjs.org/bootstrap2/-/bootstrap2-2.3.1.tgz + as detected from npm-ls property "resolved" + + + + node_modules/bootstrap2 + + + + w8tcha + ckeditor-wordcount-plugin + 1.17.10 + WordCount Plugin for CKEditor Editor + + 0351d219661eb1d50e36ff9e4d53c1508ce6f3b380015bb3c9c665959dec30cb25e244ff7edbf9cc54ebfb06485fefc185253f7b8f779f8c845b3607a370a0cc + + pkg:npm/ckeditor-wordcount-plugin@1.17.10 + + + https://github.com/w8tcha/CKEditor-WordCount-Plugin.git + as detected from PackageJson property "repository.url" + + + https://registry.npmjs.org/ckeditor-wordcount-plugin/-/ckeditor-wordcount-plugin-1.17.10.tgz + as detected from npm-ls property "resolved" + + + + node_modules/ckeditor-wordcount-plugin + + + + CKSource (https://cksource.com/) + ckeditor4 + 4.16.1 + JavaScript WYSIWYG web text editor. + + 75f7253f740341f5cc3ab3dec77b3f97a6f913e3014b184ca56dfe9d433a9455f76b1d6eff5b65d844e97bb898251b683784ddbdd74be571707904f5ef0a0de4 + + + (GPL-2.0 OR LGPL-2.1 OR MPL-1.1) + + pkg:npm/ckeditor4@4.16.1 + + + git+https://github.com/ckeditor/ckeditor4-releases.git + as detected from PackageJson property "repository.url" + + + https://ckeditor.com/ckeditor-4/ + as detected from PackageJson property "homepage" + + + https://github.com/ckeditor/ckeditor4/issues + as detected from PackageJson property "bugs.url" + + + https://registry.npmjs.org/ckeditor4/-/ckeditor4-4.16.1.tgz + as detected from npm-ls property "resolved" + + + + node_modules/ckeditor4 + + + + Iskren Ivov Chernev <iskren.chernev@gmail.com> (https://github.com/ichernev) + moment + 2.29.4 + Parse, validate, manipulate, and display dates + + e4b0bd48ec6349cd8717abced82cae4c3362bc4768cf622fc892468fa5fc0c9d1e1727eccc4d1088477e897981bd43f7587c528c51ffbc8b00d04374d1c82bf3 + + + + MIT + + + pkg:npm/moment@2.29.4 + + + https://github.com/moment/moment.git + as detected from PackageJson property "repository.url" + + + https://momentjs.com + as detected from PackageJson property "homepage" + + + https://github.com/moment/moment/issues + as detected from PackageJson property "bugs.url" + + + https://registry.npmjs.org/moment/-/moment-2.29.4.tgz + as detected from npm-ls property "resolved" + + + + node_modules/moment + + + + toastr + 2.1.4 + ToastrJS is a JavaScript library for Gnome / Growl type non-blocking notifications. jQuery is required. The goal is to create a simple core library that can be customized and extended. + + 2c8cbbec5e67faccf8b5e7cc9853a7b5c27a1cbd05bf79354c39cd9856746d4fc672f2087f2e9e1b6bfbcd098c89881a6a502252fef9b6d16b3e7e6cd20caa94 + + + + MIT + http://www.opensource.org/licenses/mit-license.php + + + pkg:npm/toastr@2.1.4 + + + git://github.com/CodeSeven/toastr.git + as detected from PackageJson property "repository.url" + + + http://www.toastrjs.com + as detected from PackageJson property "homepage" + + + http://stackoverflow.com/questions/tagged/toastr + as detected from PackageJson property "bugs" + + + https://registry.npmjs.org/toastr/-/toastr-2.1.4.tgz + as detected from npm-ls property "resolved" + + + + node_modules/toastr + + + + x.site.projx + projx-reportUtils + LATEST-SNAPSHOT + projx Support and Expeditionary Planning Tool + + pkg:maven/x.site.projx/projx-reportUtils@LATEST-SNAPSHOT?type=jar + + + https://artifactory.at.some.sitel/artifactory/projx-Releases + + + + + TIBCO Software Inc. + net.sf.jasperreports + jasperreports + 6.18.1 + Free Java Reporting Library + optional + + 3dce4af41a9e516f70445dd2c06b628f + 817777e50e013970cdc21a09c30a6d99625e0fe4 + 2f6a6b1a775a328bd12233f852f2f89c4d374df284300039549592487b51472c + 0e2868cc63388defb56f6f056c84ee46d7dd5912047a573d86fa384bfc20b9a29d35d71fb288c30e17559691db88b6c1fbf1fcb58dfe202570150b40c9d7a9c4 + 16da186f5de6d9fe4a07105c79a867e4814fa9f30daa160b6c182df5ff223061d04fdbe5435f0ad39afb350d254d3b1c + 34562fca79121ecc17dcb8e93185262f409d584929ad5b9dd524003226ce52e44d6205df700380657e89329803c02004 + f0f31dd4ecc50c7702dddbc84717d851eccb0ef9db41351b25d8d31cb13342d5 + 87033563746038e5eee681016572d8c99d8de1bdb7f3c42c030b93ea000ee78c7026ac8e427662c822ad8d99f508143238c1dafbc8fede42bfb140c131ffb924 + + + + GNU Lesser General Public License + http://jasperreports.sourceforge.net/license.html + + + pkg:maven/net.sf.jasperreports/jasperreports@6.18.1?type=jar + + + http://jasperreports.sourceforge.net + + + https://github.com/TIBCOSoftware/jasperreports + + + + + The Apache Software Foundation + commons-beanutils + commons-beanutils + 1.9.4 + Apache Commons BeanUtils provides an easy-to-use but flexible wrapper around reflection and introspection. + optional + + 07dc532ee316fe1f2f0323e9bd2f8df4 + d52b9abcd97f38c81342bb7e7ae1eee9b73cba51 + 7d938c81789028045c08c065e94be75fc280527620d5bd62b519d5838532368a + 7762b348caecead49038a38a89754ff7d9be6199324315495ba47cf24f52c06faadf9306d925c8fe47c587589a939c82e491e1c730267fdf354243a68c0f96ff + dcd3845917b8fb189cf4034b0d7c6d266ec7110f85ffbd2711cdea9eb94b4fa3e1cee9120b484c6a120b82769230ed3a + dfdb8845989be083de807184910124ad7e7e372959b34686cd5f5020f193a2997831ead497b0a5a0233f031aecdf55f6 + 127a81068335d6ca47f5f5e12d849dc1bc5300b2ad8d3f9b64ca30ff2a76d479 + f67405d0a7667adf7cd35cd7416c54e1759380cdb9c8f179a10175058e40292808e17e69d48df4d4d6b5e268c314127cf3ab87af6920a271bb2e6e0df963940d + + + + Apache-2.0 + + + pkg:maven/commons-beanutils/commons-beanutils@1.9.4?type=jar + + + https://commons.apache.org/proper/commons-beanutils/ + + + https://builds.apache.org/ + + + https://repository.apache.org/service/local/staging/deploy/maven2 + + + https://issues.apache.org/jira/browse/BEANUTILS + + + http://mail-archives.apache.org/mod_mbox/commons-user/ + + + http://svn.apache.org/viewvc/commons/proper/beanutils/tags/BEANUTILS_1_9_3_RC3 + + + + + The Apache Software Foundation + commons-collections + commons-collections + 3.2.2 + Types that extend and augment the Java Collections Framework. + + f54a8510f834a1a57166970bfc982e94 + 8ad72fe39fa8c91eaaf12aadb21e0c3661fe26d5 + eeeae917917144a68a741d4c0dff66aa5c5c5fd85593ff217bced3fc8ca783b8 + 51c72f9aca7726f3c387095e66be85a6df97c74b00a25434b89188c1b8eab6e2b55accf7b9bd412430d22bd09324dec076e300b3d1fa39fccad471f0f2a3da16 + dd4e99b3314bd3c1a1ee26296615d9e44dadf7a1f8a7bbba44fb95121803d331e36d4cca4260e7609af78a47ba3e4073 + 8ce03528e4a6e95c44283b56eca87e6a6d3bf1363411a55b538f4f9110cf7470581ea5c73925e877ddab08dba0603f40 + fd3d6134b5f07077b82ccf93d148dacf7c4ce5c971209510edd0e77e3e38c19e + c2a523916fb7c7d55a05d5e3d9e9b33000733f4b20a71be174e4e093e3f06ea78ad831edd1505527da7388105f8647efb7d5666ba852c90b4e2d5bb74256efbc + + + + Apache-2.0 + + + pkg:maven/commons-collections/commons-collections@3.2.2?type=jar + + + http://commons.apache.org/collections/ + + + https://continuum-ci.apache.org/ + + + https://repository.apache.org/service/local/staging/deploy/maven2 + + + http://issues.apache.org/jira/browse/COLLECTIONS + + + http://mail-archives.apache.org/mod_mbox/commons-user/ + + + http://svn.apache.org/viewvc/commons/proper/collections/trunk + + + + + The Apache Software Foundation + commons-digester + commons-digester + 2.1 + The Digester package lets you configure an XML to Java object mapping module + which triggers certain actions called rules whenever a particular + pattern of nested XML elements is recognized. + + 528445033f22da28f5047b6abcd1c7c9 + 73a8001e7a54a255eef0f03521ec1805dc738ca0 + e0b2b980a84fc6533c5ce291f1917b32c507f62bcad64198fff44368c2196a3d + a2c822690786b41e0a02506c7aaf7e8a4b8251ea71d6978ee03e82b11ca242e49386d6da84dbc7182d5a6fb167822aed200da2d97e2f264d63ccf8f1b9681ac8 + 2aaaa152e6e5fa4c632065e18bb17f8a223de0713be0610b62939b179fccdd37645f2e3073896f455ea95566274e14c1 + 68f842c1a87a2fae303d1662a2b9d9d63b358c11c7b26ec468ef64f5e677b44e3db3d30a7f4b74aa73bda0ecf9f4858a + dafa3bae04d0eb180e384caf6a86be5387537992b2b7c4998cc341d56f0ac4d7 + 7a3f2991476cd5f2f8e645fe9820a9820b720b19fc6451be09a3be35bab7d51fe28f094c0f9735aa5f6fb9dc432c8513b7d15ae44d66b0836e97abcf06d74ce4 + + + + Apache-2.0 + + + pkg:maven/commons-digester/commons-digester@2.1?type=jar + + + http://commons.apache.org/digester/ + + + http://vmbuild.apache.org/continuum/ + + + https://repository.apache.org/service/local/staging/deploy/maven2 + + + http://issues.apache.org/jira/browse/DIGESTER + + + http://mail-archives.apache.org/mod_mbox/commons-user/ + + + http://svn.apache.org/viewvc/commons/proper/digester/tags/DIGESTER_2_1_RC2 + + + + + The Apache Software Foundation + commons-logging + commons-logging + 1.1.1 + Commons Logging is a thin adapter allowing configurable bridging to other, + well known logging systems. + + ed448347fc0104034aa14c8189bf37de + 5043bfebc3db072ed80fbd362e7caf00e885d8ae + ce6f913cad1f0db3aad70186d65c5bc7ffcc9a99e3fe8e0b137312819f7c362f + 470323a2ee38be1b7ff8c84f1f5a5f8c4ec2ceb6b0649faa7b961f111865877dbe125409f72b1c52c7f18aa89e3469635c49ff4b83f86cc2f2eb2cc5562f9bff + 264a511a601a07558911ccc5f49ef579aa1b1760bb4091bcbe1a0017c7be64d86f1d0b28ef560819614b252907cdd44a + e61a9dafb4f92a3cfd76fc28ff340eb15bc0fca939a48408fd9032362b8a95ce938e58dd01f7c3d0ff90ac21cacc77df + 0799a9105d174ba2f082845e8ca27db236118b00e4a2053ee1fde798b2fbd031 + dbdcf933551c6abe834ac4fa5b4833e47895c2573530b74f51daff7291dab60db88946fc34a518f423a68e9c9ce36507345070e56a86fb5a567be685c1e3cded + + + + Apache-2.0 + + + pkg:maven/commons-logging/commons-logging@1.1.1?type=jar + + + http://commons.apache.org/logging + + + http://vmbuild.apache.org/continuum/ + + + + + + http://issues.apache.org/jira/browse/LOGGING + + + http://mail-archives.apache.org/mod_mbox/commons-commits/ + + + http://svn.apache.org/repos/asf/commons/proper/logging/tags/commons-logging-1.1.1 + + + + + The Apache Software Foundation + org.apache.commons + commons-collections4 + 4.2 + The Apache Commons Collections package contains types that extend and augment the Java Collections Framework. + + b290524be8a0dbb6521df95f4ce80c8d + 54ebea0a5b653d3c680131e73fe807bb8f78c4ed + 6a594721d51444fd97b3eaefc998a77f606dedb03def494f74755aead3c9df3e + e1ba369ffe4e0d8fb1c432ffb2171aaf4435ae2a88f6c91ebf8e7aea28791dc3035685f34a93a5b1370745374ea4bf3b9ca7a99bf73a0017811d29c13afa9a1e + 5f7cf10ef89925ae0c4ad076ff93079157ce11f69608d8c37e9d6a9cc3a0fa5e65f1b5cd1b2dc7c45cb3886511354710 + 218724de0d35fb21a3f88ae22dc711568d68baee0016dbba9ee36fd16e5e5954b555683f8b96476f10d859a87c4c404c + a4bac19481860f0aca6abdcc68c89f6198422855efa9c3c596f1c96ad6110f4d + b738176217e3233e94ad8e88d89f3c75c8c55b1990636fed72f7813f537989dbda38faa04c3f152275205f887c773f7ced867c6f5332d61e9442641e5fd8b3d5 + + + + Apache-2.0 + + + pkg:maven/org.apache.commons/commons-collections4@4.2?type=jar + + + http://commons.apache.org/proper/commons-collections/ + + + https://builds.apache.org/ + + + https://repository.apache.org/service/local/staging/deploy/maven2 + + + http://issues.apache.org/jira/browse/COLLECTIONS + + + http://mail-archives.apache.org/mod_mbox/commons-user/ + + + https://git-wip-us.apache.org/repos/asf?p=commons-collections.git + + + + + com.lowagie + itext + 2.1.7.js9 + iText, a free Java-PDF library + optional + + 94d51d3d737131bb8b2228c7271e98da + 7a65c27f8636319034a331ec2149cdf906bba2ea + 63e145ee8a4da832f0d030886c062845416c1e24c75162b707f816e626e99102 + 002fd1b95d8fce4b0259899da3400ed2d704c20cceaa3330942e188e83c681db16adbe2369c3f22b5088297aac05c22ce5f2cff9b11fc002c5b19ab2ef63e4a5 + f377d42c29e56c83f5ab054fa43c9f198ade0d7db6d764d4e7f9bdf84d6404d408d1837df39c58b953ef48560c2a27fb + a8f1f4ca83d8821591a8bef509b077f9f236d0a22bea55c95cbe82f1cc1447bef9925c331de72286cd0aebc81f77b125 + 2464c22f618ad1f1e25948b8813ea5fb5103a7451bf5ad57b95dba5a679fc213 + 4b36f9e7dafbb28384614a81c7a0571779a56dab3b39564854001606595e5857c4d16f86fff82933a4d529d9d25badebce87b68127e0487f9af7de79142a4315 + + + + MPL-1.0 + + + pkg:maven/com.lowagie/itext@2.1.7.js9?type=jar + + + http://www.lowagie.com/iText/ + + + http://news.gmane.org/gmane.comp.java.lib.itext.general + + + http://itext.svn.sourceforge.net/viewvc/itext + + + + + org.bouncycastle + bcprov-jdk15on + 1.68 + The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.5 and up. + + f34043ac8be2793843364b4406a15543 + 46a080368d38b428d237a59458f9bc915222894d + f732a46c8de7e2232f2007c682a21d1f4cc8a8a0149b6b7bd6aa1afdc65a0f8d + b2d267e5d198a4c51318a53fa3cac5a769521f217ea69dd40c3d2372ea3a00d1245585f8916cad77c9a11d561aed04840c73c6095d785b598a385561f99af8ac + 1c96f7a21077be42a61bf82f1ab9eb7550bc0c1b352569672080463f1385012a9c0bdfd00c8ebba3805be2575abf82b9 + 79d4b8520096f287a6c3773be24e2d38ad092936b0aa2899bcb10665809e1f8d4c88f2d8901d9d3811147579a8bc393e + 10a25d2a4e4d33653e63566a8dfa4a7a4ca612f2b6bc4813546eb66decf813a3 + b973004ced0f4754ee148225a8add20d5a3922efea85845c092d3fdd8e2e9fce10be92693d89a355f64ba099e41e3ca8b0919b915a9a63d20fb43792d55ee4e9 + + + + Bouncy Castle Licence + http://www.bouncycastle.org/licence.html + + + pkg:maven/org.bouncycastle/bcprov-jdk15on@1.68?type=jar + + + http://www.bouncycastle.org/java.html + + + https://github.com/bcgit/bc-java/issues + + + https://github.com/bcgit/bc-java + + + + + JFree.org + org.jfree + jcommon + 1.0.23 + JCommon is a free general purpose Java class library that is used in + several projects at www.jfree.org, including JFreeChart and + JFreeReport. + + 1b059adc60fef2da40b7130f9a67f977 + a316f336ca996e0c6bec4e4fbd49be8f5e1c3968 + 1e670402809484c71ec74d55b40022a4c4939c7911bd39ee5a0cfb3aaf56397c + f4574e35698f66ac02c868e49ca4d238eb103390f1b842dee5afe0adfdaaca5d86f3e149449c3dbaf83b4965be4829679c201393df33764c489288637eff0a44 + 72bf196da43a02ccfc2ba006de10335bb0d32a4b64e67303a0b8e8e15464f2d7e3275ac4b9a52eb3c0bdcb112f8a1b00 + c0b2735bd3e247210e15e7b907f014d65208c2e4b4c9af2c7617befc01aa160906d4a2c3e3251162d004e7f2fff232e6 + c08d3478dc33b5df4ca75e86c746b2c857a3c60eac854c66cb11d16725b13c1b + e5ee3b35a3155a01825a58e8c3107403e40c565cf21484a058e184eec72ea415dc750d594aea5bfdd61721ceba4e34fc52fc3e5c76159e3d34c69e7bbe039932 + + + + GNU Lesser General Public Licence + http://www.gnu.org/licenses/lgpl.txt + + + pkg:maven/org.jfree/jcommon@1.0.23?type=jar + + + http://www.jfree.org/jcommon/ + + + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + http://sourceforge.net/tracker/?group_id=15494 + + + http://sourceforge.net/mailarchive/forum.php?forum=jfreechart-dev + + + http://cvs.sourceforge.net/viewcvs.py/jfreechart/jcommon + + + + + JFree.org + org.jfree + jfreechart + 1.0.19 + JFreeChart is a class library, written in Java, for generating charts. + Utilising the Java2D APIs, it currently supports bar charts, pie charts, + line charts, XY-plots and time series plots. + + 4ff3762bd04a7239cfb98de542134bec + ba9ee7dbb2e4c57a6901c79f614ed2dea9cc0e20 + 153d077d6399776a45de97c555ad026eb6201d4bd8af86cfce7b8b4ccfa66263 + 4461b94a95fff1dccd45b504e2cebd37e294257ac743af4296a55b1513d9133aee0f69d05fc737406ee2246c7e1f20536cf235b02053d5ca7aed58586841c2bd + dd30f229cbcf06cfd825f9acbdb2a8026a8c81c49f9919b5708561199a8464df87730a04bd083a3bf252184a71349549 + 0a60de6e3640d63ec6d5fd98a1ddc3e3829ef4b20bd9a236ff7055968ffd826b1c92fbcfefa16ed3a2ce82622e168a9a + ff29553d392a5f5e3d56fb495c3d4829adb08aeb4a11e5c11a9b3dc12aa47ffb + 1f244620552183a5abae81b5a4f6a8a465f9165fa23d273aad01bfde1c1cd7c0fbb21a2f60e26d5ba057ed29115bc274af6bc5cedc90560c5b239ab017accaef + + + + GNU Lesser General Public Licence + http://www.gnu.org/licenses/lgpl.txt + + + pkg:maven/org.jfree/jfreechart@1.0.19?type=jar + + + http://www.jfree.org/jfreechart/ + + + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + http://sourceforge.net/tracker/?group_id=15494 + + + http://sourceforge.net/mailarchive/forum.php?forum=jfreechart-dev + + + http://jfreechart.svn.sourceforge.net/viewvc/jfreechart/ + + + + + Eclipse Foundation + org.eclipse.jdt + ecj + 3.21.0 + Eclipse Compiler for Java(TM) + + 4d1404f81be38fdf9186c9556c4ad3e9 + d06974eec06892e5594bdb8fbbc95cd81f1c57b2 + 9082211f48782750093f07822d1ae481e8ece250449578f372334da626ccdead + 41311832a593d13ea84eebea087baa3bab16df381c70bd4c0f425caeb69eac1b41be2af27e40735ae16c039df4861fa93c3cfc4c21f84bad1c5eb1cb0e7ad351 + 5123d5e6e30cc26bf70723fdd92ea3eab41b0c694197bee305459b5bd431ee8bb66c4b7f39dc91b5fb4b533a103f70f6 + c86e90c8dcfc88096c3e81dfaea506b8f2ad95b38f84e72ec4aa17ffa609f28bd6cca9a7f57daded00cbeffd66a41845 + 5434d2fe6622d1d128f22b4ca4aa9cb9c6b30ad4929b1515e1b0fac0ff09f017 + 0a4bee0629ba2f91fdd4e0f1090751e8f89f11e4ffbcec08884a0be66c0aca31ed11ecd061434704f794e6621e09614f19bb6f696fc1f59eb902cb4f466486a9 + + + + EPL-2.0 + + + pkg:maven/org.eclipse.jdt/ecj@3.21.0?type=jar + + + http://www.eclipse.org/jdt + + + https://bugs.eclipse.org/ + + + https://git.eclipse.org/c/jdt/eclipse.jdt.core.git + + + + + org.codehaus.castor + castor-xml + 1.4.1 + The core XML data binding framework with support for marshalling Java objects to + and unmarshalling from XML documents. + + 05d1d53f74b4a59e728ae5b6c3bcd831 + 2cee800a008291305ac4f3a67b674f9c6cb1d07a + 1b8d380f3a0ae246beda2319cae2a0ef8e58e69473c22a7b378ea6a7813e189e + a2470b7ce63798a9291c81a23610f968e2434c0a96a6ebf090e15b245ab1db878c0250ca5d6f1ba15b2a8c4758d7f6996e20d8a13f910c392bbfce7d22cb49b5 + c80ff253ea10e2d4f497d99e73a78e1eeb0aa55c14d84096167ea49f7e7b11419185b5d8c4343c810088b8a127423b74 + 09a33fe3725256943ffceeecdbca7097ab8cd90a04a3ba6861eb3f8a1eab51e0d47b6544de6ed4811cc558cb6de4a101 + feefab86606fb61e03aca520094313ce5703aba88b484afe40f54c058e16fbd3 + 74896fe2b629b70e04213238020480c3fe068d3ce8a318eadd584ef28e6cfdfa8b4b8e33309e94b1a309af41cafe554b42edb95cf63ef5f636fdd31a9b16b077 + + + pkg:maven/org.codehaus.castor/castor-xml@1.4.1?type=jar + + + https://github.com/castor-data-binding/castor/castor-xml + + + https://travis-ci.org/castor-data-binding/castor + + + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + https://github.com/castor-data-binding/castor/issues + + + http://www.freelists.org/archive/castor.user + + + http://svn.sonatype.org/spice/trunk/oss/oss-parent-9/castor-parent/castor-xml + + + + + org.codehaus.castor + castor-core + 1.4.1 + Core functionality - Required by all other modules + + 656227c58ff71b4bdbc1da33048afce8 + b973333a7ce1b8017dccba68068023c9d17f9872 + b30bed484875776d442b70acd15e2c71b3c7184d8d558198bae815a6ef80c9e6 + 8bb5742bf213aaba2de79f509fb78d9c72b7ee0e8d3a9ccf7e78b92f1f51dfbb52e3defd710271fcfa5c59242843b4f20c40a7621a0c11530830cb33390a8d40 + efeea9ca41ad6803bc1a45a2ff53aec4097a6699e36a310f56423f9b55d592b7ae04e3b4b16032c4ff175a6641b05d64 + 62cf9c93f41075f3f7f4bf15fa8df2815b51595734ec76b74d8af4d49e0ca4a68b79ba00b573ad4cae5c519281841ae6 + fcdc2693f1d738dd3fa37ad45ad69cf0578033e07f5ed7f073388287d2ba3e31 + 9c342160c91d550ad2daecb2012883d2556e39a1c05fc2b2fae69180ea11ad05a6df0aa26d8ff12ed9e7116d4012db3d2630e79b649e1f2d952b2bb5dc188d7d + + + pkg:maven/org.codehaus.castor/castor-core@1.4.1?type=jar + + + https://github.com/castor-data-binding/castor/castor-core + + + https://travis-ci.org/castor-data-binding/castor + + + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + https://github.com/castor-data-binding/castor/issues + + + http://www.freelists.org/archive/castor.user + + + http://svn.sonatype.org/spice/trunk/oss/oss-parent-9/castor-parent/castor-core + + + + + The Apache Software Foundation + org.apache.commons + commons-lang3 + 3.4 + Apache Commons Lang, a package of Java utility classes for the + classes that are in java.lang's hierarchy, or are considered to be so + standard as to justify existence in java.lang. + + 8667a442ee77e509fbe8176b94726eb2 + 5fe28b9518e58819180a43a850fbc0dd24b7c050 + 734c8356420cc8e30c795d64fd1fcd5d44ea9d90342a2cc3262c5158fbc6d98b + b1b556692341a240f8b81f8f71b8b5c0225ccf857ce1b185e7fe6d7a9bb2a4d77823496cd6e2697a20386e7f3ba02d476a0e4ff38071367beb3090104544922d + 961bd98a9b176b23f6162fa26b887ea54e970815f6ad10c5f98c0d8a35d6f056c19a46889bb380947a741daf7bc264cd + 6746ace68a264a099c275146576b709fd5482243e029bb2ed9db6717f90bcd11944be3673e5971310bf2cfaeee8dd436 + 8096cfb0e8b1042bff04a5f871ef3c8eb9dceb72ff7630e403b01d76d825f9f8 + 73e0beadfe538fa89c645766540dd423ee904433ac1e9e5e86de0a3f85196ef34130667950ec96aa7aa3761deed5885d2080753eaa4be5225d9b5c1f8f0d51a9 + + + + Apache-2.0 + + + pkg:maven/org.apache.commons/commons-lang3@3.4?type=jar + + + http://commons.apache.org/proper/commons-lang/ + + + https://continuum-ci.apache.org/ + + + https://repository.apache.org/service/local/staging/deploy/maven2 + + + http://issues.apache.org/jira/browse/LANG + + + http://mail-archives.apache.org/mod_mbox/commons-user/ + + + http://svn.apache.org/viewvc/commons/proper/lang/tags/LANG_3_4 + + + + + javax.inject + javax.inject + 1 + The javax.inject API + + 289075e48b909e9e74e6c915b3631d2e + 6975da39a7040257bd51d21a231b76c915872d38 + 91c77044a50c481636c32d916fd89c9118a72195390452c81065080f957de7ff + e126b7ccf3e42fd1984a0beef1004a7269a337c202e59e04e8e2af714280d2f2d8d2ba5e6f59481b8dcd34aaf35c966a688d0b48ec7e96f102c274dc0d3b381e + ac04c9f03ccbe35a25deb8b50280a0ca01dbe6aff0dd795d55af6112bfe3cd5817eb82f32fb18378d86cd64b07597190 + fca090ecb1edeacb9fe865dc515cd1d109b323cd742d4a9733ff199a96ee96e0db4f924079520b9c189ef750f255475d + 5b0054e39e522de0e0ffc4034d12f72270291fb24d94d5ffc9c4d69c25035fc6 + fb290f5a70b1efc1dff12f40a0b2d7b94019f66da42e78010c0b8e61f222c4f267b67e356a9e9c346eb801e5515e36243888f280c5cb95c2dd69016a30cadeb9 + + + + Apache-2.0 + + + pkg:maven/javax.inject/javax.inject@1?type=jar + + + http://code.google.com/p/atinject/ + + + http://code.google.com/p/atinject/source/checkout + + + + + FasterXML + com.fasterxml.jackson.core + jackson-core + 2.13.1 + Core Jackson processing abstractions (aka Streaming API), implementation for JSON + optional + + b5cf9290dc96e215e77f274794d5238e + 51ae921a2ed1e06ca8876f12f32f265e83c0b2b8 + 8be6935cd8f9673ac684a589aaa1caecd57dee7c37ed1443d17924325799003d + a4e6890da21978dcca5ff5ad1807e19533c0638973d3d293e3271ad31664ca7713beb69a462bfb6535dd1b2a1fa5d2741ddfcce94e51167fcf9a1df119f4b92d + 7c2f35993eea6e4ceed39018b4f6257524907978cce7088628b9aa4c3b1ebb9f2e1e7d415d6d0c2f45f3fc9bf74b4943 + deabe1d678acecdd35963f70bd653834112982fc5c772d139304d1621e507585b83f85aab7b9582f98ef3937b0b5879d + e940c4cf840936bb465e195213331d3a444999573b272a201523f5cc385a9c82 + 2f59a6eb97da6f2afe49bca38d68c9ee6148c28b2234e4e30178a855b81fd18e89e2a066bcf67360f571bd236f1f1e58e738df8b0c6329e83bda0b32cf3eb1ae + + + + Apache-2.0 + + + pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.1?type=jar + + + https://github.com/FasterXML/jackson-core + + + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + https://github.com/FasterXML/jackson-core/issues + + + http://github.com/FasterXML/jackson-core + + + + + FasterXML + com.fasterxml.jackson.core + jackson-databind + 2.13.1 + General data-binding functionality for Jackson: works on core streaming API + optional + + 15699c52197c95cd66fb722ac93fc07c + 698b2d2b15d9a1b7aae025f1d9f576842285e7f6 + 56cfbdc9e1736b5c56b43757f6cf546ee6d49393c79383c4e495c4f7047cb506 + ef7a1a434a89d286612688d18f52036a400c85ea115cc7d5bf6f9e066881b49eb9d1bee9ef6466767ea35e565f717d853c727bd87d6e05df7064e57537ea218a + 8feea2cd04ad6db9c7b5600fcb2cd98b487536d9e7f54d86420aa98173bddde00a66af31dbe9fca2bafbb6406a396d51 + c2f99dce211999b9b9a35478e17e01c8ada2a6c18ef86575110a912934a872827ca2a7dd9dbd851684e963239773bd1f + 5243d92a55077eb3c21c042b164cfde85f68278d329d56125f4fd384f439000a + 58a10ce7506e8871896a1083ef944dcebdd7169efb35174c99371980bb93e5256f61bdb977d47d310491fae88d737ef119eefdf7a7c38d337bdeff1bb4c2d3c9 + + + + Apache-2.0 + + + pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.1?type=jar + + + http://github.com/FasterXML/jackson + + + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + https://github.com/FasterXML/jackson-databind/issues + + + http://github.com/FasterXML/jackson-databind + + + + + FasterXML + com.fasterxml.jackson.core + jackson-annotations + 2.13.1 + Core annotations used for value types, used by Jackson data binding package. + optional + + 9e2bb0894ba131c20c874331c9c04adc + 1cbcbe4623113e6af92ccaa89884a345270f1a87 + ab607939d288e22bff4cb97acc6b25e841d82681f2bc40ce67bb35cb0ffdb06d + c031040352d4b219e89d7d8989c51931a09820345edd58ae9f575f8b1e27be000215dcbe6c06ff9fa758b7baf59461d04a70100eade8156b4b18af2bb2d20728 + af889d93559c60d4c2de16a22468e192b69a601b2f22be04bae88c880e0553aa12b74d60a251fe62d6ab2adfd6db00c1 + 500febef47227e3a2b8c75818614c5c7e43d8a75e91e8139f94e3b1988942c3659bef821b85f8e2a5e8523ca32277848 + 34ba346a7ace4bb73f9791df4348b7b2f91057d410ae4ac15a5868414c61c5b7 + e8c450af2a9e6ee25e0d2741e894dba0115750780d0ae5944b72b4b0e76aebff2ed18b2084eef2e156128753577da45fc3009414a25dd034372eb663d27894f6 + + + + Apache-2.0 + + + pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.1?type=jar + + + http://github.com/FasterXML/jackson + + + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + https://github.com/FasterXML/jackson-annotations/issues + + + http://github.com/FasterXML/jackson-annotations + + + + + x.site.projx + projx-report + LATEST-SNAPSHOT + Provides projx Jasper report definitions + + pkg:maven/x.site.projx/projx-report@LATEST-SNAPSHOT?type=jar + + + https://artifactory.at.some.sitel/artifactory/projx-Releases + + + + + x.site.projx + projx-client + LATEST-SNAPSHOT + projx Support and Expeditionary Planning Tool + + pkg:maven/x.site.projx/projx-client@LATEST-SNAPSHOT?type=jar + + + https://artifactory.at.some.sitel/artifactory/projx-Releases + + + + + x.site.projx + projx-security-common + LATEST-SNAPSHOT + projx Support and Expeditionary Planning Tool + + pkg:maven/x.site.projx/projx-security-common@LATEST-SNAPSHOT?type=jar + + + https://artifactory.at.some.sitel/artifactory/projx-Releases + + + + + GlassFish Community + javax.servlet + javax.servlet-api + 3.1.0 + Java.net - The Source for Java Technology Collaboration + optional + + 79de69e9f5ed8c7fcb8342585732bbf7 + 3cd63d075497751784b2fa84be59432f4905bf7c + af456b2dd41c4e82cf54f3e743bc678973d9fe35bd4d3071fa05c7e5333b8482 + 32f7e3565c6cdf3d9a562f8fd597fe5059af0cf6b05b772a144a74bbc95927ac275eb38374538ec1c72adcce4c8e1e2c9f774a7b545db56b8085af0065e4a1e5 + 8bf960fd053ef6ad1c3535824311f676b9ad537678b85f855dd5d6d726e391f8a7be9c9c76a8ae3ce8bfe671c1e2c942 + e8f3282c08ceeed02947a13e886a3d75a6ea63e4f869a0e0bcbcf622e7cbffc81ed7bc045e82820443b6572c897cc4cc + 8acc3481503989e1a78ad619bcbdc005b616c13736522b52e5ae5d782e8a0216 + ab5f85d424640ddcf6fc13a41d12ffdee0be9508cd4cdc581168b31cf7917323f6e0d984a0631068e0e01c098098fe0037d1c4176352fd89ba3a4da5d641ca3d + + + (CDDL-1.0 OR GPL-2.0-with-classpath-exception) + + pkg:maven/javax.servlet/javax.servlet-api@3.1.0?type=jar + + + http://servlet-spec.java.net + + + https://maven.java.net/service/local/staging/deploy/maven2/ + + + http://java.net/jira/browse/SERVLET_SPEC + + + users@servlet-spec.java.net + + + http://java.net/projects/glassfish/sources/svn/show/tags/javax.servlet-api-3.1.0 + + + + + The Apache Software Foundation + org.apache.shiro + shiro-core + 1.9.0 + Apache Shiro is a powerful and flexible open-source security framework that cleanly handles + authentication, authorization, enterprise session management, single sign-on and cryptography services. + optional + + ed5ccbcd06956e10cabd689ab269c176 + 648bd126732860869db0c3ca328eb6e0bd999fea + c5b46f06c353c1a8d16574550e50b9bcee20cce932ed14746eb9376d67fceff9 + db537c8f8cfe4ee3bb81f5cc1693ed505eb4baf896c992fd6ef9de7e4c5721730e7cc0cfb285be74e3fa3c2b4d37f755a6f405700d916d3dfd2f22c9560deffb + 7d56d8ea58b860f03ea32bcf715317d16fdaf794dd11a5016d07318c0abb551bccae5b8d2a190f917220f20c1eb1ac8b + b987e99e820623f5005544f1185dd1db9df449fc126ad935fb4db94353806577b01924358a5ba6715a28082c40129ba5 + 70778baa502a58000e6ec7223c98bb2be53e3563446aba192c93c5c2c14a6455 + 60b791361921da6aaf49dfb02e78001d279c8537dc2d332510d14ab05b9cd2fce5ea5170f176a969cb9e222ad6093875e4c67e6a2a19b6e05dfdc96e1d327255 + + + + Apache-2.0 + + + pkg:maven/org.apache.shiro/shiro-core@1.9.0?type=jar + + + https://shiro.apache.org/shiro-core/ + + + https://builds.apache.org/job/Shiro/ + + + https://shiro.apache.org/download.html + + + https://issues.apache.org/jira/browse/SHIRO + + + user-subscribe@shiro.apache.org + + + https://github.com/apache/shiro/tree/shiro-root-1.9.0/shiro-core + + + + + The Apache Software Foundation + org.apache.shiro + shiro-lang + 1.9.0 + The lang module encapsulates only language-specific utilities that are used by various + other modules. It exists to augment what we would have liked to see in the JDK but does not exist. + + 88d939d2b5e1952af341308295799afa + 4126abe923c3339238757eab834d9389455b9401 + 473a79cd7d603ca934c5d9ba7beaa6a4bccb6ffad59b334c427d096686695a86 + 4eff566ac71bd6c24ea51d02478b305edde61cc5b3305542fb1a9dd0df582efe7622c607a568bc2580de60911f2e4989a67552233f6e0dc0a49672320bc44372 + 461d44e19337f7f52c1c14b45c70d6e88f38d203ad4120e8654d26d570fdd900dcd1ae2e71f011a839f449bdbd1efaa8 + b61d59e76f3b650eada965feb373de5c1f9c86cea11b3582ad5fa7abd029119b49fa1f8ea8468c00d4767f697ad01598 + 0752088f12411e7e1bd2deeab8ad5bdc346d8aeb5ddd4d2e85496ce43d50048a + 6f504ddc5b2c2439e77a62c15fef661977ee873c73c3fafc8be4340b3045e76c286b1f92e25b26b3ed8be866a71eb1f9a6d8a6ac098abd7a1187a1d3c3890aff + + + + Apache-2.0 + + + pkg:maven/org.apache.shiro/shiro-lang@1.9.0?type=jar + + + https://shiro.apache.org/shiro-lang/ + + + https://builds.apache.org/job/Shiro/ + + + https://shiro.apache.org/download.html + + + https://issues.apache.org/jira/browse/SHIRO + + + user-subscribe@shiro.apache.org + + + https://github.com/apache/shiro/tree/shiro-root-1.9.0/shiro-lang + + + + + QOS.ch + org.slf4j + slf4j-api + 1.7.26 + The slf4j API + + 60ec8751be37d54a2aa1b6178f87b968 + 77100a62c2e6f04b53977b9f541044d7d722693d + 6d9e5b86cfd1dd44c676899285b5bb4fa0d371cf583e8164f9c8a0366553242b + a944468440a883bb3bde1f78d39abe43a90b6091fd9f1a70430ac10ea91b308b2ef035e4836d68ba97afdba2b04f62edece204278aaa416276a5f8596f8688af + 09457f1d7bb48746a7f25722a71ffe63d7c893e38caff3ea67ce79992dee52bf20edb9e38c153147da2c38bc94d4c9bd + 4502b87772a1e1cbce3fbdf64dd1423f2880b89b72306f07ae39d7a2819d4a654a9cefe2d7b4e1abbb6d86787cc630c0 + 195320dbd33e0ecc96b7c23818454658870c7f4c7bb746dae4516bc4983ab158 + 830b0c50cdd9f45cfe4be31f0c775f632399060db58050ce702e476321ef29dcc17f49f872e7023e995c6ee1c2e06f2f1ea115aa45807569ecef83af3385f5cc + + + + MIT + https://opensource.org/licenses/MIT + + + pkg:maven/org.slf4j/slf4j-api@1.7.26?type=jar + + + http://www.slf4j.org + + + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + https://github.com/qos-ch/slf4j/slf4j-api + + + + + The Apache Software Foundation + org.apache.shiro + shiro-cache + 1.9.0 + Apache Shiro is a powerful and flexible open-source security framework that cleanly handles + authentication, authorization, enterprise session management, single sign-on and cryptography services. + + cab34e9ca28d5d279b9dde01adbce86b + f4973b2f88f3c13009da59bd3fae80fb0a090c20 + 7c0be1777c0bdf3c646c7d43b474145707da59ace8264d8d34d29a8248f4fddf + 3a4dd6aa2dbd4c9fa320b6886fca75266e46b5deb20f34f521b5edb62acdbf2a0d67bbbad57f817765e452fd61956a30392f03328d9d3a401433cdefe759410a + 4e81091b4ce0b7a616e098d09cbc7082c556c97343bc6686a16bfe6aa49900ba8e6ec8b9f834d77fd7f4cfb814eeb4da + 5472ca324b118d76864fd60deaf46e7fd5977ba70373f20475afc51bc9c902bd66367eae52c15a447443c4bdc0636c08 + 34b34bd3de4d377cb8d88f216e7cf7b6ab6ed7ad5830d291ca4bc7143fc04b17 + 21c879851160b2f022c1820be1414d3c033ad69cac34add5c0f482f43de95d86e20cc3056470263cb24c48baa3877e0882d854ab3ed396622eed767a774ecb1f + + + + Apache-2.0 + + + pkg:maven/org.apache.shiro/shiro-cache@1.9.0?type=jar + + + https://shiro.apache.org/shiro-cache/ + + + https://builds.apache.org/job/Shiro/ + + + https://shiro.apache.org/download.html + + + https://issues.apache.org/jira/browse/SHIRO + + + user-subscribe@shiro.apache.org + + + https://github.com/apache/shiro/tree/shiro-root-1.9.0/shiro-cache + + + + + The Apache Software Foundation + org.apache.shiro + shiro-crypto-hash + 1.9.0 + Apache Shiro is a powerful and flexible open-source security framework that cleanly handles + authentication, authorization, enterprise session management, single sign-on and cryptography services. + + cc270c6f93a3dcd70cd4a63b4b05630f + 89d8744786ed344f0bec37934a9dbe23a2484c69 + 90c9062889405b7d7daeb40765c7ccc55e67345f0343326a2c9680cfd6fd00c2 + 04b5bd2611f153c352c729738ae997c5882a7168378dd59674b1f2c27cae01950834d446ac3bcc4c83badbbf9fa07d1f8c8e43ceb7377fbafcd77a7dcef9db2c + 61d22924081da3213e7099080d9f76d2fa8b01af458e54f2565a957b6558bdbe744d69668ac8fe67de6d16592f81484f + 6c7b801a02039dd5912719d16cec9c24c43f01159f4021141d5ca6a931e521548ef602a3134a7253ee4f36135df64ce4 + 21c32adc4a3b08ae2f28daf17b9f235b06869c8ecd4910faa1ad957de040a110 + a703a785b94e4d1f2d506f862a8cb4c9ddbb7dc9e66df74048ad4870709b687f614c3b6c8f0c48c3509e25b388f40a9c5f577e8957eeee4800c6d5f458f3344f + + + + Apache-2.0 + + + pkg:maven/org.apache.shiro/shiro-crypto-hash@1.9.0?type=jar + + + https://shiro.apache.org/shiro-crypto/shiro-crypto-hash/ + + + https://builds.apache.org/job/Shiro/ + + + https://shiro.apache.org/download.html + + + https://issues.apache.org/jira/browse/SHIRO + + + user-subscribe@shiro.apache.org + + + https://github.com/apache/shiro/tree/shiro-root-1.9.0/shiro-crypto/shiro-crypto-hash + + + + + The Apache Software Foundation + org.apache.shiro + shiro-crypto-core + 1.9.0 + Apache Shiro is a powerful and flexible open-source security framework that cleanly handles + authentication, authorization, enterprise session management, single sign-on and cryptography services. + + b7b222a8826c26ee04582f873f1a8279 + 2557439ae6843136726404d28d5df78746bca0aa + 1163086012a89ab9469a7bd4bbb8f69a94bde6283b05ae7cc7a441d294bde3b1 + f13a8a65df66d903e97afc0ba9eaad48043e193f147510bb1c993ff90c9c2416831662c0cccccc43b0c6518c905c8b4c4f9d0cc75a93b1fb6dfa7a815727b3ba + cbd71be60869080eff82c1f6bec59f131120893dcb7ff4cd140fede50a3fee13c19e01ec40edb2e63c15ac731df77a68 + ba1333ae18aa610602dd1587ad4f2f6c780ca63e132abc7b09d69c1d804942bc72fbdf42dd371ad8ed53b9cd488bc258 + 9b086ba2c005cd3eac9025a8e3419c96cd92683b2b042c33ab27928d6be5f562 + 930169d2ae719620cedc987f16044deb5055267fdb22c4d0110f98a0282ac9a21293c68657fa81ef73a6b2171d525f885c8a291edcbdd4f7dd0d487d93fbd791 + + + + Apache-2.0 + + + pkg:maven/org.apache.shiro/shiro-crypto-core@1.9.0?type=jar + + + https://shiro.apache.org/shiro-crypto/shiro-crypto-core/ + + + https://builds.apache.org/job/Shiro/ + + + https://shiro.apache.org/download.html + + + https://issues.apache.org/jira/browse/SHIRO + + + user-subscribe@shiro.apache.org + + + https://github.com/apache/shiro/tree/shiro-root-1.9.0/shiro-crypto/shiro-crypto-core + + + + + The Apache Software Foundation + org.apache.shiro + shiro-crypto-cipher + 1.9.0 + Apache Shiro is a powerful and flexible open-source security framework that cleanly handles + authentication, authorization, enterprise session management, single sign-on and cryptography services. + + da91f70a082e3591ca8a3dd9911c518a + 9db1381f3e77a464b478df478b943c774d038b43 + afbb7c9d47b0b8fa15c443564d399332e52c55cba520a3171ba565f2dcf54b00 + 99e5eb5a29a54e20a1b15e02fc6ebdaa62d74e9fd94fda644a14b5309f7694d95ac496e176c88831fc2d3c725d56566e4742928ce436ccff825124a74b97ceba + b677435f8ae6567603e1ab63ca50d677dd1cb4aa568e2e36b029fb6442239fbd0c9caa12e609766fe9d25b39b26948ce + 259fb3e44ce6e62238913628b6459f6fd3c4fd2e10d27d6d60f6a78d65d0cb0a216675325566ccdbb1fe5ef30142bb07 + 901fd755cc6c3727af3ad9b7c1702778686e8faae17b1368b202a717da39b8c6 + a35e84a5079347953dad47ee98ab89174ca8a927ac2572d3034e10ea19a0d1680b0832708de291bc9adfe491edf894258043788a30b1b29416e7c3a20852a7f3 + + + + Apache-2.0 + + + pkg:maven/org.apache.shiro/shiro-crypto-cipher@1.9.0?type=jar + + + https://shiro.apache.org/shiro-crypto/shiro-crypto-cipher/ + + + https://builds.apache.org/job/Shiro/ + + + https://shiro.apache.org/download.html + + + https://issues.apache.org/jira/browse/SHIRO + + + user-subscribe@shiro.apache.org + + + https://github.com/apache/shiro/tree/shiro-root-1.9.0/shiro-crypto/shiro-crypto-cipher + + + + + The Apache Software Foundation + org.apache.shiro + shiro-config-core + 1.9.0 + Apache Shiro is a powerful and flexible open-source security framework that cleanly handles + authentication, authorization, enterprise session management, single sign-on and cryptography services. + + 24a9f6faec848ebd2d7ca00fe61410f8 + 62252fee4a781b487b360bd1251c5db075486d78 + 449f974a4dff8d4e1c05502a9c4d7ab9bb0474b31a3301d734b027329d36d7bb + cc5f69d316dc2bc05c09e608adb62233962ddee87bc657061626c5932bd62a928645744fb64c22674c019d1698e58b608a80f6c5f004aff9c0a6501b4277aa92 + 4ae7a9d336aacb261f941aca1aff684929c246b3263dfd2b3b2138a5e59e94d100db5ec6d4be98735b2327d817c46629 + 16f4b73ea49fb67efee8ab73c4423323a5240291c39640e3b7b57b271d2ef39442100dc1c270c82ec8f118dc02d1857e + 5e65a7e18d19c52890a5978f2d6708416819689b082032c541c3a43749a03fe9 + f1de4f257f1846c47c84987d90b34c1dac865407750d38b1f41ce14f6a3db9bc17ae2a5a589d3273a70072d0bae1c909bf08ada9f7815532c97c25586338afa5 + + + + Apache-2.0 + + + pkg:maven/org.apache.shiro/shiro-config-core@1.9.0?type=jar + + + https://shiro.apache.org/shiro-config/shiro-config-core/ + + + https://builds.apache.org/job/Shiro/ + + + https://shiro.apache.org/download.html + + + https://issues.apache.org/jira/browse/SHIRO + + + user-subscribe@shiro.apache.org + + + https://github.com/apache/shiro/tree/shiro-root-1.9.0/shiro-config/shiro-config-core + + + + + The Apache Software Foundation + org.apache.shiro + shiro-config-ogdl + 1.9.0 + Support for Shiro's Object Graph Definition Language (mostly used in Ini configuration) where + declared name/value pairs are interpreted to create an object graph + + a6b7c31b7f718c3307ea6a1e62da86b6 + 7f89092b6c084cda9271d68d2208e855bd7af54d + f255940d36864441854ad9ec70642acd99ddd8869e2b51e7efa59f463d343c8f + 0e636e2066f23afe018f32a9f72099bc537686106677e8b183e4157aec1fc78b161f8e5b33af3f7adcb6d268689dfe2f161081685c36d8268e983c32425c4567 + 5ddeb6d44dfd1f79e4f7c35eaa2f397fef80ba568dcf85255b2215b81e945ed1d93c287339b6ba9f8c6962192cb7c72c + f9342d52f8ce8bf39d66502ea033a80da00ee9eed30577698469753669a252e60d9e392165c14a458f431da8022ca0c0 + 81b7f1b898bb2b33d491394efba3375b42e2d7f38e5eb269e774b97d5f519330 + e4bfb6a7aaf3b6ac6243fc3299be212c960f30809658672b0989d1883b2dad1de0e11cc96d61819d941776dea3a008a693d53c68878a1e76a82596752279f6bb + + + + Apache-2.0 + + + pkg:maven/org.apache.shiro/shiro-config-ogdl@1.9.0?type=jar + + + https://shiro.apache.org/shiro-config/shiro-config-ogdl/ + + + https://builds.apache.org/job/Shiro/ + + + https://shiro.apache.org/download.html + + + https://issues.apache.org/jira/browse/SHIRO + + + user-subscribe@shiro.apache.org + + + https://github.com/apache/shiro/tree/shiro-root-1.9.0/shiro-config/shiro-config-ogdl + + + + + The Apache Software Foundation + org.apache.shiro + shiro-event + 1.9.0 + Apache Shiro is a powerful and flexible open-source security framework that cleanly handles + authentication, authorization, enterprise session management, single sign-on and cryptography services. + + 208ef74e458fce975b5de40eac5dcfad + c0d2926638db6bc0ea124de1de9613b17de2a800 + a1242e9f4b175806751d42056d192d260cc1232eadb06a242cd83cd94bc1b09b + 32e8285fdb515e71d62395a6769f038ab69078e67dea91058f5c77f27db6c36a45cf52d53e58efd05dd4cb6fd7cef82661dd5304c982a2b78114cbcb8618042c + a78cec24fe342cb78b5020d95efaf51185af1ac153e6ee40de248618d0c57917d4f0afa02b1ad55693c49ada0a678ff9 + 0109e619fca7e07672606b128d32a32e66c7e3206744ffa05f3723a63a179846d264fe7e9e06badacf5cf44e410234cc + ccdd8d4a4731aa3f5d9185c8664d22ac274daa1f5712432f6898c2a2a193172f + 5fde1ef6d64216f7396ca32a4b12afb1622e3f7826bd9677e67c5426c04c1295d0e3dd8949a712e9b1b2c0fedafd04f0675de658c75da33606f2eb1ada6337a0 + + + + Apache-2.0 + + + pkg:maven/org.apache.shiro/shiro-event@1.9.0?type=jar + + + https://shiro.apache.org/shiro-event/ + + + https://builds.apache.org/job/Shiro/ + + + https://shiro.apache.org/download.html + + + https://issues.apache.org/jira/browse/SHIRO + + + user-subscribe@shiro.apache.org + + + https://github.com/apache/shiro/tree/shiro-root-1.9.0/shiro-event + + + + + x.site.projx + projx-web-common + LATEST-SNAPSHOT + pkg:maven/x.site.projx/projx-web-common@LATEST-SNAPSHOT?type=war + + + GlassFish Community + javax.annotation + javax.annotation-api + 1.3.2 + Common Annotations for the JavaTM Platform API + optional + + 2ab1973eefffaa2aeec47d50b9e40b9d + 934c04d3cfef185a8008e7bf34331b79730a9d43 + e04ba5195bcd555dc95650f7cc614d151e4bcd52d29a10b8aa2197f3ab89ab9b + 679cf44c3b9d635b43ed122a555d570292c3f0937c33871c40438a1a53e2058c80578694ec9466eac9e280e19bfb7a95b261594cc4c1161c85dc97df6235e553 + fc0058495e54efb6e05a34e3ff422e7c8347bcc77d6d9b87e9253424968dee6ef6a215c318d7e54f8705276be81f0682 + ed6464b715de6ced0d9981a3f28140824946a4b7a02ffaff6116c833bb36e8f77a6282ce63c0d82cfe841d4fd6916891 + ecfc9bef24ae28cf94c6775ecf6e2086d90a25d8d5476a4f6bb24001601b6cd0 + f2b333527faedf504f60aa70a3d491972fa76f7e61e6351027f74613f41001157656824fe312b6e1df6dc4979704fe2a745b618d5368a97fe0bf8749739de9e2 + + + (CDDL-1.0 OR GPL-2.0-with-classpath-exception) + + pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar + + + http://jcp.org/en/jsr/detail?id=250 + + + https://maven.java.net/service/local/staging/deploy/maven2/ + + + https://github.com/javaee/javax.annotation/issues + + + javaee-spec@javaee.groups.io + + + https://github.com/javaee/javax.annotation + + + + + The Apache Software Foundation + commons-io + commons-io + 2.11.0 + The Apache Commons IO library contains utility classes, stream implementations, file filters, +file comparators, endian transformation classes, and much more. + optional + + 3b4b7ccfaeceeac240b804839ee1a1ca + a2503f302b11ebde7ebc3df41daebe0e4eea3689 + 961b2f6d87dbacc5d54abf45ab7a6e2495f89b75598962d8c723cea9bc210908 + 5bd78eed456ede30119319c5bed8e3e4c443b6fd7bdb3a7a5686647bd83094d0c3e2832a7575cfb60e4ef25f08106b93476939d3adcfecf5533cc030b3039e10 + 114f1e324d90ad887c177876d410f5787a8e8da6c48d4b2862d365802c0efded3a88cb24046976bf6276cadad3712f0f + 80288c03ad4d80d69f91d056ffc5570d49a9c76bf54ad2dff0121ecde26a560df76d05156f281f5c6db2a38ff07a873d + 5adfb5ccaf5f21a549422f426118a9542673926fcd18c68390cf813e791dcf6c + 7573f47f0babb53cefdc7c2309a0b982d800139064537b0797da442853d081010ad7c3c74a500598a0f800639a5d540eca21963ea652c68613907059bd4278c2 + + + + Apache-2.0 + + + pkg:maven/commons-io/commons-io@2.11.0?type=jar + + + https://commons.apache.org/proper/commons-io/ + + + https://builds.apache.org/ + + + https://repository.apache.org/service/local/staging/deploy/maven2 + + + https://issues.apache.org/jira/browse/IO + + + https://mail-archives.apache.org/mod_mbox/commons-user/ + + + https://gitbox.apache.org/repos/asf?p=commons-io.git + + + + + The Apache Software Foundation + commons-fileupload + commons-fileupload + 1.4 + The Apache Commons FileUpload component provides a simple yet flexible means of adding support for multipart + file upload functionality to servlets and web applications. + optional + + 0c3b924dcaaa90c3fb93fe04ae96a35e + f95188e3d372e20e7328706c37ef366e5d7859b0 + a4ec02336f49253ea50405698b79232b8c5cbf02cb60df3a674d77a749a1def7 + a8780b7dd7ab68f9e1df38e77a5207c45ff50ec53d8b1476570d069edc8f59e52fb1d0fc534d7e513ac5a01b385ba73c320794c82369a72bd6d817a3b3b21f39 + 44cdd747167bdee191338aec19cb917f379f78503700b6340b3b45ed4107b908bb276ef53606fc140110664091ae60aa + 70fe5879cc76604a00f3dba10f8dbd17cae97dc745f5d5dfa37a3c494c8365c50e5ff029438057aef7905ead4cfef5c3 + f2f55c8a8e4d346f53adf03c33359661aef27008ae4c4183d870eb5df876e98b + 0150ed2459bbfec53af1201584a601fe79ccc6aba9a5713602cd24d2631cde52d9a2702260077436b2821f2c28e0ca4c8dc83f0a2665498af60c43180b962909 + + + + Apache-2.0 + + + pkg:maven/commons-fileupload/commons-fileupload@1.4?type=jar + + + http://commons.apache.org/proper/commons-fileupload/ + + + https://builds.apache.org/ + + + https://repository.apache.org/service/local/staging/deploy/maven2 + + + http://issues.apache.org/jira/browse/FILEUPLOAD + + + http://mail-archives.apache.org/mod_mbox/commons-user/ + + + https://git-wip-us.apache.org/repos/asf?p=commons-fileupload.git + + + + + The Apache Software Foundation + org.apache.commons + commons-lang3 + 3.12.0 + Apache Commons Lang, a package of Java utility classes for the + classes that are in java.lang's hierarchy, or are considered to be so + standard as to justify existence in java.lang. + optional + + 19fe50567358922bdad277959ea69545 + c6842c86792ff03b9f1d1fe2aab8dc23aa6c6f0e + d919d904486c037f8d193412da0c92e22a9fa24230b9d67a57855c5c31c7e94e + fbdbc0943cb3498b0148e86a39b773f97c8e6013740f72dbc727faeabea402073e2cc8c4d68198e5fc6b08a13b7700236292e99d4785f2c9989f2e5fac11fd81 + c34b8a0e0eba2168ad56fedeb7a1d710b6f1d3f1ce6aae99a4e0247bd120efbbadc8dcb2f731045b8a16e3efd30604dc + 8ad6ebe7754bf0caa8cda7e59c0e95360d76e06a7ad6aeec5637985519dbd1dd06e7eed04711039f36ec4c49de280def + 18ef639b2aeeb5aedffb18dbf20c79f33e300d99fb31b131689639cc470e6e4c + fbea96114dcf4f31cfaaa99987be756ddda3a6c74f8c835461997df794d54b92da1f60fe5c3f1f2a43cb8c5f5db7f4048bef77c70993673c7a93f3660fffc8da + + + + Apache-2.0 + + + pkg:maven/org.apache.commons/commons-lang3@3.12.0?type=jar + + + https://commons.apache.org/proper/commons-lang/ + + + https://builds.apache.org/ + + + https://repository.apache.org/service/local/staging/deploy/maven2 + + + https://issues.apache.org/jira/browse/LANG + + + https://mail-archives.apache.org/mod_mbox/commons-user/ + + + https://gitbox.apache.org/repos/asf?p=commons-lang.git + + + + + The Apache Software Foundation + org.apache.commons + commons-text + 1.10.0 + Apache Commons Text is a library focused on algorithms working on strings. + optional + + 4afc9bfa2d31dbf7330c98fcc954b892 + 3363381aef8cef2dbc1023b3e3a9433b08b64e01 + 770cd903fa7b604d1f7ef7ba17f84108667294b2b478be8ed1af3bffb4ae0018 + afd836a1094449e0a791fee67363666c47b6d24acff353a5089b837b332c0f4af89565c354682521e37062d20e6b52d70c77bb4f24cca9b9532c274fc708a831 + 06c56e6e513dd77cf10d0da46cdea08c34e220e81fa024735b668c6650df4234e564fe865ff5cafea963f56b1e8ffd4a + f09065ed066c25debf8c78cbb0bcc738e1ea283302ec992dcfb649acb90091cff879465c65a162e94534d454e3b4e9bb + 0b59c567164bb755f2353b78ba66744000a8c4b35e1df05255b080a21c3a3dd5 + f0fbce02a862b70f472a27d0722c54ac111ca2eb94584b8b0b73d1926aec26047cd92542ad0b3cf980a6825077587f41b194aa93d6f6350d1b87e59e8df1be7c + + + + Apache-2.0 + + + pkg:maven/org.apache.commons/commons-text@1.10.0?type=jar + + + https://commons.apache.org/proper/commons-text + + + https://github.com/apache/commons-parent/actions + + + https://repository.apache.org/service/local/staging/deploy/maven2 + + + https://issues.apache.org/jira/browse/TEXT + + + https://mail-archives.apache.org/mod_mbox/commons-user/ + + + https://gitbox.apache.org/repos/asf?p=commons-text.git + + + + + Spring IO + org.springframework + spring-web + 5.3.22 + Spring Web + optional + + 6096e895ba3cd63edbf3aa2ee21b84a9 + fdab9b8d8df2e6a8fb90f2481c361bcf2c129567 + d201925a5f619a5f51107ed07043a847c645773165c954bc34fa5983fa043f1f + c56a00c97d3b5c432cea48d3e794eb0d3999d6c6439d70b13365db623c41c7ab9ce065bb58388bd38572a6ba54bbf357793e520de0a07dcb42967e4e167e5b4c + d47ed3e83dea9006de8940cae1b440597a7cd869532e057f19e75e4bdca5653f10b9de0213665bdeb6286cac64a7c852 + ed323b4a5de35d92ed413d86a4eded4f133dbff4da548e2e34e98f6abd56c53141887c50ed024c0f45b5e48d7937621a + 1b45711721eec8e6a3ba4b208652837db29ffa95eca667b94c9e07a48694607c + f25311622862d97104aa8839d369bdf9066890e514412ea03865674559a4e1081a652606c786d44a4cd4645d5fba4022d3f10afdddc4607164cfd579165c303a + + + + Apache-2.0 + + + pkg:maven/org.springframework/spring-web@5.3.22?type=jar + + + https://github.com/spring-projects/spring-framework + + + https://github.com/spring-projects/spring-framework/issues + + + https://github.com/spring-projects/spring-framework + + + + + Spring IO + org.springframework + spring-core + 5.3.22 + Spring Core + + 8f768c0706314fb9c71cd5db24a6225a + 661fc01832716c7eedebf995c6841b2f7117c63d + 6e97fb95215c583b06098c0a73d27237c6165ccd4f8103e2ded40303382bcba3 + bc3ca0449e24fa0acdc165bba7d7e44adeac326a022a07de89044001c447a337f5eb8105d76872684a75f5d8e72822011367e79bd2f81ba185678883ddd772a2 + fd8e922517794d3f1acd7b37da1450594a7eaf92f0148c513b2714e28bc19c0f174af33993b093e90e8a851abe2328e6 + 1ec6036d92de7d4090005e89e9460f52b392ef10fe8c9129aba6fab2489c21bf45db65ee60dc66b7adae88b4a7d8e2dc + 891916b8b4fb95c0041e259fdabc1cdc9d65ae32c916e2a0a3427fe4b50f9980 + df2fc08bba65aa8c13f7cd52e9dd72ea99dbdc0a3ace4c62d95d59a243dfcf27a62fc425add0d8f36ecfbc7e91a0bcf2b653b86ad961498dfa74a3ce86dce725 + + + + Apache-2.0 + + + pkg:maven/org.springframework/spring-core@5.3.22?type=jar + + + https://github.com/spring-projects/spring-framework + + + https://github.com/spring-projects/spring-framework/issues + + + https://github.com/spring-projects/spring-framework + + + + + Spring IO + org.springframework + spring-jcl + 5.3.22 + Spring Commons Logging Bridge + + ee2f0e6c61acc47fa33c908177c921c0 + 811ace5e5eb379654ed96fd7844809db51af74a5 + 9850007771da9a266a1c8176a7a8387cc33603f5f92dc753afc846dec125c880 + e4512c191cfb926839aebddea52a214f8571b9062825bda5ad45c7a589fb5e345131f3dac6d44ffb4eab9704036676efe6d58e75d294e7d26deb5de853f22978 + ded00cbc79e55bff47528595d20c36146b0b0d6aced22b72342c27aad1b3237dfb7542dbd056eeaec8fc1d92f5a0e535 + 57d31acfbedb31488cc7073e6218a084b5d65e558878762a94dd792fa816fc16843dc9f0628150b216f17ab5f133204e + 1e82255ab13f7488754caf3435d93d7593e944db55b992500c6e58db2dfcde00 + 1eddaca8eb29cef32c1450093011fb678e4fa7ac878d234a6041c54f34b24b53ccc41c2f9d6b7b0fb69250337477364f5691ad7916a95952db7a76eefada8a15 + + + + Apache-2.0 + + + pkg:maven/org.springframework/spring-jcl@5.3.22?type=jar + + + https://github.com/spring-projects/spring-framework + + + https://github.com/spring-projects/spring-framework/issues + + + https://github.com/spring-projects/spring-framework + + + + + Spring IO + org.springframework + spring-webmvc + 5.3.22 + Spring Web MVC + optional + + 511ed52d5c8ffeedd6529bebcf9d86e8 + 519d86b7ac9b8b6bb54739eb4eb73dc13a263b28 + 243192abc127cd3544a7077c61575dd61b2fcd86a77a63c63cf119fc562fd961 + 3a3c4b0a5a01bad22bca5dc5239c01b0c39e9469600ffee268b28cdebe8d330f2c9d9f493914dffb66ef1802d88e71c3b4a1073315e899c3e37f267c1f265eb0 + c8baa3430c45ccd16463b88f3062fb55a5fa9afdf26b1b4bdabb719ff928ed8150fac86e7cd06e98c37a353c2d4fcdf2 + 58d19fef8d4597347b4fabd55bdb26cc8194bc4257f455546039d4f6bda0ae37b6acace7fb2b9f4ba2b38d279ed6e2e3 + caa43082d30e2d69dd549f72851ed7509ef8e1453ab48ba4702c095b137714d5 + b50f1a99318c786aa63bd0be6c51cefdac57cb3b42768f96d811c7b426915c6bb6d51f0c590b4742d2b915abd972210f05dc5be10536b89f094e543f3b898caa + + + + Apache-2.0 + + + pkg:maven/org.springframework/spring-webmvc@5.3.22?type=jar + + + https://github.com/spring-projects/spring-framework + + + https://github.com/spring-projects/spring-framework/issues + + + https://github.com/spring-projects/spring-framework + + + + + Spring IO + org.springframework + spring-aop + 5.3.22 + Spring AOP + + 8f59cdaf80f1836a9631b3e3c8513cb4 + 2f9f00efbff8432f145ccffeb93e6a1819bac362 + 52c0efeaa4528e30b805bbd3d908281d8488e487cd2a45d8e4d7b591e6b08e77 + 5e7be423124c37351400833fe713c0ed483815f0b52f25f2cb9bf8980214bdbb9fb982680d26f0ec0b5fc2562636d7bcb61fd537f00533469f48d942d827d9f5 + b43083391588b48f9b63acbb9a89a45f0a0aec3d18e37cbb299093adc73228f15290c90948930a0d62ea42030ebc102f + fff1ebcca8aab16ee4247548e54aa7de962af72ea2e93878adf5cada697eca79597dfcff847c881c15d6a76514d97d92 + 11f31d85aee8939a9f877cee143914d5f0e6e8e7644e16334bac6ece4eb5481c + e0132069cd4a02fab061f100ddad98b8a3c0bc7be87d3c970d39a4bdbdbaf74e93ad8091b4fa8fbfa6d4165e9b2f4f2738c8a5a470870cb2e9fed079d913159c + + + + Apache-2.0 + + + pkg:maven/org.springframework/spring-aop@5.3.22?type=jar + + + https://github.com/spring-projects/spring-framework + + + https://github.com/spring-projects/spring-framework/issues + + + https://github.com/spring-projects/spring-framework + + + + + Spring IO + org.springframework + spring-context + 5.3.22 + Spring Context + optional + + 3b00971f0b99194b13d5762ca319b9c5 + fdd59bb4795c7a399e95ec4a5c8b91103e3189fd + e7f9c4727c98aaf02542056f1c2c504dcdb4478f75c4baeb81ab15059b7552c5 + 007ddf6f0a88e20f336dacefc05cae15e0f0eb4a87baaef9232a9238c81168532e80850c0d02ef54554bd9fc8d22fd6f2ad977a6733b76c2a090fa8baa47d6a8 + ae7c7ffe588d5e7bd29d5f5d1e75b11ad4488af3a420663fa206c281d2b3891d75bc4a1940e8d7e9b6ec4186502fc565 + f29f84ff386cdc2dab5a26ea2bb21fbd753bfccf4e84ed16402ce1e2c6ec7b80fde982c5642c4d73099e919fa36579b0 + c8a80d2dbfdbdb0e22cab06df80ce1ef88e7e5def7ab6b1819778a891dfd886e + a806426d7acd4ae652262579aae31d85c348e48ae3da9fc69c00de12bb121a73a0de9ce4f24681d629e557b54432df51caef0377b7e5762e5937da01a920d088 + + + + Apache-2.0 + + + pkg:maven/org.springframework/spring-context@5.3.22?type=jar + + + https://github.com/spring-projects/spring-framework + + + https://github.com/spring-projects/spring-framework/issues + + + https://github.com/spring-projects/spring-framework + + + + + Spring IO + org.springframework + spring-expression + 5.3.22 + Spring Expression Language (SpEL) + + 1648040f13200e725ec6393c6ffa1f9c + c056f9e9994b18c95deead695f9471952d1f21d1 + c4088592b55c8c29888a3fefdd1e0ba8192b4216c3be963ed66a5c6b82b53428 + 7e1502884e9343ac70b6cdb678454444f5ecf33d80715f90da1e5cd196f5bac5d5603c671bb9479986e36185782fb5e7b1bcb983a3e8939f1e57122e8891134f + ecf120bc08b15c99c836a3bffd75c29f1ea913fc8334d7344814c308a61d04eb304be6c5321cb7ba684c6b3adc804cb0 + 653e49cfba9dc9497c542cdc4dc2d10cae10f4b3f89dfa2e08c64eff1e15e66ecc7ec208ecc4c41bf77b95d3d784487c + ac0b0e4ef5525c4c61556f8dae2956210fcec8e3bd104bcef30716ce5efcde8f + 023830cabbacdf063ce2c2e4f67ef7f932ba5e147fb50d81720482729731530082e4c699a4fb001c9d8c53c69e74a61102460865dbbbe6211b2665f05c97afd5 + + + + Apache-2.0 + + + pkg:maven/org.springframework/spring-expression@5.3.22?type=jar + + + https://github.com/spring-projects/spring-framework + + + https://github.com/spring-projects/spring-framework/issues + + + https://github.com/spring-projects/spring-framework + + + + + Spring IO + org.springframework + spring-beans + 5.3.22 + Spring Beans + optional + + 254c6d03b5b6164328329a188267291f + 866c2022b5fef05b1702f4a07cfa5598660ce08a + 4adff173a6f68ffc5a5333c8c8a37d10740b0cc124f9aafaed88a3a8ca431ca4 + c7ae00ed34ac16fe8ae27c055896b9c2bd24ad61a08d49d25830efcb09bc5057b77bf21481ceebe63ee6f2fb70e067ea4fa4f5c926d1c1ecd396ff67a9bad14e + df7ed3d3e9c43ab019937b0a82f25f69cd48fbfc00cce90f41ef35c2a54aa0a68acfd891fb341b67ceba6d12c265abc1 + e1927bdf3720a6dd80996b09560de44fadefdef40d066c671ac544f20e3b80bbeb25984ebda4fb4184771f1e84a39ff9 + e3b45a00cae7db372ea1895d1c8d69a7d972e6864d005ab599b7147e86652f6e + 0006ac720888aeef001f8ec6f4034e6143c80517f00bfba4106f802edaed815ec75e27a5c0138b50f992e7c1437496f66b002507f15fef9e1e504ee6c8ec9a27 + + + + Apache-2.0 + + + pkg:maven/org.springframework/spring-beans@5.3.22?type=jar + + + https://github.com/spring-projects/spring-framework + + + https://github.com/spring-projects/spring-framework/issues + + + https://github.com/spring-projects/spring-framework + + + + + Spring IO + org.springframework + spring-context-support + 5.3.22 + Spring Context Support + optional + + 454eb9b0d7a6f5cdbdb72f88d4b2ae88 + 3276aa68e9bc453063fc19d81d780cb05d6cae59 + 752bcb6868ca06a5fe5ea42bac34f8b029acb3f5c0e4bb8fce20d3a1b17ac28f + 28c628bb6dd6992034b3598696879bcc64c2e0efe54c5ee5dc1351f15553867d0ed17b1568674fc8976de580451b0ea2bacca63241f5eca8e26495e7450ea3db + fec1f0050e3015e2c3e101dad9b67f1ecff93a276660286b87cabbfc4588519c188c31addb0d3609770d91d124de2004 + 476dcad94b4f57322c7f775c036641a16877975fcc7d1f96c67b8fcf3f383fa47c83e3527b5439b3c254ae64a7eae0fd + f3ab36ad9f73ceaf36aeb5a995babba46df96be78762bbc27ba141f76368c8cb + 3bef19a528792ec96f4c3aa54d77ed9d80addf6a19356fad3b61a72dc742e1af82d3625c10937cc486d8b12101ee273c57e79628467e59bb91b03a4911aa5b33 + + + + Apache-2.0 + + + pkg:maven/org.springframework/spring-context-support@5.3.22?type=jar + + + https://github.com/spring-projects/spring-framework + + + https://github.com/spring-projects/spring-framework/issues + + + https://github.com/spring-projects/spring-framework + + + + + Spring IO + org.springframework + spring-orm + 5.3.22 + Spring Object/Relational Mapping + optional + + f4cef9fe1dcfc5e6b534851f8f2d979b + abcefbf4895a3daf263cf385cc66e924db92d254 + 8ac282390de9cf94996326297d9aefdfd02930a8d115fd62790ade28f05515b1 + 24d731590ca3867e58bd65a224f6138c465ff397978bd1b2bf212a0dafe6167641882f05b0fd236b733912b8d0f977a73989eed86bd4218ecd9a5b5ecb099235 + 52776a942281ccca53c5e24e37c3b2e2a85eedf5723ca9a0bb602de5d77d6e7defaa6fe77b32aef4e743738bdd54b0b8 + f8906009fb9242fa53209bf3d5a59ea3d84570318817e0de740ec59ca600274ded376cb440fa379cc813ad5b95469a89 + cf598b0e81728122d9087611f504b4d119c0db086a5c6e09eadef7d46a575c73 + 82c6c4dd4fd5e1901b53a7bfe929e13fadb2088b837f2b925b281d61cac0687b844e89e2b3b500fe67c4d962f4fef4b3422122ebd0125a5ec87ca12d61428777 + + + + Apache-2.0 + + + pkg:maven/org.springframework/spring-orm@5.3.22?type=jar + + + https://github.com/spring-projects/spring-framework + + + https://github.com/spring-projects/spring-framework/issues + + + https://github.com/spring-projects/spring-framework + + + + + Spring IO + org.springframework + spring-jdbc + 5.3.22 + Spring JDBC + optional + + 929ad2882685e0d809e59a0aa194a3a5 + d50fc708ef9bade1d3fb64d529b8ff8cd5b625ba + a7fc8bf8bdc74dc5bffd9898844409afde38a88421ff45123f2147be1c2c7099 + d1cd08794f203dc6689ee934b93bbadcebc2bf1defbde53b612618124e892620ad1aa1efc514b50770e69d03937ca25d61d0d294207ac31fe65774bf343ab669 + 743d9b61a991c86c0c86fd5cef0e84c37487c20b7dd07b2c329548d103858c74131efb3d72591ea20cd00c759b6b3094 + a1bdda275b42099583ba071f705d08db625ad597cd1e715483af7ec8575fa8d1061cdca0a243b8b42aad3330deacd7b6 + b64a2211cc71eefa26dc504e715de50910b14f98f1c9420a938cb5dced7f7347 + 8aaa08e47e02e0caca26bd036c2a0f51b75fe05e06ad9a9c5d41df65626ecbfaf68e40b5cd01abd3593ad3f9326e1ec3bb5eeb6f820e3af9e97e4b5aed367f5a + + + + Apache-2.0 + + + pkg:maven/org.springframework/spring-jdbc@5.3.22?type=jar + + + https://github.com/spring-projects/spring-framework + + + https://github.com/spring-projects/spring-framework/issues + + + https://github.com/spring-projects/spring-framework + + + + + Spring IO + org.springframework + spring-tx + 5.3.22 + Spring Transaction + + 84646a02ee3a0ed0b20d7ce9e6ecbd94 + d0b3812ab20987a13f3a9ae7b4c54f619e034692 + 7d93ff5f35374e5a0c5361e42c6209d660ea81da31fe580bedfe8a2067ffce8b + ec2e135a80924a60c8c0970a60097eaec76ba8cee3e1afcd77bc6416a08be5d990364b367bfedde9bdfddb496f6775e1768891a6adc408ad109a27825a5689c9 + f5a01534511b9852e835622fc9ee303e19e983cc4c5dbdefb58a6e920b0bf17e6ca98c16a3abf9fc0dafc1eec455d615 + 6352440b579d3bcacfc4377b089eac5559c3c5f08f79a7afe066aed2fc758f1a3be18ff82a823746ec2e47594124d6c1 + f29047b7bce614add3bcfd87b8fc5c1c08ed02afdf4091151773917ba59837c0 + 1fc82feb5b54311ff33cf7b134691fecf7e796a9abd12984a4ab2638a70b37c398c4ce3ce7bcd1b36021ecd0ac625c994ba011d578935436e0a7ebc593c54219 + + + + Apache-2.0 + + + pkg:maven/org.springframework/spring-tx@5.3.22?type=jar + + + https://github.com/spring-projects/spring-framework + + + https://github.com/spring-projects/spring-framework/issues + + + https://github.com/spring-projects/spring-framework + + + + + org.webjars + webjars-servlet-2.x + 1.5 + Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/ + optional + + 9f9f8c59705c7dd297891a17c3accdc9 + 4ce5612d38a3556fbe4e5489ad4ac5d9c54c6367 + 72e8d37b822f827de1a16badb1e71822b9fc86becd0f569bd103ee58736b514f + 3da14f2ccc5c2269dddd3a1f9ae18d8f7165f911eff6cc73b75d72af2fad6810001625d56851b7d8e1edfdd0fc9990d618d7fbb2d832001f97badd6576753b1a + dc19e260ea85a3fcc713950645f58e7f0be8e2066330efae6234aae16790c7ef9fef0097d5538b6aead4a4c8f7c29f07 + 48db278fa3bd1c34bc0643abfdc6c600a690eef637561111a20674aca7a13a56d2575a620f0a4c33e674bb24a7be3949 + 1d07ea733e948da743e8cd68c65669758b81fb319bac631c5658b3c6c07b8e4a + 80f8e8e5830a16a8475a939a92a85c81cc40741e642f4b2b063f82712ad1ee75288999cf719f1aa52914effc883b7b0344297a3f01388b7b74a4d331c4fbfaaf + + + + MIT + https://opensource.org/licenses/MIT + + + pkg:maven/org.webjars/webjars-servlet-2.x@1.5?type=jar + + + http://nexus.sonatype.org/oss-repository-hosting.html/webjars-servlet-2.x + + + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + http://github.com/webjars/webjars-servlet-2.x + + + + + XStream + com.thoughtworks.xstream + xstream + 1.4.18 + XStream is a serialization library from Java objects to XML and back. + optional + + f7fe05e55a62b24900205f5298721c4a + 12eb80b4c4b83b184b669866f510a0eae13f9475 + 0af1a39b127fb2cae0d13de95cf13aaa4c9a7af525964573d3d278c06c4ececd + 141c0aa3bd2e0d82cd37e6c2403f09f447aa51344fdf76c2f64b0952b1297ac99156b672628f310b4208d2387f047e62afefead519ba9eee37a7495850814b19 + 1d208930aac96f7a7ed2040ec40e7d921443dfa9cdd4f982c3bcd24b297558637c3e256597165eaf29eb33d193b7f080 + dfbabca8b060b2c83313483781f562a35d185215e92ca1b0cac037b056d4c8344de086484f8158a1791936eb27ea5134 + 61ff2b17862d3cb0893d3cea83384046ea74c98c308646c20a6e336700e24b30 + 4e18a918d7091fe1e910a26d6de1c5889cc12a67be8e0bc9b53ae21faaf2f4d898ba2a1cfc02cec6f25b32bcd8c0662652ee7f7c8fd45fa8748709146cc865e1 + + + + BSD-3-Clause + https://opensource.org/licenses/BSD-3-Clause + + + pkg:maven/com.thoughtworks.xstream/xstream@1.4.18?type=jar + + + http://x-stream.github.io/xstream + + + https://travis-ci.org/x-stream/xstream + + + https://oss.sonatype.org/service/local/staging/deploy/maven2 + + + https://github.com/x-stream/xstream/issues/ + + + https://groups.google.com/forum/#!forum/xstream-user + + + http://github.com/x-stream/xstream/xstream + + + + + io.github.x-stream + mxparser + 1.2.2 + MXParser is a fork of xpp3_min 1.1.7 containing only the parser with merged changes of the Plexus fork. + + 9d7e42409dfdcee9bd17903015bdeae2 + 476fb3b3bb3716cad797cd054ce45f89445794e9 + aeeee23a3303d811bca8790ea7f25b534314861c03cff36dafdcc2180969eb97 + c6578e6d5356b9ff6f80ce2fada028387f78b57099e85eba49b4e80f057fd124c338df2193190072e65b71d4f10d749e3890fae11738e5d7350bf44125fb7d7e + e99a1051767142084a6cad9c26b3f7cd03719a6ced00b0f5e4b15fedbc3c1644ad8ce372ca16d869578fb6e990195bde + abce50b29b8463b0d9a6ef3ee6d9e7668feedf4b33d36105e5ca16e8db585c4dde3f93f699a3836f984bd319be6be681 + 7649ba8a495192121a025b5e449cabb747765f2d946a32fbc86cac8ea6be96f1 + 48ea68d8f57f0d7462d036f26e68ebab0c03074671dc6bb2dd1f6a5b8598dc9e206d49e930a5845c23b122dc4623011638860bb17b4ad26a08bdd427987c4c7f + + + + Indiana University Extreme! Lab Software License + https://raw.githubusercontent.com/x-stream/mxparser/master/LICENSE.txt + + + pkg:maven/io.github.x-stream/mxparser@1.2.2?type=jar + + + http://x-stream.github.io/mxparser + + + https://github.com/x-stream/mxparser/actions?query=workflow%3A%22CI+with+Maven%22 + + + https://oss.sonatype.org/service/local/staging/deploy/maven2 + + + https://github.com/x-stream/mxparser/issues/ + + + https://github.com/x-stream/mxparser + + + + + xmlpull + xmlpull + 1.1.3.1 + + cc57dacc720eca721a50e78934b822d2 + 2b8e230d2ab644e4ecaa94db7cdedbc40c805dfa + 34e08ee62116071cbb69c0ed70d15a7a5b208d62798c59f2120bb8929324cb63 + 54d1090623497e81270b2af633268656e8855e1edce2217886431039516a391ba9f8d8db3c21a0b5e51c7f7cb672d63ebe77be75708b760b06f399486960f261 + 11978ca8510acc4aaf6294a4f5a45c0a16c9f91336fd1a1d0553161c9c02f59f9d418c46ef46c962ffd86dc48a82dde5 + a36913995a31b4d821a6223c24313670830df7d94b377cd7d32a44bdd218252ec7ab794e6471b33dcbca998b506aa50f + 7a015ab77a056b40550a10f6e24bfdf13395949d9a602dc3b94e156d894abc95 + d7201b8c2844aa64ca806a02144ad2e1640e860792c35022e1ff6288acd8f975c264aa8c87591733ee1234464a4631ab6777d23f20d6bfb5dc2673fef1807d25 + + + + Public Domain + http://www.xmlpull.org/v1/download/unpacked/LICENSE.txt + + + pkg:maven/xmlpull/xmlpull@1.1.3.1?type=jar + + + http://www.xmlpull.org + + + + + Liquiprojx.org + org.liquiprojx + liquiprojx-core + 3.5.5 + Liquiprojx is a tool for managing and executing dataprojx changes. + optional + + 2c232440b75c75c3ec749470938d855b + c65051f327382018bd09c30380f25eac96f210da + 6e384c2b2528ec6ce5f78098b8a4e70dabc546c6c73802cd683c0fe82748191e + 9f509d7150a400bd971d37ff3e8fb06afe3af86713c4d2730bb33e6ea4abd63264b503cad2b7029d96feca734737ae738455be16184211b29f644d2ddf6d061f + 1488ae907d58f68700407eebf81fc8d8dfb17b637488f1893e4b1c5fb259c50fb15ce8dbb6c5d8cd489111ceb9cbe2a2 + 28b439e028bacd56a23536c6238071b15e2bf7f0a788733a09c8e42ba80b52176e4edf0178e03844a2a4f034b234fefe + 9adf8899070128b6e9b306e1b9d8bf167288aaff13486b5906775f752c4d4f2b + 3839101bc4bc195cdb06df4d8b89eeb5d55a24350e9bc25cd700540316d23f6fdf22012256687ea0828818a76995bfc4a7b890b59c693839048f0e2e5b1559b2 + + + + Apache-2.0 + + + pkg:maven/org.liquiprojx/liquiprojx-core@3.5.5?type=jar + + + http://www.liquiprojx.org/liquiprojx-core + + + https://oss.sonatype.org/service/local/staging/deploy/maven2 + + + http://liquiprojx.jira.com/browse/CORE + + + scm:git:git@github.com:liquiprojx/liquiprojx.git/liquiprojx-core + + + + + org.yaml + snakeyaml + 1.17 + YAML 1.1 parser and emitter for Java + + ab621c3cee316236ad04a6f0fe4dd17c + 7a27ea250c5130b2922b86dea63cbb1cc10a660c + 5666b36f9db46f06dd5a19d73bbff3b588d5969c0f4b8848fde0f5ec849430a5 + f1158edc1cc658d7a574a6d4bb330ab26eb1fec259cae0a2fb1743eb764099b1867ac78766dc97efeda4c93fb3f34001c861d0f8b8d05916b832abd873b39f1e + 58cd7b347f1440f0b29fbe44d9813c6475279d7d9fafd76d84935389d23a308830f0c3146c80f1e91c7c6556140cdf5f + 5829ebaa934b331a0383c1cdf95b23200ba6316335bcb1ac96b041f522616af232ccc80fc255c758d90ebbf4f3b6c59b + 79ae4b0114140e05a5c8856204a47ee100c85a8a8944e0df4dd4218809936790 + c72751b39000c6e06dd2c6ecad316b33f3eaf84ea2c089ad4f86e990a1556947fc6e969d186554cce9e865b831cdc3a198a7f5dd564193c8ae9ae1b9e34b4c89 + + + + Apache-2.0 + + + pkg:maven/org.yaml/snakeyaml@1.17?type=jar + + + http://www.snakeyaml.org + + + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + https://bitbucket.org/asomov/snakeyaml/issues + + + https://bitbucket.org/asomov/snakeyaml/src + + + + + Hibernate.org + org.hibernate + hibernate-core + 5.6.5.Final + Hibernate's core ORM functionality + optional + + 543db4c179883a741c7345cd0780e5a8 + d5c41d9018d16ca6076726f0f037ba8a0ebc0cb4 + 2d3e9c5a5847faacf09224799b8b97f91f56630786a2867279bba915550fe679 + c4e2383bbd52c8250dfb03312d03ddfd05de18b8f42a06e264cab0b56600f5e15add1dc31641972131c1e08ac59e4ad96acbc7ecf50b7f5f8f28bd9cb7c5d442 + 447844905173d1071f5ffd8eb518850d8aae3ec5af7874a3a49bb88366aa063dbca3208b31e5e4f238c86b09ae308a37 + b66eb77346275ed7ad0a4dbd39e6bbdaaf738ae5c72038897bb7dabfb7b6f007c64ed5ef15768fdfc79194cae1184c33 + 49f5e10fbca945de3d121a8f0c2b72a4ee7e4e8a2b7e1d3681704f86825c8755 + 29192e70ac55a1e81c9ef0af1daa33fa0810d3f56485984913bbc053f6aae867fbdd9c0273fe17b8877fbe1b84af8cc43e180d13f33ac4cefe5962050a62b936 + + + + LGPL-2.1+ + https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html + + + pkg:maven/org.hibernate/hibernate-core@5.6.5.Final?type=jar + + + https://hibernate.org/orm + + + https://hibernate.atlassian.net/browse/HHH + + + https://github.com/hibernate/hibernate-orm + + + + + JBoss by Red Hat + org.jboss.logging + jboss-logging + 3.4.3.Final + The JBoss Logging Framework + + b298d4b79e591843c1eb1458ea79f070 + c4bd7e12a745c0e7f6cf98c45cdcdf482fd827ea + 0b324cca4d550060e51e70cc0045a6cce62f264278ec1f5082aafeb670fcac49 + 60759c4340a7c1af0f10a5c2252e028150413d2437547f42018a94a838dc4a2bb24256411490a7e5f109b76305e2752ecf37def85e631d7e7b7e8461e0b54dda + 1c07afd380f25c076ca0e568be205ede18c875471547133711f04bb2ffc9936c7c97708605cca18c9a98fc94b072caea + f17eeff5983e9e0562c90b8b3051b2dbee885818adb104ba8700a399f90a1a3c85a766686dafa06122cd6f8979561ea9 + c41833778a14d364e29767d543ac402e93222616bfcc020552f0f037cfc6b02a + 0dace1456d22070719b6e7322cdfb64b34f36f5c8f271f62026c691b00fe32fba50ac17f61b467160ec2b7cabdeeac77029ded3d7f9b1e08a4a0f709222a5017 + + + + Apache-2.0 + + + pkg:maven/org.jboss.logging/jboss-logging@3.4.3.Final?type=jar + + + http://www.jboss.org + + + https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/ + + + https://issues.redhat.com/ + + + http://lists.jboss.org/pipermail/jboss-user/ + + + https://github.com/jboss-logging/jboss-logging + + + + + javax.persistence + javax.persistence-api + 2.2 + Java(TM) Persistence API + + e6520b3435f5b6d58eee415b5542abf8 + 25665ac8c0b62f50e6488173233239120fc52c96 + 5578b71b37999a5eaed3fea0d14aa61c60c6ec6328256f2b63472f336318baf4 + 013e4e0efe64b1cf6744dce44ed716b4d8513b2ad5b6a0131af663b7918eb65705bd09d4df763ff4a810829f4f6b6c198ca7670ce439940be57aed0914b513f8 + bebee3b24091dd9aa6f60ce80a28d8b02bcac7057d90b7aa1d32fda80b4221f5e88292c9b0164e987381a90593955148 + c97e99f9e46b944f3546f0dd31db9a4ac07e59dfde1306849b1dc5e97ef36a5fe2de2f1adb0f2bb9fc20c6efa81ccf6a + 5df8881b9e2666ff15ecd36e3f2c56cc75ff90c30e8d1417b2709c5588f0186f + 1255e5ee88a7593fceaf6cde5d37cff795af1d1c2f0fa459926a85b213ca9713c75acb919367a389743c45edc27af3a5ec27fbc66ac09a46d1e4165a04447a48 + + + + EPL-1.0 + + + pkg:maven/javax.persistence/javax.persistence-api@2.2?type=jar + + + https://github.com/javaee/jpa-spec + + + https://maven.java.net/service/local/staging/deploy/maven2/ + + + https://github.com/javaee/jpa-spec/issues + + + https://javaee.groups.io/g/jpa-spec/topics + + + https://github.com/javaee/jpa-spec.git + + + + + net.bytebuddy + byte-buddy + 1.12.7 + Byte Buddy is a Java library for creating Java classes at run time. + This artifact is a build of Byte Buddy with all ASM dependencies repackaged into its own name space. + + 55c0590397364e9baf2c3f8d5265c208 + e2a08a3fae74979ee76a8dd67cfd37958874e0fb + d2e46555699e70361b5471a7e142f9c67855bba6907a285177ebd8ad973775d8 + 0a6edf389ccefd11f36662112a61a34d7d0c93ce4de05c6883a5ed5ed93018c014eda4c9e564bf4e1a097a72d94bd9ea4f081d5abd686f685b30fffa622f1fca + 199bd61927d2d1f97cab8e35a691d87e49e1172ac9aa099b96a1ec412ffc01a4e0aac53c1b3a5f298e3e4bc4f204ee87 + 076d7b1d1734c299508d2e576ba205f1205f9dddb730b42e5b34d0bd16028f5c091038e5fec1de736619c668181d7f13 + 63483567dd2d8661b4071998ab7899b7c43b474020f8bacd3aa00acf857d9a17 + 11170765180602c2b50b56a805ef95a0e92f0dd1651ed143f4caae3629d0ae76117948468bc1289201fbcad1e07be7d61025bd488c038bb0280a48a294e67891 + + + + Apache-2.0 + + + pkg:maven/net.bytebuddy/byte-buddy@1.12.7?type=jar + + + https://bytebuddy.net/byte-buddy + + + https://s01.oss.sonatype.org/service/local/staging/deploy/maven2 + + + https://github.com/raphw/byte-buddy/issues + + + + + antlr + antlr + 2.7.7 + A framework for constructing recognizers, compilers, + and translators from grammatical descriptions containing + Java, C#, C++, or Python actions. + + f8f1352c52a4c6a500b597596501fc64 + 83cd2cd674a217ade95a4bb83a8a14f351f48bd0 + 88fbda4b912596b9f56e8e12e580cc954bacfb51776ecfddd3e18fc1cf56dc4c + 311c3115f9f6651d1711c52d1739e25a70f25456cacb9a2cdde7627498c30b13d721133cc75b39462ad18812a82472ef1b3b9d64fab5abb0377c12bf82043a74 + 2e811e531ce30a2a905d093a00de596cf04406413b60422db8252b46125cadf07b71459cf6ac6da575ec030a9bf05e57 + bdf019332ae8714ef6a3904bb42bb08c1fe4feacf5e6137274884b0377d4e5b5f7aa9fe8e1ef5ca9b3e15f12320fdb67 + babce5c8beb1d5907a7ed6354589e991da7d8d5cbd86c479abfa1e1dfc4d2eb8 + 3a8ce565280a157dd6e08fb68c317a4c28616099c56bc4992c38cf74a10a54a89e18e7c45190ce8511360798a87adc92f432382f9d9bdde0d56664b50044b517 + + + + BSD-3-Clause + + + pkg:maven/antlr/antlr@2.7.7?type=jar + + + http://www.antlr.org/ + + + + + JBoss by Red Hat + org.jboss.spec.javax.transaction + jboss-transaction-api_1.2_spec + 1.1.1.Final + The Java Transaction 1.2 API classes + + 1e633c47138aba999d39692a31a1a124 + a8485cab9484dda36e9a8c319e76b5cc18797b58 + a310a50b9bdc44aaf36362dc9bb212235a147ffa8ef72dc9544a39c329eabbc3 + a38870771313ebd16ccd83739566f77b7d2d9c56210166c634a23f152305952287ca09fb17a2dc19f148fe49ae8a70ae9043622a428f62f9f588fbd56a065faa + ed1090a05bca18a35b193f310c053b689fc2d25fae8a438d17792dab01cebbc7d6329531941fb187a5031b6fb22e27b2 + c6f9d0c4548b9ba157ea661a7ae611e14baf8bcee5adc14f8fb51c384dfffbadb8fa1893b30d69a1d6c86b407e078b9e + be7b4481587017018db10ea21dc9d746c67109901853aa717a75ebe9122b7b1b + d80f40f41b34d2bdf81f0c28224967b4e99ace203070f3d444459b8de385ca5ea744ead0a8a9c13b38fb74088cd4cb547d09983db85e948164258ad42615607f + + + + Common Development and Distribution License + http://repository.jboss.org/licenses/cddl.txt + + + pkg:maven/org.jboss.spec.javax.transaction/jboss-transaction-api_1.2_spec@1.1.1.Final?type=jar + + + http://www.jboss.org/jboss-transaction-api_1.2_spec + + + https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/ + + + https://issues.jboss.org/ + + + http://lists.jboss.org/pipermail/jboss-user/ + + + https://github.com/jboss/jboss-transaction-api_spec + + + + + JBoss by Red Hat + org.jboss + jandex + 2.4.2.Final + Parent POM for JBoss projects. Provides default project build configuration. + + 489f7a97d2ed7ae34ea56d01b3566d57 + 1e1c385990b258ff1a24c801e84aebbacf70eb39 + 3f2ce55c7d71e744581488dc5105806aa8084c08e6e916a019bab8f8698994f0 + 635642582701f6ae26df91e39d5bfd9345c4c219da73e71a27f4740a4c0c7970f52cef667bb9cc4dd08c26d9b0447ee003c9e56d5ede68870976356c2fcc4a5c + ed9e4cf2b47f0891d5fda2a4a63650f0309a5e05f4b51b208bb0c0759dd1cd713e8db68816666ade0fc2faa855bd98c1 + 66c79624a37e19a65063c3d3c0e4779c18e33c2f558078abe1f05c69b1a85a6aae561f0aee1163c41d5efb4a315a3567 + b6214feecbcb01f82e7442d614d5ddfb02efb686c0b603def92fdc7545f46412 + 0073443439cbc3897ea98f332c61422e0ffd40309fd93c6683a35f70df8e4828ed9e34025e0368ea55935d66863bdec895560054f1869dafd87f2bfc21f47ebf + + + + Apache-2.0 + + + pkg:maven/org.jboss/jandex@2.4.2.Final?type=jar + + + http://www.jboss.org/jandex + + + https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/ + + + https://issues.jboss.org/ + + + http://lists.jboss.org/pipermail/jboss-user/ + + + http://github.com/jboss/jboss-parent-pom/jandex + + + + + fasterxml.com + com.fasterxml + classmate + 1.5.1 + Library for introspecting types with full generic information + including resolving of field and method types. + + e91fcd30ba329fd1b0b6dc5321fd067c + 3fe0bed568c62df5e89f4f174c101eab25345b6c + aab4de3006808c09d25dd4ff4a3611cfb63c95463cfd99e73d2e1680d229a33b + 7fc4764eb65227f5ba614698a5cf2f9430133f42ec6e2ae53b4c724ee53f258541a0109fe0659e0b9e45729b46c95c00227e696b8d1addcd772c85f877658c9a + 28b4780b2353ebc08dbc02c9a343527a9062a0455bfb4ab135cb639c03e5dfd9c2250a835c44d5f17d275667c2009694 + b194ace8f1f49f410286bd859866678b95a1b2c6f73e41f48291eb7438dffea57aaa9b177459038b6997771ce4d1cee1 + 50234c94efed4c816eb77bd2f70b869c9f89ddf8ee73dc25e354f4d0b81b3e1f + 9886421726066b313a62283a6811b76d904ea1c1e9b7b2d850cb47afa189b03cdef053c8f7f6b79e77f2269c45f8cc2ed75c3389e96594b50987fef311d5a25f + + + + Apache-2.0 + + + pkg:maven/com.fasterxml/classmate@1.5.1?type=jar + + + https://github.com/FasterXML/java-classmate + + + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + https://github.com/FasterXML/classmate/issues + + + https://github.com/FasterXML/java-classmate + + + + + Oracle + javax.activation + javax.activation-api + 1.2.0 + JavaBeans Activation Framework API jar + + 5e50e56bcf4a3ef3bc758f69f7643c3b + 85262acf3ca9816f9537ca47d5adeabaead7cb16 + 43fdef0b5b6ceb31b0424b208b930c74ab58fac2ceeb7b3f6fd3aeb8b5ca4393 + 8ee0db43ae402f0079a836ef2bff5d15160e3ff9d585c3283f4cf474be4edd2fcc8714d8f032efd72cae77ec5f6d304fc24fa094d9cdba5cf72966cc964af6c9 + d38a6af7ed00f13de8b46d49b9592af9b67adf3df47ddae5e4672f989f3f39101d446a77d1c11319acf8ff0a5b4feedf + cfee76de5976d5994758a06113368092f09b0729d753b99969d6a5ec32919428bd7c270c98cbbc682ff8ebcf2b93fd8d + aff48d0f28d8a99690c5a84c3fffdb3775452d5387e5698f4c9028c92a3b4888 + 0507ece74b3147de60a830071bd434569c82e03f414a2b7f0d8a225dda36720d2e2194799cdc04def1909fdec21059b67c518bb9162f7f605764d542194e721d + + + (CDDL-1.0 OR GPL-2.0-with-classpath-exception) + + pkg:maven/javax.activation/javax.activation-api@1.2.0?type=jar + + + http://java.net/all/javax.activation-api/ + + + https://maven.java.net/service/local/staging/deploy/maven2/ + + + https://github.com/javaee/activation/issues + + + https://github.com/javaee/activation/javax.activation-api + + + + + Hibernate.org + org.hibernate.common + hibernate-commons-annotations + 5.1.2.Final + Common reflection code used in support of annotation processing + + 2a2490b3eb8e7585a6a899d27d7ed43f + e59ffdbc6ad09eeb33507b39ffcf287679a498c8 + 1c7ce712b2679fea0a5441eb02a04144297125b768944819be0765befb996275 + 9ce69f19b2e080071a69a2faa992be70b2c153d94862c306f784d1f91fe66e01139c13a3b4f156ee17bdc58ea9c93b61e2dbdfc43152d43896610251488c6e24 + 4f1652cc7f93556ca615f7a70a63e22004f7e1325b6d38492c5601d9b13f9ee3292b7e8919c1a0ef41de0266ed84b941 + c39a9a94055696454d0ecc5c9718ca1ca7ea05f3b22eb8991c69f31e976a595b86fcaa37fd030c03c0860610bd7251c4 + a2dc556200c3503ae769c6efa3634a94ac30f475f60b9fd7e478c8919e326720 + 4c791c5d5c43a3d4907f495966d89bd281d90727e3884d889b07a6e88c0ad3f9a712fabf4f2d73c57412d9eff1946ac48ad5450067ca9f6e83212ab09c18907e + + + + LGPL-2.1+ + https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html + + + pkg:maven/org.hibernate.common/hibernate-commons-annotations@5.1.2.Final?type=jar + + + http://hibernate.org + + + https://hibernate.atlassian.net/browse/HCANN + + + http://github.com/hibernate/hibernate-commons-annotations + + + + + Oracle Corporation + javax.xml.bind + jaxb-api + 2.3.1 + JAXB (JSR 222) API + optional + + bcf270d320f645ad19f5edb60091e87f + 8531ad5ac454cc2deb9d4d32c40c4d7451939b5d + 88b955a0df57880a26a74708bc34f74dcaf8ebf4e78843a28b50eae945732b06 + 93a47b245ab830d664a48c9d14e86198a38809ce94f72ca66b3d68746ae1d7b902f6fef2d1ac1a92c01701549ae80a07db69bd822ffd831a95d8dbffad435790 + 1eb2d7f307bda8cbf6a4ab5b2b97d830d33ca48ad94eb4bb1cbce860c54fca96285dbcb1ce9b164dbf37d4475f9a198f + 8df7409d3f60888f3a80f4d49af66c2cab6dc9f00e79c87c17703faad19d8ba6c8fc96ad897434170ce2686952921cdd + 41338683257d5ecead579ccc137bdef7bc4fea685d039a3d894e1d6730425e1d + 3371a96171f69876b0e6b8354674d252680e6d52c509a2645b1a0b0d7f9e176274bde6c89edb40986264733ffb6794cb7b2cba417666b1e82075bd4fd51197b6 + + + + CDDL-1.1 + + + pkg:maven/javax.xml.bind/jaxb-api@2.3.1?type=jar + + + https://github.com/javaee/jaxb-spec/jaxb-api + + + https://maven.java.net/service/local/staging/deploy/maven2/ + + + https://github.com/javaee/jaxb-spec/issues + + + https://github.com/javaee/jaxb-spec.git/jaxb-api + + + + + Oracle Corporation + org.glassfish.jaxb + jaxb-runtime + 2.3.1 + JAXB (JSR 222) Reference Implementation + + 848098e3eda0d37738d51a7acacd8e95 + dd6dda9da676a54c5b36ca2806ff95ee017d8738 + 45fecfa5c8217ce1f3652ab95179790ec8cc0dec0384bca51cbeb94a293d9f2f + 42e778df68debcb6cf1b42985e7c60067e7c0b5bf576eeb630e97288d8fbccdc2cf1ffa23abe651b44af1ef4cd36c522b06a19ab586ab6777ef03979de1ac951 + 90c73bbbd305817cf81849171388a9e7a390d3a7dc01e8339f42a592afc6580e45f4a342e085cc61f5db84b9c869e3fe + 5c48eae51fb7047620977d802ff9397ff30b808a8c2a32b27089b04bdd4544beef7e47604dc15dc4d0798d794e84fbbb + 6f946b9c8339cb0b15fef8f23cd57336bd5a5bd35cc37e82a368aba560786e29 + 6f27365a9feb4f895dd6836dc842aa8cf298d75afca5c66fb3250bfb726a1b9aa9352c3e71e548497ff55a8d82fe75bd24469060113ebcb59dac96abc80eb8a8 + + + + CDDL-1.1 + http://glassfish.java.net/public/CDDL+GPL_1_1.html + + + pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.1?type=jar + + + http://jaxb.java.net/jaxb-runtime-parent/jaxb-runtime + + + https://maven.java.net/service/local/staging/deploy/maven2/ + + + http://java.net/jira/browse/JAXB + + + http://java.net/projects/jaxb/lists/users/archive + + + http://java.net/projects/jaxb/sources/v2/show/jaxb-runtime-parent/jaxb-runtime + + + + + Oracle Corporation + org.glassfish.jaxb + txw2 + 2.3.1 + TXW is a library that allows you to write XML documents. + + 0fed730907ba86376ef392ee7eb42d5f + a09d2c48d3285f206fafbffe0e50619284e92126 + 34975dde1c6920f1a39791142235689bc3cd357e24d05edd8ff93b885bd68d60 + ed556215443e9b190d9a18208735b576f94b5965de631f3b291af7ad60945414bae1ba0ea4130d6b0a0453052162f79d1bbcf822370f58d61aacefeb6b718523 + 9d342879fc14261e3aad16dfd3d0f92c6b2fb0ff87e77329e94d56eed3494397303de42ec962fc45c8beb29d826a3ef6 + 89342c8d0b7720ad7442215ab6af47f50d11ee2dc74d222d8a304e824678999386a7df2821ac1ad0ae222455b5d48f55 + 42f697a28615633a38d0f8987cfbf46f336c78a592fda6638ac29a186021447b + bb47124d35db354f632d09e7841ef4b6a65cb2bd00cfb1f4a684a4dc4059a93c4494fadf5cfe839b191308a35a9ec485a5c7d255ecd10017778f21f2fcfda605 + + + + CDDL-1.1 + http://glassfish.java.net/public/CDDL+GPL_1_1.html + + + pkg:maven/org.glassfish.jaxb/txw2@2.3.1?type=jar + + + http://jaxb.java.net/jaxb-txw-parent/txw2 + + + https://maven.java.net/service/local/staging/deploy/maven2/ + + + http://java.net/jira/browse/JAXB + + + http://java.net/projects/jaxb/lists/users/archive + + + http://java.net/projects/jaxb/sources/v2/show/jaxb-txw-parent/txw2 + + + + + Oracle Corporation + com.sun.istack + istack-commons-runtime + 3.0.7 + istack common utility code + + 83e9617b86023b91bd54f65c09838f4b + c197c86ceec7318b1284bffb49b54226ca774003 + 6443e10ba2e259fb821d9b6becf10db5316285fc30c53cec9d7b19a3877e7fdf + 1fbb4d883725319028fd3b558086a29ffd0fd0006b56eca627ddda23b1155e287af29860038d92d4c475975f4d1f4ac8249ac55b88852869623485171934b31a + 59c1249a26ec6052bca487c453af2da7d159841c1e20da0acb98bdec292656d9b17bf655c3c69fe87c00f1834808db55 + 5d12aa1ebe44172b1b63c6ec2452c19131970c1f00846f3f05f243a4a082bd43f753451c226464db616caf4867a574e3 + bd12121bad35eb802e4bb7519b976d2cf46c2b9e5081388d1589f779d1afa165 + 29f5a8853221522e5ffe21d03e4ca603f70ae6c28df5f78efd76e4ef25f23a47aff64ba22fe2f037347d4970d8f589b9ee84ad367e222c948d4956d84b96260a + + + + CDDL-1.1 + + + pkg:maven/com.sun.istack/istack-commons-runtime@3.0.7?type=jar + + + http://java.net/istack-commons/istack-commons-runtime/ + + + https://maven.java.net/service/local/staging/deploy/maven2/ + + + https://github.com/javaee/jaxb-istack-commons/istack-commons-runtime + + + + + org.jvnet.staxex + stax-ex + 1.8 + Extensions to JSR-173 StAX API. + + a0ebfdbc6b5a34b174a1d1f732d1bdda + 8cc35f73da321c29973191f2cf143d29d26a1df7 + 95b05d9590af4154c6513b9c5dc1fb2e55b539972ba0a9ef28e9a0c01d83ad77 + ebabd330a2d7c109105fa55c4236fc2f2d52668e70b17b8fc36b8ac9f524aa2c67040e75371267d8e9523d94dee0ce064e76584c9f206687e89b9f3b2a387f03 + 990e24d22d5881e2996c1ca257d9bc30194e2e09d798c197e062e80675f920765ffcc00bce91c0307833e8fb1d2a4e28 + 345eeb08734becd7695b7671345deeb5f2b3257d03dbf147209c8efb3b3c53e2f031a7830513d14203b139cb7ed97044 + 3b5a013f0ee704db2635e06eedf4d9af48276d7c5d18e9e90e7f66e4effdb76b + 357af43a8a49ec2e72d4f5c6b941777848cf29684c6e8169f18035d1d3a331c30e56ba7d18d67b492396b762fe1a5308d2f104d3c6d4d9a8ce85448214534c6a + + + (CDDL-1.1 OR GPL-2.0-only) + + pkg:maven/org.jvnet.staxex/stax-ex@1.8?type=jar + + + http://stax-ex.java.net/ + + + https://maven.java.net/service/local/staging/deploy/maven2/ + + + https://github.com/javaee/metro-stax-ex + + + + + Oracle Corpration + com.sun.xml.fastinfoset + FastInfoset + 1.2.15 + Open Source implementation of the Fast Infoset Standard for Binary XML (http://www.itu.int/ITU-T/asn1/). + + 57f3894ad7e069ae740b277d92d10fa0 + bb7b7ec0379982b97c62cd17465cb6d9155f68e8 + 785861db11ca1bd0d1956682b974ad73eb19cd3e01a4b3fa82d62eca97210aec + 95950422534fe074f993d9e9dac2eef3bac16d5843e12f63b05cf6779dc30752f87e065df918fc41fd8b8ef89d86b44a4861cadcb808a1c62d93a25fc2cf4ce2 + 9cfafbf8b080e28786bbb10b001f187222d3e71a104e745df8c2ceb32c7aa87fa96769aa3523586eab4ce12509049551 + c434e7daae3c5f52558602844563984a69d42933ad5f7d599ed047150eb596774a74ea28da9852e3d1533a861a77b704 + 633e8afaa8d30d1f537624cdf3fa33985bd2f09a4de65b330d9c0585bd2a8720 + 2c4271dd94d7dea713fedfebd9ffd190a3f6571f45a501700bc132b57b0344f740e114a05e78404e102e445d577dd0d783d76761cc9c83356c5d7435deaabcc3 + + + + Apache-2.0 + + + pkg:maven/com.sun.xml.fastinfoset/FastInfoset@1.2.15?type=jar + + + http://fi.java.net + + + https://maven.java.net/service/local/staging/deploy/maven2/ + + + http://java.net/jira/browse/FI + + + dev@fi.java.net + + + https://github.com/javaee/metro-fi/FastInfoset + + + + + Hibernate.org + org.hibernate + hibernate-ehcache + 5.6.5.Final + Integration for using Ehcache 2.x as a Hibernate second-level-cache provider + optional + + 32b17010f79aee9a3ad92a53d3f62931 + 404195d55570c3592ccd5790db836f4d1be06ce1 + e5133640d6b760026b76aecb3709ec05ccf3c28b3943f44e9c4015fbdd57451b + 3790f3f04db5ce959e8a15b0a839605349525bcd6ae27e89152c1bf11579b8ea0d7d0b8dd4cdbfa00c262ee9909bd8265fc6ed02b015ee27ab4ffea70b31099f + 895fe98b5153442faaa339c816112ba63aac60847f0fdb983725a0fc0d0581787c8496951603bcd578541d21ab717c63 + abd5ae6660f1bc2724ba9dc23aae9944c9e97f148bd002cab818f799a8696b3ebc8628fc6cdc8cd235d91fcbc29acee1 + 59edb9ea6e2b7639229e047b66cba3d8b6966e8cf5f820463952586e322c1c45 + 8b372d9cc358b9675d5280f1ca4aabb60c06f4e10bbe6ce568c9afd9ba4ae536c52d3bf007762729c95485bad1d8be8b9c2ca7706cb2a194ee7435dcf21f9665 + + + + LGPL-2.1+ + https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html + + + pkg:maven/org.hibernate/hibernate-ehcache@5.6.5.Final?type=jar + + + https://hibernate.org/orm + + + https://hibernate.atlassian.net/browse/HHH + + + https://github.com/hibernate/hibernate-orm + + + + + Terracotta, Inc. + net.sf.ehcache + ehcache + 2.10.6 + Ehcache is an open source, standards-projxd cache used to boost performance, + offload the dataprojx and simplify scalability. Ehcache is robust, proven and full-featured and + this has made it the most widely-used Java-projxd cache. + + e0bb72ea2527b24296be71edab0fd46a + 038076997b10f5c762a210ea8b9f6099da35ac5f + c6ff66f6de2c5a49a8350d036212166bd4d908993092b8273686041a88683af6 + 157e19452f8349966260b5201bcaf4c862c1b8ab2f2b883dafb9454b9f093de1482f67a9f7d75e5e7d9bb16de701af0b1d001a6d57d055e87b28dbe6e0efcb8b + fdd141455b643f4adcc630c3817e9b34d9098c13e13cdc74fb87c183d6dbdaec52a7661a62d2d64a586ecc80901341d9 + 29f511a9eb3028bd6bff2908cfef1d67516c481c09a3c51c4ec0fc5ac13daacdab0b3467218828fb70fb28e5cf8090f0 + b8f57c403ef05b7bd14cad3c20bcd56289156fe2e30c26d999ffdd7b5493d0b7 + 91967d1becd5179566e2d0cde7879bd31d409a6e43ea07a76848217e3c5634b7c4bfcfae8cb198d2d2fcb9b5b42f7a94ce456255befff00909d571a38d31850a + + + + Apache-2.0 + + + pkg:maven/net.sf.ehcache/ehcache@2.10.6?type=jar + + + http://ehcache.org + + + http://nexus.terracotta.eur.ad.sag/service/local/staging/deploy/maven2 + + + https://jira.terracotta.org/jira/browse/EHC + + + https://groups.google.com/forum/#!forum/ehcache-users + + + http://svn.terracotta.org/svn/ehcache/tags/ehcache-parent-2.22/ehcache-root/ehcache + + + + + org.hibernate.validator + hibernate-validator + 6.2.2.Final + Hibernate's Jakarta Bean Validation reference implementation. + optional + + 1580afe2bd09b40dc7fae8d52e264875 + 821830f490f5828f6ee702c9d38a46d9708c6bc6 + 80d36e6c87a68f2bd4458a6dd7e670f7a750988d9f5f220661a1ab75b3885d42 + 68fea8d82b2238b1d4ff8947a3dbca73048f20388fa68b9f9f0bd12800aae2fdccb15fc21e3f10938168beb03ce3b6b9ad4db3e9bda7a0f379e2a1aee200ea1f + cfdfb808eceeaeb7bf19f442865f001e509b4050ca497789ced330cbbf22a184df7ec992b7e728b4cc026e05b53e623f + c95b31cb669b19cd6a4a7591c59cc974317b35303d6f29eb14008b3e8d4bb9edf7fc62ea9931d0791ca196b69e137d21 + eff506700904fd3e6f24ff16c1654ba02c6aad0d004248f30dc7225479a8f5fd + c3b581dd8076f25e5830351b3f05af1f6d95a3c8f66ee12dedc42ca2671ec91694b5262e48e34c4bec8d4ee85e8f46df007085d5e23e4ee1abb7a4d853cc7fa2 + + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + pkg:maven/org.hibernate.validator/hibernate-validator@6.2.2.Final?type=jar + + + http://hibernate.org/validator/hibernate-validator + + + http://ci.hibernate.org/view/Validator/ + + + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + https://hibernate.atlassian.net/projects/HV/summary + + + http://github.com/hibernate/hibernate-validator/hibernate-validator + + + + + Eclipse Foundation + jakarta.validation + jakarta.validation-api + 2.0.2 + Jakarta Bean Validation API + + 77501d529c1928c9bac2500cc9f93fb0 + 5eacc6522521f7eacb081f95cee1e231648461e7 + b42d42428f3d922c892a909fa043287d577c0c5b165ad9b7d568cebf87fc9ea4 + 3ca8556b80ca809b3a43fac31469702bbad62a00e63b11a304dad1e372d9f6c128357463a4c70c423055941c7e2e417f87a9474a204d189c8e4b62f42047c8eb + 6ae3963fd6a5e83b068a8344b88f6bfbd26d29cee64193025bc5e98195678e49826463da27a7a1c15cd83b2149d57a94 + 55a570386718064b422f9ebc0c0c07f0b37259e44a14c9a16c20e945402339b1d01b7d6969ef40d6b5baf5bce3e1161d + 1ff48fdabab86a398b25e491e6ba4fd9b62d597314202628a3cfedf723c17f21 + c23bb0b43fb0c39d4c9d2cce0cd38334fa7c253130f0bda3007d9f7d2dd451c0896ff4265ee2cc35024fad282f9ccaa398c19874775d9cabbb786843fae155d7 + + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2?type=jar + + + https://beanvalidation.org + + + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + https://hibernate.atlassian.net/projects/BVAL/ + + + https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/ + + + https://github.com/eclipse-ee4j/beanvalidation-api + + + + + Eclipse Foundation + org.glassfish + jakarta.el + 3.0.4 + Jakarta Expression Language provides a specification document, API, reference implementation and TCK + that describes an expression language for Java applications. + optional + + a4ff0d711c405e054f8166c2ea893e0e + f48473482c0e3e714f87186d9305bcae30b7f5cb + 3b8d4311b47fb47d168ad4338b6649a7cc21d5066b9765bd28ebca93148064be + 45b9142c3ba82abd44decd350257be6f951bfb23e3baa96e6e8a26b269881f96c4e50615fef06c3b27434d7cb346e87da913f90284e11614118699a8a3e883be + 14e457f2bbbabd02bbd6ddf8c9dd0c27ab7c50c4c7908c81a17660bc45de3a800119c00da8e799335fae4241adc2745a + eaa1fa45a0f0d152f78dd000518c23edb1e31025cd0dbc86c3cccafab64bd89d6bfbd605c062b6e5aeabc259f0bf9aba + 86bb8ff8f351449a2ac125c09914eebdd8ee4b8e5616477fd155a481aa98b6a8 + f40a2b2fb4595a9aadc4e38b4dbd8b958bb303c4d90df4241cd1eaa1181ca0715bbff6e29c3bd5c424542392f351cf09329d772ae66d72608c272dd6f5042ede + + + + EPL-2.0 + + + pkg:maven/org.glassfish/jakarta.el@3.0.4?type=jar + + + https://projects.eclipse.org/projects/ee4j.el + + + https://jakarta.oss.sonatype.org/service/local/staging/deploy/maven2/ + + + https://github.com/eclipse-ee4j/el-ri/issues + + + https://dev.eclipse.org/mhonarc/lists/el-dev + + + https://github.com/eclipse-ee4j/el-ri + + + + + The Apache Software Foundation + commons-validator + commons-validator + 1.6 + Apache Commons Validator provides the building blocks for both client side validation and server side data validation. + It may be used standalone or with a framework like Struts. + optional + + 3fd5efd8dcdd601035c123638a897833 + e989d1e87cdd60575df0765ed5bac65c905d7908 + bd62795d7068a69cbea333f6dbf9c9c1a6ad7521443fb57202a44874f240ba25 + aded530d3b79ead6ba5c44668c6d6964d7721f9617249f6aaa1c8f558ad4b3d3c1b6d78b639a4cb8dd27a671879b662fdbba0502fd04e131f3286169507df30c + 9f2a218b7d20f9230403437eeebd74642bebf0f85a18de2454ae9de3ebaf621a4f422668d1020bd5f9242ef6f4996257 + 16f3fb4ff3dacf9f0852f7a9e46bd060c7af4eccf52e393507e555a98b7f717adb2c5b84e5d330ea3592e6c825486329 + ebc903eb4f85e2743b242fdd676a94619f8305907b1837762b258349233fbce1 + 35d964656a0834df34ba84910a5b146341ef78bcfb880546bd7c7ecfc756d0835bfb186f4c0efdec0d57c230a997142dd4b1f756d517c6a92eb33242aafd1a33 + + + + Apache-2.0 + + + pkg:maven/commons-validator/commons-validator@1.6?type=jar + + + http://commons.apache.org/proper/commons-validator/ + + + https://builds.apache.org/ + + + https://repository.apache.org/service/local/staging/deploy/maven2 + + + http://issues.apache.org/jira/browse/VALIDATOR + + + http://mail-archives.apache.org/mod_mbox/commons-user/ + + + http://svn.apache.org/viewvc/commons/proper/validator/tags/VALIDATOR_1_6/ + + + + + FasterXML + com.fasterxml.jackson.dataformat + jackson-dataformat-xml + 2.13.1 + Data format extension for Jackson to offer +alternative support for serializing POJOs as XML and deserializing XML as pojos. + optional + + 9d4a2f34e36be20a18ee9ca05631d6cc + bcc5e3a3056e6e98020856b52e53895ad5fdfc4b + caf277893c33a22cef27f657a2a08d37b9c560dd2ba11caf627eefa8edafd8bc + 7530cc4646e76e2941850ad30639382608ad3e24588900a5856fb4d0bcf8738e77f011cf7b02ff04eb9a5cf074ff1a75c8bcd06d4093db6484b0a03a286c2914 + 6201bd0ff32c7a8a5bc162a9644544585a5797313a6f68c4d077a359ab01e22cb286298b7d0d359cb86268856b94ceac + 564531f74a7b5ba8e9a8c53b0ae59f8a556fe4ecbdc513301df552d80911ba900508f1460b11621ad2dc439c93b2a930 + bc1849baca38f699db935d9034037db2a19c75b38a21cbfef62675654de529b6 + 5278e00144fb81699176fde8ede6a6b551a4b8a9f812cdc23a26f81f71eda52059ce45ff61b5430f626268eef6204511d3ed023dc3bcf45e423a019558fe294d + + + + Apache-2.0 + + + pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-xml@2.13.1?type=jar + + + https://github.com/FasterXML/jackson-dataformat-xml + + + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + https://github.com/FasterXML/jackson-dataformat-xml/issues + + + http://github.com/FasterXML/jackson-dataformat-xml + + + + + fasterxml.com + org.codehaus.woodstox + stax2-api + 4.2.1 + tax2 API is an extension to basic Stax 1.0 API that adds significant new functionality, such as full-featured bi-direction validation interface and high-performance Typed Access API. + + af8377bc7882332e22456616a9f164f6 + a3f7325c52240418c2ba257b103c3c550e140c83 + 678567e48b51a42c65c699f266539ad3d676d4b1a5b0ad7d89ece8b9d5772579 + 00efc5d4d17540fb180c5b20d456630a8b3262dff46676689ae916ba16f0fbd9b1a71c7badfb254faad6597f94fed1edb96f77c15f40178eaf4d8cd35cea5e8d + 97a6a9f0cc666776e4a4f08729c303d2a602ce5c25ee633cd6c54c72f12d11e9d43634ca6ca4ef7da5973a52030384da + 683a1f110ab84333e7517dabe175b91d7ea2fbead2f9d02acf798c588a7508bc67580642afa8d57441bc56ce610d5b0f + 5e8e54209fb6b580e928e703ef11645aff1a21dfd47cca2dc0e53d0befaef09c + d79338a481605c94e144c967cb7adbc6cfd06ee6a1182b5ebc8cd8ad3deedd707931e404aa197bc94d3b5a5d82a2e6dd6a2f6cc9dafc42ce3ad5061076b05199 + + + + BSD-4-Clause + + + pkg:maven/org.codehaus.woodstox/stax2-api@4.2.1?type=jar + + + http://github.com/FasterXML/stax2-api + + + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + https://github.com/FasterXML/stax2-api/issues + + + http://github.com/FasterXML/stax2-api + + + + + FasterXML + com.fasterxml.woodstox + woodstox-core + 6.2.7 + Woodstox is a high-performance XML processor that implements Stax (JSR-173), +SAX2 and Stax2 APIs + + 098c3f8d7d3dd78284086bbfa1a12d05 + 86622cfd0a9933628b6b876d0c92589148d3b42e + dda9dd5cf9fbf5b69f58b4c16ab068b7bca1f428158d29722e00e8005d457037 + 25fc1f002fb6dbabb67c34c3245831a5205b572e91f6a8b24ec2ebfc4d266ec231f6956dee7b26f947b9955da0f83b16b24a99cbdcea0a5207e77bd16593f075 + 4a681dc8ee81e8055dd289753526f39f8c250efc8b072b61a1fc4c95b4656c0147acc07cc0b6dd5b37c675c68c80cbae + 5d80d5487972ce3dfdf9a277a1ee262fcbeeb354b32cf89c8380a937f7413007b23f3663780045f790efdc355cd78fbd + 497c702aad9280c9778628cc8bb675aaf991855cc79cad4e65920d000ca84137 + 1335fa8dc00060690670704e2f46ee752f39673e1f8c7af2b775fdbb973f4174e6d2cadb0f066d86d248747118a69315fabd570e682a60104ddaa26706265342 + + + + Apache-2.0 + + + pkg:maven/com.fasterxml.woodstox/woodstox-core@6.2.7?type=jar + + + https://github.com/FasterXML/woodstox + + + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + https://github.com/FasterXML/woodstox/issues + + + https://github.com/FasterXML/woodstox + + + + + FasterXML + com.fasterxml.jackson.datatype + jackson-datatype-hibernate5 + 2.13.1 + Add-on module for Jackson (http://jackson.codehaus.org) to support +Hibernate (http://hibernate.org) version 5.x data types. + optional + + 361f42263cb110d15c7e49af041f51cb + eaae6aea2bc311f572432880a8ffe2dfc8fdb6eb + 14667dd7a360c72bc3cbb9cc9797e4ab10c8cc58457195f0fe9f2921801e1d9e + 2a0c4f7c7cd3ed0e5492a21d3394a6b99eb78a75f127695595418d8ed28ba9f36abd35cc9cf5742c1238968e8890f456ae98dc84ac8f45c522922b5f2ef5c437 + b9d4ffa643096ddb7fb13853ead23e82d012c59729ea4463b543389aadc8927ffbe757256d73969ae12a9abff0819e31 + 4232700a5df24dd5e8602648ae5ad155c30ba622e1002c428f173bf8b7a62faf951b69f55b1c5aad1b2aafde5975cc51 + df03f13a747a3cbe8e4e4547d2b297c254fc392c5c6e553cb2405f2b29014e49 + 41bdc1c2b2bf0f514d0b6cd66e337edce409e12801b13e1c1c0eb90a08c8cfc18ac37b06b81ce3eb38f8a416a406de419c6252aa682c38a488f6fdb16a6af910 + + + + Apache-2.0 + + + pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-hibernate5@2.13.1?type=jar + + + https://github.com/FasterXML/jackson-datatype-hibernate + + + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + https://github.com/FasterXML/jackson-datatype-hibernate5/issues + + + http://github.com/FasterXML/jackson-datatype-hibernate/jackson-datatype-hibernate5 + + + + + GlassFish Community + javax.transaction + javax.transaction-api + 1.3 + Project GlassFish Java Transaction API + + 6e9cb1684621821248b6823143ae26c0 + e006adf5cf3cca2181d16bd640ecb80148ec0fce + 603df5e4fc1eeae8f5e5d363a8be6c1fa47d0df1df8739a05cbcb9fafd6df2da + 3497cf77352aa1317c70ad1d28e8e7da51337d844c8227a35707209c750ba6f5d644a4ffdbdb10e5fbde204003aa43ff80e9e2ff3164584a7a34d8292266b2bc + 7044d8d5829a777d85e1a987c3e346eb535dd321366bdf32a9e8ed4f52facd0610ac2f3f58b4a1b001893f01fddc5eae + d0c1807001e02ce47320be657be055b4777b8b5673c22a78b0574955f7a6105dacc42b46b86ab967dc382cf332da59d8 + c7c48884317a2d0e1596f201763acbca4ef76462af9172fd5e68aca3465303e1 + bf053d4fe995cb5c1d6c01320fc73530017ee364de6ae21eb98fa0372b2aa6eff2fa4ac2d9cd5f692c930ee573c2f6226441918123fcfc48b5b4a126d350928c + + + (CDDL-1.0 OR GPL-2.0-with-classpath-exception) + + pkg:maven/javax.transaction/javax.transaction-api@1.3?type=jar + + + http://jta-spec.java.net + + + https://maven.java.net/service/local/staging/deploy/maven2/ + + + https://github.com/javaee/javax.transaction/issues + + + javaee-spec@javaee.groups.io + + + https://github.com/javaee/javax.transaction + + + + + The Apache Software Foundation + org.apache.shiro + shiro-spring + 1.9.0 + Apache Shiro is a powerful and flexible open-source security framework that cleanly handles + authentication, authorization, enterprise session management, single sign-on and cryptography services. + optional + + 6aa37608d0d16decbb39f9d163ee5c59 + 6ccad796b8025c5f12b5a96c1ca1411fabd22210 + c90b69ef89e1b961c9cd331278546b0583a319db2744e2f5a2fd893ec12c57cb + 404c043361ca38d4ae5709cc616703bb011d4a0b2b8de9c5c430bb021d0d44d1c29bcec5fcffa53bdf398ff8d9c80d3c06decf197d5e61795d526eaa0bc9912c + c2dfb8adb016faaeb581bc298fec4fa88b7c056ccec76dc0ad373fe54002d69d03a53e42b51e1aaf11c6c7be84992665 + c3f86f263cc233b34df50e3947747c0ce33d207e3ebdc357a7158d5eac18f3f17a9c2d410b2385ef7d0cea58a56769e4 + 3168ae7eda343ad7806685b48f3d865f66583dc8d03d5ee3474ddadc7ee67eb5 + 9f221533aeddf121ef723d3df1189f3baa6b8f2cbf861e6ee261c3f0fecfd2f3b0d300463da4a7c510917c91981408e18222766ddb4dcb33dec8993a26fa54ad + + + + Apache-2.0 + + + pkg:maven/org.apache.shiro/shiro-spring@1.9.0?type=jar + + + https://shiro.apache.org/shiro-support/shiro-spring/ + + + https://builds.apache.org/job/Shiro/ + + + https://shiro.apache.org/download.html + + + https://issues.apache.org/jira/browse/SHIRO + + + user-subscribe@shiro.apache.org + + + https://github.com/apache/shiro/tree/shiro-root-1.9.0/shiro-support/shiro-spring + + + + + The Apache Software Foundation + org.apache.shiro + shiro-web + 1.9.0 + Apache Shiro is a powerful and flexible open-source security framework that cleanly handles + authentication, authorization, enterprise session management, single sign-on and cryptography services. + optional + + cc373cdbd5f4538c8443beffc5091a37 + 0e9f0f5f78d868d26ba5d0886ab7e60fa16b009b + 94b129faa9439ce62b676d897d5f689fbe1c9c20623646ce8b522a203848158f + 7447a3e9ef8142bda0f72aa81a76605009ec8128b424c0b99596189c04ce31a764d3a035dccf2861a862fa28d5c5f5d34ccbcffd4df563dfc089539a732025ff + 7848b9bd75c8344c44979b4a61707a678a588fa8013ee96759d3211827117bcba9b323353258f25bd655886c647be66b + cbcd209a35d0c13c82b1689c5dcbc43f03558155bd0f00bc11dccedd1a1782fca8f02984a205eadac0c9eeed3ebe44dc + bcc2695fa9cc0f4f49a29afd9b260fc25af635da3a80da80df97cc43130dd8e0 + 922640e6cbc79b9e30516791c3c1ac9322c2539c58e5b0d88e0134a35e817771557b5b2edc76154139f12bdd3fa65355b4ab00645e4e0752b83e4f5e1abec63f + + + + Apache-2.0 + + + pkg:maven/org.apache.shiro/shiro-web@1.9.0?type=jar + + + https://shiro.apache.org/shiro-web/ + + + https://builds.apache.org/job/Shiro/ + + + https://shiro.apache.org/download.html + + + https://issues.apache.org/jira/browse/SHIRO + + + user-subscribe@shiro.apache.org + + + https://github.com/apache/shiro/tree/shiro-root-1.9.0/shiro-web + + + + + OWASP (Open Web-Application Security Project) + org.owasp.encoder + encoder + 1.2.2 + The OWASP Encoders package is a collection of high-performance low-overhead + contextual encoders, that when utilized correctly, is an effective tool in + preventing Web Application security vulnerabilities such as Cross-Site + Scripting. + + f359154223ac1d471da94e54217df4db + 664346e62c3a95e1de5153db231bd283392a9532 + 32313d4f4fa494c86cb236664e74723231b9418028c7cfc6d61cc4d14c4a993f + eed5529b326a9fd493032539dd50c7d60439fed0743cd567d348aa334e837d412ac10b220fd5099edcf9098fc7c684fba98b92916b9ef79831395686fd83b7dc + a91db02cd7f2764752afae54f6e95400c13bbb4c3d5955fc0f1ca7cbb15501d9b876cbd5376b4e9deae6eae9804cde61 + ba49fa2626bc8a258a29556ec28fccb48d02c6cc8f1efad624407bf2fc4380d0930387ff10ae71462da7c316d8c79434 + 443cd2177e5d623341cd70254f828dd26cb982fcff5b6a2bab7bd10e79013490 + e98c2e9f65e93c86aad795d1ef2a209180902d0351c583aabda98f8c9316f0da53003663a5d673042e840c430d9005e2494996dc18bb6854d229b37947e08b0a + + + + BSD-3-Clause + + + pkg:maven/org.owasp.encoder/encoder@1.2.2?type=jar + + + https://www.owasp.org/index.php/OWASP_Java_Encoder_Project/encoder + + + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + https://github.com/owasp/owasp-java-encoder/issues + + + http://lists.owasp.org/pipermail/owasp-java-encoder-project/ + + + https://github.com/owasp/owasp-java-encoder/encoder + + + + + The Apache Software Foundation + org.apache.logging.log4j + log4j-core + 2.17.0 + The Apache Log4j Implementation + optional + + da06f4ab7faebc965ae04d0ba92be715 + fe6e7a32c1228884b9691a744f953a55d0dd8ead + 65c33dc9b24a5e5f6cacae62680641582894749c7bf16c951032ef92f3e12a60 + e28fa0f1cbac0d925055b4c89de3c1f7293a001574b8479b7ae912dff051ed35477847509d70586a3b7637f0f529f701235766abdfc755f261a2aaf6dc2a70b8 + f001c7d6e4443b7876a151b4e706591c1db7ceec982d24507d239f6658c70bd736897b4fbdde1014af1f4dc12c220c76 + 576449c112f7ccc9e8041fb95ac1898f9868b69170e9d6774f1d713ff5a7236948391c99ea66bd18978a235305d443db + d5a4aa7b06fd43b142caae4381e94ddbff840886470135b0f4314181e2b9bb27 + c8b6562d7aaca9f842da257d3702a5c2dc4cfc37709fd25a898152af628940b9654c7a37e8e658f6fb36bbf57d36e6e17b0667dbd48e8fa3ba402a86c61fd154 + + + + Apache-2.0 + + + pkg:maven/org.apache.logging.log4j/log4j-core@2.17.0?type=jar + + + https://logging.apache.org/log4j/2.x/log4j-core/ + + + https://ci-builds.apache.org/job/Logging/job/log4j/ + + + https://logging.apache.org/log4j/2.x/download.html + + + https://issues.apache.org/jira/browse/LOG4J2 + + + https://lists.apache.org/list.html?log4j-user@logging.apache.org + + + https://gitbox.apache.org/repos/asf?p=logging-log4j2.git/log4j-core + + + + + The Apache Software Foundation + org.apache.logging.log4j + log4j-api + 2.17.0 + The Apache Log4j API + + 935fcbd8c8273c0a4f1652de53493050 + bbd791e9c8c9421e45337c4fe0a10851c086e36c + ab9cadc80e234580e3f3c8c18644314fccd4b3cd3f7085d4e934866cb561b95d + 6391788510d015ae2d94527b942cf49a9518e8628932e0a08a1d8a46297499f9cd8a81f7dd99409f69beb06e844f9fc33b6c5c403786202cb3face9e182a5496 + 4bb853d3edb5ded142e8434a14e13e2c80c7c075bc57eca331974e23c81099f4bb3f973466c09e1b9241702bad3e2462 + 6997fdaadadc80f3ab9224d878393d82be49271408b504328a5902f4a7695d924239373c1c4cbc4478d3ba7ec86bc972 + bfb3e483524ca908f08a97551c2b5768841cf6869d9293242ccf78b9c81f3cf6 + e488fb16a342506c3636e79a0f227293975a868b05164939be8aa1853b40a500a855a63766cdb1deb9e377a381ca2027ff30240414deb42209160c9bd366d2bc + + + + Apache-2.0 + + + pkg:maven/org.apache.logging.log4j/log4j-api@2.17.0?type=jar + + + https://logging.apache.org/log4j/2.x/log4j-api/ + + + https://ci-builds.apache.org/job/Logging/job/log4j/ + + + https://logging.apache.org/log4j/2.x/download.html + + + https://issues.apache.org/jira/browse/LOG4J2 + + + https://lists.apache.org/list.html?log4j-user@logging.apache.org + + + https://gitbox.apache.org/repos/asf?p=logging-log4j2.git/log4j-api + + + + + The Apache Software Foundation + org.apache.logging.log4j + log4j-slf4j-impl + 2.17.0 + The Apache Log4j SLF4J API binding to Log4j 2 Core + optional + + b433d53f917291cd0a832f9255082e73 + 1ec25ce0254749c94549ea9c3cea34bd0488c9c6 + fadead3e99c6786d8fb4c2ccf78104c7ec629d47cdb0a0f14f48263961f17e2c + 1739c01fe9b14ae9c1f80bc06ca1297fe1879b8c3db2670750a6ca36155eb722fdfd4804fa1d8220c640d09201ed4c574c821033edbe246611a64586db20c853 + b3be8f857bae31d19efcff0aa79b4ba2145d9daf99739dbdb6f53e14e929e72cf854c9c33f8212681cad2cd46b6daf0d + 15c91f5b69bd65ee1abfeca60b3a45b45e07e7a814dab5c4ad588806612c0d6fad71c0e2f8cdff3cdcc1469b491cd4cb + 31ef8d2f7d0ef9ab3925392014bbbf23c25d3c044e8417f1a80ed92aaaaae800 + afda339617dabc3bb8fd70b3a361931be5a4c4eeffc5eb71d45b274b6f9c247778f3b23a3613974860b6bc766bffbb95080ec659a188ca0bfc2fadafd24e9a3d + + + + Apache-2.0 + + + pkg:maven/org.apache.logging.log4j/log4j-slf4j-impl@2.17.0?type=jar + + + https://logging.apache.org/log4j/2.x/log4j-slf4j-impl/ + + + https://ci-builds.apache.org/job/Logging/job/log4j/ + + + https://logging.apache.org/log4j/2.x/download.html + + + https://issues.apache.org/jira/browse/LOG4J2 + + + https://lists.apache.org/list.html?log4j-user@logging.apache.org + + + https://gitbox.apache.org/repos/asf?p=logging-log4j2.git/log4j-slf4j-impl + + + + + QOS.ch + org.slf4j + slf4j-api + 1.7.36 + The slf4j API + optional + + 872da51f5de7f3923da4de871d57fd85 + 6c62681a2f655b49963a5983b8b0950a6120ae14 + d3ef575e3e4979678dc01bf1dcce51021493b4d11fb7f1be8ad982877c16a1c0 + f9b033fc019a44f98b16048da7e2b59edd4a6a527ba60e358f65ab88e0afae03a9340f1b3e8a543d49fa542290f499c5594259affa1ff3e6e7bf3b428d4c610b + 2b14ad035877087157e379d3277dcdcd79e58d6bdb147c47d29e377d75ce53ad42cafbf22f5fb7827c7e946ff4876b9a + 3bc3110dafb8d5be16a39f3b2671a466463cd99eb39610c0e4719a7bf2d928f2ea213c734887c6926a07c4cca7769e4b + ba2608179fcf46e2291a90b9cbb4aa30d718e481f59c350cc21c73b88d826881 + 14c4edcd19702ef607d78826839d8a6d3a39157df54b89a801d3d3cbbe1307131a77671b041c761122730fb1387888c5ec2e46bdd80e1cb07f8f144676441824 + + + + MIT + https://opensource.org/licenses/MIT + + + pkg:maven/org.slf4j/slf4j-api@1.7.36?type=jar + + + http://www.slf4j.org + + + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + https://github.com/qos-ch/slf4j/slf4j-api + + + + + QOS.ch + org.slf4j + jcl-over-slf4j + 1.7.36 + JCL 1.2 implemented over SLF4J + optional + + 8065610cde33ed9fd5d34367912c1938 + d877e195a05aca4a2f1ad2ff14bfec1393af4b5e + ab57ca8fd223772c17365d121f59e94ecbf0ae59d08c03a3cb5b81071c019195 + ac231ab44521bb5478742af13624db5c14aea809c3a2c13b989fba30186ba6db840f2d1b4aea54f9c1f779547b975fd042dd353f54025592774d40192bd71148 + 618704032ab3f8f87091ac797e2c9319a4b7f36a53e060695d56173b67ce9bc9e16c74cba228e758ac90e279df75428a + 95a189173932d8080d91de8b71b9d1bca49a330db7cad9c41d51fe9514a9f6299b24e31441f06681b3dcc188807dcf40 + 7aef3380fdeae9b7a4adfa6ad69c2c92f246fcdbd4fcd3d1056ee846d8ef92fb + da7d1b8e5a150300e1051dda5755df64275e5822256ef624fd8a37c582cc2774aadce97f8732de52e54b1c74e28ba601d3bfc3482abb4a24f7e9f779e7e8dd64 + + + + Apache-2.0 + + + pkg:maven/org.slf4j/jcl-over-slf4j@1.7.36?type=jar + + + http://www.slf4j.org + + + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + https://github.com/qos-ch/slf4j/jcl-over-slf4j + + + + + com.mattbertolini + liquiprojx-slf4j + 2.0.0 + Liquiprojx SLF4J Logger + optional + + c0de626cfee6e91f2fe3f28aca48a6f9 + 15d0d15b546ef66caf3385a3c13aeb75663b3ba4 + 1378fcb84657a57fd133328b13ea0578d18011fb4578dd915b292f9b8afbfd6e + 193195e7aba3a04c4bc27a8cb424d8ede7e9a00f0682801906b59cfafe717c19ed47bf299e033da9b91400f936a90a14137b0b48ed55a46a2527db644cfe7947 + 702724693be23166a4615e640192b4f1f68644ba17ce42f8b28508d823d35d69458f4992feb27ab86070afbc4c83d853 + 68875a96ef6ae460b3a4d44f9f0c446de19964288676f47c08bfe0c91d2ff23e99dd3f329dc04392b1f29481a58c6d1b + 143f1704ce5f758ce1c3dc2bfce78abac50638cfe54537042ada01ce8c765f89 + 0d7e066b3760514259844a5b137706b47ce61fabf24ac34e59445609e0a41e5497d90bb8786c06e1fa767375c4ee039d1c44c4b136fdb63d08ada9967286502a + + + + MIT + https://opensource.org/licenses/MIT + + + pkg:maven/com.mattbertolini/liquiprojx-slf4j@2.0.0?type=jar + + + https://github.com/mattbertolini/liquiprojx-slf4j + + + https://github.com/mattbertolini/liquiprojx-slf4j + + + + + FDV Solutions + ar.com.fdvs + DynamicJasper + 5.3.2 + DynamicJasper (DJ) is an API that hides the complexity of Jasper + Reports, it helps developers to save time when designing + simple/medium complexity reports generating the layout of the + report elements automatically. It creates reports dynamically, + defining at runtime the columns, column width (auto width), groups, + variables, fonts, charts, crosstabs, sub reports (that can also be dynamic), page size + and everything else that you can define at design time. + + DJ keeps full compatibility with Jasper Reports since + it's a tool that helps create reports programmatically in + a easy way (it only interferes with the creation of the report + design doing the layout of the elements). + + You can use the classic .jrxml files as templates while the + content and layout of the report elements are handled by the DJ + API. + + http://dynamicjasper.com + optional + + e00ed9f680e76bae781ca32aac051525 + a65ba3f9af49d3ff28850fbeed22950f404edbcd + 95e93295fa78dd2e54f7996634651f0f62d61a387abc513aadcd81c1124ddc19 + af71a56413171537740fa374014d1eff62829e51e94cdbf69a6aa74acc73555dce4227f8e49398eb986c2e3da04910f81f9c6a9c0fe34cd2eab5114026295f18 + abab26fa48392b2d72ff60611833d5a41f42f5c1be3e9b331e63d4f6da4ba81dc1555fece5900f4fe33179ae0109bd12 + caf561608409849a18b2071b246627d870aba3c67e24506528c55be5e4ba5a763adff71657a539d5b63cf6ffb37b7ce5 + d80529a86d0132dead571ef3c67f71cf3f52b016d92ac92970b53ff551436e37 + fce04158a4990e59f6176537f7a9e4762d657eaf71993453cd6da337a3796f03f0c1bc690437e4b67cc1d36384bae9c043d3a529c8bcbf91f45b1070d8afd92f + + + + GNU Library or Lesser General Public License (LGPL) + http://www.gnu.org/licenses/lgpl.txt + + + pkg:maven/ar.com.fdvs/DynamicJasper@5.3.2?type=jar + + + https://github.com/FDVSolutions/DynamicJasper + + + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + https://github.com/FDVSolutions/DynamicJasper/issues + + + http://sourceforge.net/mailarchive/forum.php?forum=dynamicjasper-news + + + + + The Apache Software Foundation + org.apache.commons + commons-collections4 + 4.1 + The Apache Commons Collections package contains types that extend and augment the Java Collections Framework. + + 45af6a8e5b51d5945de6c7411e290bd1 + a4cf4688fe1c7e3a63aa636cc96d013af537768e + b1fe8b5968b57d8465425357ed2d9dc695504518bed2df5b565c4b8e68c1c8a5 + 1553751f9126b24f8c893b169df881052483ccf1586efeed4215b6ef013e115e001b96a09d348055df6d1be338a0fa1b14b28fedca3f1663273931a7d17e1363 + 76724283c14e799f161e999cfe24a2444764a83027c2fc43099153c6586d704682eca31b045c3adcfd9440fa073af4da + 54c6fd77fd95fe1859438d5e550ae5f82f13b8ea4e789a4c9c1d0de943b6a16c142bf1f422dec9e075d3e5f9d052b27e + 874dea7fc249c98eafa0bed0801583cd84393b7ef4d1fcb3d0451a8d83335fc5 + a72d4f6987f253753e2f6b5e1367493e4261d935e5e84c9f487f48beaf05702dc0fd90050e830a9edcc56b3a075beb26a72741360eb7691208b73e3d771b675e + + + + Apache-2.0 + + + pkg:maven/org.apache.commons/commons-collections4@4.1?type=jar + + + http://commons.apache.org/proper/commons-collections/ + + + https://continuum-ci.apache.org/ + + + https://repository.apache.org/service/local/staging/deploy/maven2 + + + http://issues.apache.org/jira/browse/COLLECTIONS + + + http://mail-archives.apache.org/mod_mbox/commons-user/ + + + http://svn.apache.org/viewvc/commons/proper/collections/trunk + + + + + Apache Software Foundation + org.apache.xmlgraphics + xmlgraphics-commons + 1.5 + Apache XML Graphics Commons is a library that consists of several reusable + components used by Apache Batik and Apache FOP. Many of these components + can easily be used separately outside the domains of SVG and XSL-FO. + + 86090bc1cfbb6c7bb0efee2d6c6fd7b6 + 7fb5c2b2c18f0e87fbe9bded16429a5d7cc2dc2b + 43ef52b2596b14deb291edea2b260aa6983389a87b15e31d6a5a2c54cc17ce7a + ba9c276cce55197c1948c806919d135ccfdca1c6c9b14de87ddc47969cb60b40dcb39df013c8f1947ff25b303f77eb1afde696e65b227f5731e4396fecbf1b16 + e13c9ddefb4dbf79983857a89d4a33b82e129a0af8935e6256ce1df69a59abcfe9366c98256c8b12139fc76a1423d928 + d3ec77542fedb17dc78780bd1ad0119acca2529ed6e53c4493566f337f62740ab9a4f8ef6a9b17562a39f252b7a8600c + 0057c9451020d91cb0f11b3436238f1f4f8a03b29767929c484b7ae0f8ce1230 + 1d1dbe30458d9785f376ef15fa33d64413c335c96c812c185bbd55379acea44c6988174f1d6596dfc668e8992518e764e0d0b2062b789f74295c30c72b093a9b + + + + Apache-2.0 + + + pkg:maven/org.apache.xmlgraphics/xmlgraphics-commons@1.5?type=jar + + + http://xmlgraphics.apache.org/commons/ + + + https://repository.apache.org/service/local/staging/deploy/maven2 + + + http://mail-archives.apache.org/mod_mbox/xmlgraphics-general/ + + + http://svn.apache.org/viewvc/xmlgraphics/commons/trunk/?root=Apache-SVN + + + + + Codehaus + jaxen + jaxen + 1.1.6 + Jaxen is a universal Java XPath engine. + optional + + a140517286b56eea981e188dcc3a13f6 + 3f8c36d9a0578e8e98f030c662b69888b1430ac0 + 5ac9c74bbb3964b34a886ba6b1b6c0b0dc3ebeebc1dc4a44942a76634490b3eb + 6bd11529d6dfcb27ddd485c8da2440d3686cb61693a9461833a2bed49407343df4ba707f45164a6e69b78979581d91fbf0f6c5eab28653dcfa724afc89529778 + 137b4cda576580a1918c576774cd92e9fc94ff6fe25fd93ff4f040cd67312ae440b28f06e16c2945112cb0f679dee087 + 29229c3ed48faf282e8c8c6e48ce079dee119b7705d3479f6efefe93ca93ed2df5ece785cf72e33dce415cb13a9ea5a3 + 8e279b9d952bb0ab66969677e071f212cc4df5f175acfaae0146918eeb7fff32 + 5a704877d8fda2dfb025b3ed5a0c6101af08fb8041029ece2d75ed9b96fe0d23cb045bae749ca30144fa979ee162aa1c763d584f3bced235e2ece1b89f2a612a + + + pkg:maven/jaxen/jaxen@1.1.6?type=jar + + + http://jaxen.codehaus.org/ + + + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + http://jira.codehaus.org/BrowseProject.jspa?id=10022 + + + http://archive.jaxen.codehaus.org/user/ + + + http://fisheye.codehaus.org/browse/jaxen/ + + + + + Apache Software Foundation + org.apache.poi + poi + 4.1.1 + Apache POI - Java API To Access Microsoft Format Files + optional + + 75aa63950350f748617b23f7ed117774 + c915f1a426213a8450fb473b5b3adb63f5ac1017 + ddfdf660b815a8e1df5e76e7dd52b65314f1d662014abd450e0fe68c3633324b + d91e50ebc3009c72b46db84732235edbdefca2e0c4f607a4126605394573ed0ad79d5defc3287425f860d958dcc38ebc8a44f6a99e0b44f42e549307edf49f95 + be2365f02c66b65f3d253ddea8478d410bea3ff9738f7106d6aa43836571ccc5a35f1f2bb8f59c16f34fc62a72745e3a + 85252f5afe7b3aa22edca35ce7e4c964c15f175e42703e1ff2d568305b1e4cbcabce342a80506102a3ff4e07c0016975 + 15ece4d2b9b486c1334975dd5fcc6d079084a46d43aed964b6f160205eb38360 + fdfc2092885b253251fe40c8279217f72e9bf9afc1a6551b31f42326c0b0d69523b41c96995378a6d38045074b66cc4d3fcb13005acc22ddc6431da132b00455 + + + + Apache-2.0 + + + pkg:maven/org.apache.poi/poi@4.1.1?type=jar + + + http://poi.apache.org/ + + + http://mail-archives.apache.org/mod_mbox/poi-user/ + + + + + The Apache Software Foundation + commons-codec + commons-codec + 1.13 + The Apache Commons Codec package contains simple encoder and decoders for + various formats such as projx64 and Hexadecimal. In addition to these + widely used encoders and decoders, the codec package also maintains a + collection of phonetic encoding utilities. + + 5085f186156822fa3a02e55bcd5584a8 + 3f18e1aa31031d89db6f01ba05d501258ce69d2c + 61f7a3079e92b9fdd605238d0295af5fd11ac411a0a0af48deace1f6c5ffa072 + e78265b77a4b69d8d66c45f98b70fb32d84b214a4323b86e9191ffc279bb271243b43b7d38edbc2ba8a1f319b6d642ab76a6c40c9681cea8b6ebd5b79c3a8b93 + 24bdb183e7c6204f7b725467d0936adb9d75f3be7dfd403fb37e4e8dea4506665e447dedb27e7fdb7b284b07e6c6ccb4 + fb6ca7b9dc4e65f502a13849b5f6cace152ce99e5b1773e491fe4b2c7a259360b4fb940e5ea8ac57d4ea33cf288dbc55 + 59aa868e1b30bdb69d986248abf5d318c1122058b380e03b8de0f10bc59e5b5d + aa59b6235ef5fdd249b906a2165693fa859d6901f8cc761b2dbe01985c4447cc9fb733b16a34c1b15dcbdc20e4eaf673606680c8049c7ef518be5a294393264c + + + + Apache-2.0 + + + pkg:maven/commons-codec/commons-codec@1.13?type=jar + + + https://commons.apache.org/proper/commons-codec/ + + + https://builds.apache.org/ + + + https://repository.apache.org/service/local/staging/deploy/maven2 + + + https://issues.apache.org/jira/browse/CODEC + + + https://mail-archives.apache.org/mod_mbox/commons-user/ + + + https://github.com/apache/commons-codec + + + + + The Apache Software Foundation + org.apache.commons + commons-math3 + 3.6.1 + The Apache Commons Math project is a library of lightweight, self-contained mathematics and statistics components addressing the most common practical problems not immediately available in the Java programming language or commons-lang. + + 5b730d97e4e6368069de1983937c508e + e4ba98f1d4b3c80ec46392f25e094a6a2e58fcbf + 1e56d7b058d28b65abd256b8458e3885b674c1d588fa43cd7d1cbb9c7ef2b308 + 8bc2438b3b4d9a6be4a47a58410b2d4d0e56e05787ab24badab8cbc9075d61857e8d2f0bffedad33f18f8a356541d00f80a8597b5dedb995be8480d693d03226 + 95d1186d9ca06a3ea2e6437ddec3a55698e2493d3e72f6f554746b74fa929892bd71a2ab501a4e7b1ce56b7cd64e7ab4 + f85bb3e46a00fc4940a3be1331301302b0eb728e2d1fe2c1842d4761e5a0bc7a420c0c705ae60250ca1c7b03d3694b9e + 919c15ae4b1aef2a58aa6ea4b700bc5562e78dbc382f3393169425ca91ad368c + dbe54d586c898cdbd7df6c31c131ca3525db17fcea5c7f5da8cbfe617e2afc667289290c76771ec5c9567a56fb2b177b0a31d67abcc656410c90287da4d88999 + + + + Apache-2.0 + + + pkg:maven/org.apache.commons/commons-math3@3.6.1?type=jar + + + http://commons.apache.org/proper/commons-math/ + + + https://continuum-ci.apache.org/ + + + https://repository.apache.org/service/local/staging/deploy/maven2 + + + http://issues.apache.org/jira/browse/MATH + + + http://mail-archives.apache.org/mod_mbox/commons-user/ + + + https://git-wip-us.apache.org/repos/asf?p=commons-math.git + + + + + org.bouncycastle + bcmail-jdk15on + 1.68 + The Bouncy Castle Java S/MIME APIs for handling S/MIME protocols. This jar contains S/MIME APIs for JDK 1.5 and up. The APIs can be used in conjunction with a JCE/JCA provider such as the one provided with the Bouncy Castle Cryptography APIs. The JavaMail API and the Java activation framework will also be needed. + + 612e03e1c69a53e7165b4765cf47815e + e7bf3026b44293f2213f369d8c9051d2e6b828cf + a5bc386101e85aa5dbe6a47963415f472674d5ee0b2229642b23c195e3da6820 + bcdf7551e6617a0b80a7183111be075446185ee87ef9fa1b4e08a99be39aace4a35ee347fbcaa86a657a26e0c06e77c8ae0f529010fba3e2428f736f57e527e3 + 0ff780fb1657f39f0aec3cd3d7e4dee5b71ae39d09fe58a6eb9d5c98cd2523663189ca6074ba0ffbc517a1be07379647 + 6c882d31e1105e9a1da22b61802bdc57e746418281cd253e2f4f55b29062c067e16ca7f86c954e189a61256e05553cba + 842daa5c71fcd38c667e7dabd13f4f0239d79ca18341f363bbe5a60ab3683304 + da4ddd3aedc3a10ee762cb80062c1af373fa3b1ef17aa8de23219b93996fe54380e50eac184631ac6aa8772a98038644a52227259551a09ee7948b7ff311bb65 + + + + Bouncy Castle Licence + http://www.bouncycastle.org/licence.html + + + pkg:maven/org.bouncycastle/bcmail-jdk15on@1.68?type=jar + + + http://www.bouncycastle.org/java.html + + + https://github.com/bcgit/bc-java/issues + + + https://github.com/bcgit/bc-java + + + + + org.bouncycastle + bcpkix-jdk15on + 1.68 + The Bouncy Castle Java APIs for CMS, PKCS, EAC, TSP, CMP, CRMF, OCSP, and certificate generation. This jar contains APIs for JDK 1.5 and up. The APIs can be used in conjunction with a JCE/JCA provider such as the one provided with the Bouncy Castle Cryptography APIs. + + 37e058210e056a04d4521d8185fb0051 + 81da950604ff0b2652348cbd2b48fde46ced9867 + fb8d0f8f673ad6e16c604732093d7aa31b26ff4e0bd9cae1d7f99984c06b8a0f + 1d18b43537370e0c7eb29332c9f9a4f0162f9bf68a79d6df3fb76080a8b96e1e378537e5a7aff481f2e1390cf45558b18679a1557ffd3c3b670b7ba1d625e8dd + 964091a9942de802ef279f650e07bdd9ec116eaf5eaf5f8e4f616e54fc48437ef0ff4d1401361d2644c05b4c2d6c31df + 07d80d3c005003db33c466c0c85fd40dce451536845f7ed781ad0a30cc88c9ca13124af6568cd7d7cc4d554a1c984997 + 2440b5f60bc8015d6203d57dd0a31545f7650165064e5c78bad4c21af286fec6 + bd8ad0d429602bb75826e9a1918efeae9055ecddd114e82f9224f00dfc7664a72da58f5167c5abf29f3df46b11489dc3de209480bee62a47495554c7e80f9c4f + + + + Bouncy Castle Licence + http://www.bouncycastle.org/licence.html + + + pkg:maven/org.bouncycastle/bcpkix-jdk15on@1.68?type=jar + + + http://www.bouncycastle.org/java.html + + + https://github.com/bcgit/bc-java/issues + + + https://github.com/bcgit/bc-java + + + + + Apache Software Foundation + org.apache.groovy + groovy + 4.0.1 + Groovy: A powerful multi-faceted language for the JVM + optional + + 48414dcb17334f6562d16c9737f29523 + d4c93c131c2a3c508835bf7335fa46ba2a76310e + 0bdf0468e45c6a7b793291985c812e29ffbc0a1a87c2534d185875b423b1ae8a + 4631b6b3b4b0ce95dbf16f5fbee1c7fb2e7b88f0cc8d2c169958a3bc1d354e2145cc869e9c8f139f8f5b02556d6ca2fd26b9a2c12a8944e5d416131369dcaaf6 + f5bfc164d0aee987a98023c576cc0fc956e401150dfac8f71f0d7705acd019d203be422473c7e233e561dfb3046bf734 + c315cb4906b706bca0d791683152e2c6e383920932ad20bbcd3c168eee23fc8670a4cd161696d9daefb98c1e6c6ce18c + 39cefbed03e287b5965e5b15598e1b8cb3e7809ca00af43d45800cc9a1dfc0ab + 56ca49b5694c882176a5917f7e6fdf6c5a2ac0dd085206e1abc719aa3be8d8eda859470ea0bf1dfae8bf95c1cbd03efa186c70462dd91866c60137f013c75fbe + + + + Apache-2.0 + + + pkg:maven/org.apache.groovy/groovy@4.0.1?type=jar + + + https://groovy-lang.org + + + https://issues.apache.org/jira/browse/GROOVY + + + https://mail-archives.apache.org/mod_mbox/groovy-dev/ + + + https://github.com/apache/groovy.git + + + + + Apache Software Foundation + org.apache.groovy + groovy-jsr223 + 4.0.1 + Groovy: A powerful multi-faceted language for the JVM + optional + + e8d1a08a968e5323683a21b0e2fe9889 + 69a7cb0185a8335cb00fe09e6dedd19fc7921e6e + 0574f8b7f18edfc4a6150fd8d89ff755c44949159f84d787733b2a34207aa5b6 + 2b15ceb6d77209eca45aa65fa79d4d05cf528088e890729244cdd77d345a147c24f609b14ee529e1e5eacde172f670d58fb215069d45249c34aae2388b398e10 + 3ae843d83a607651e652eef9777a0e620945fb0bb4fda7459f1f4ae83ded6189db3506171c81ad7ef08ba8e1a2733f77 + e545855c33e84da27949084f746eab6a9ca5c82b05cd73b704a6ac5e8fbba696855d39ce6c8061cfdb55ce69759cb5fa + 7de7812e59bd0fe7730f244c45f46ba8c66be27b8dde372b45b249727d2f8eca + e8d1e6e175eedce3627d4544702a3d6016e280eb1bbccf2673a993d6f4e0222f7fb73680ab720158a2c3c7a90b073246413af48cdeb98af6791e3347346e00c7 + + + + Apache-2.0 + + + pkg:maven/org.apache.groovy/groovy-jsr223@4.0.1?type=jar + + + https://groovy-lang.org + + + https://issues.apache.org/jira/browse/GROOVY + + + https://mail-archives.apache.org/mod_mbox/groovy-dev/ + + + https://github.com/apache/groovy.git + + + + + The Apache Software Foundation + commons-pool + commons-pool + 1.6 + Commons Object Pooling Library + optional + + 5ca02245c829422176d23fa530e919cc + 4572d589699f09d866a226a14b7f4323c6d8f040 + 46c42b4a38dc6b2db53a9ee5c92c63db103665d56694e2cfce2c95d51a6860cc + 3bf5bcdbd7342e794f95747421c510778d8656d7ca901eb9b0fd15b9edb5b470e799c76abce9fe5958355d0d6067565ab71897d02462232176a0145a7d546e69 + 9dd327008604be77bad6fcf249f2806c9b6b6b9858ff35ceff74d6954ea5f66c162c92ba7a24f5da3ad9694b445a644a + c3295ce0994916658580fc046aa12e48559f43cde61a95aeb3ffe87d71b8b797ac9a2537825cc338ced5c09e37fe5285 + 5c20f6777fbb2221e461f2855a99d7761635a0eaaf0fd992f9aeb8042a185c95 + a5294db60c04c0603d982af2c2b46f0052c5ff73f8a4298a01c378050f3476199e5c678b754604a76d68eb537ba4d4f30edddb16a8447b76b5b947922a00f5f2 + + + + Apache-2.0 + + + pkg:maven/commons-pool/commons-pool@1.6?type=jar + + + http://commons.apache.org/pool/ + + + http://vmbuild.apache.org/continuum/ + + + https://repository.apache.org/service/local/staging/deploy/maven2 + + + http://issues.apache.org/jira/browse/POOL + + + http://mail-archives.apache.org/mod_mbox/commons-user/ + + + http://svn.apache.org/viewvc/commons/proper/pool/trunk + + + + + OWASP + com.googlecode.owasp-java-html-sanitizer + owasp-java-html-sanitizer + 20181114.1 + Takes third-party HTML and produces HTML that is safe to embed in + your web application. + Fast and easy to configure. + optional + + 9c181204b3e8e930e29f1521d948ed57 + 2f3451beb6acc4ccd1c2f07f37d00039b0ed3775 + 7d2a60ed395f4ce73c85006c7228f92908431ae460f734ae220db05e4716b75f + 066542bf36918d1a1a3bc0f64be7d26a7f2c83da2dfbc69ad9119abe0e6789047fad914db65ddc00c7a883178b2c9a78135a771fad94ad4cc4bad43e5bf6d0c8 + c44449cc10c4557f9462c22a678a364011c4a6c99e30aa22f49b305ff1978f9465544fcdff83b23ace9ccdab1c747943 + 3e54c60be2929e7a9fad671321d8ce0f86b1483a15f3ffe8e1ec04a0037500795224d93fa3daf64a9547e86c8bbedf26 + 2191f338cfe21dfecc8b04acac7676d78eab9182e88c662040e46b79aeb51dbd + e66d2fdb8756d9506a14856d323701947ffe41c556d22367ed6b1d7e4dc9404269c47e6c06900ea8a477f96c4d4371db4dfe299d1950c477ff33ddd25de5791a + + + + Apache-2.0 + + + pkg:maven/com.googlecode.owasp-java-html-sanitizer/owasp-java-html-sanitizer@20181114.1?type=jar + + + https://github.com/OWASP/java-html-sanitizer/owasp-java-html-sanitizer + + + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + https://github.com/OWASP/java-html-sanitizer/issues + + + https://groups.google.com/forum/#!forum/owasp-java-html-sanitizer-support + + + https://github.com/OWASP/java-html-sanitizer/owasp-java-html-sanitizer + + + + + Oracle + javax.mail + mail + 1.4.7 + JavaMail API (compat) + optional + + 77f53ff0c78ba43c4812ecc9f53e20f8 + 9add058589d5d85adeb625859bf2c5eeaaedf12d + 78c33b4f7c7b60f4b680f2d2405b1f063d71929cf1a4fbc328888379f365fcfb + 331d2ecda625f4ad8a2c2539b577e9906787e7ef08d47683f45dd6fff18e3b7601071f20970896210bd26498018aa570fe2ab4bfd7f7084068a234a809bbd481 + 9b2529ac136de86400b6eaa9eb887cdc3de3cd993131caf99ce808bc2ac208b01772018aa38d49ca0bd1bc962e08834a + 4c86276795145265031b3ea63c097106df20076151c8a3a682a7092d68d91f243697286e3f543e8a1ef1e46ed4bb157e + eef5fbcc453d8f709bc49c5f3d4f02a7cd8437f62cab9eb6b5396713a2098973 + c28159ba68a18d7d57428fcd75a9b019b3e79e573debbeef2859ba522309b9362552c861063a5ab541175bfb0ae69c08e5fa237f3ed3b05160de46e4fd2d8132 + + + + CDDL + http://www.sun.com/cddl + + + pkg:maven/javax.mail/mail@1.4.7?type=jar + + + http://kenai.com/projects/javamail/mail + + + https://maven.java.net/service/local/staging/deploy/maven2/ + + + http://kenai.com/bugzilla + + + http://kenai.com/hg/javamail~mercurial/mail + + + + + javax.activation + activation + 1.1 + JavaBeans Activation Framework (JAF) is a standard extension to the Java platform that lets you take advantage of standard services to: determine the type of an arbitrary piece of data; encapsulate access to it; discover the operations available on it; and instantiate the appropriate bean to perform the operation(s). + + 8ae38e87cd4f86059c0294a8fe3e0b18 + e6cb541461c2834bdea3eb920f1884d1eb508b50 + 2881c79c9d6ef01c58e62beea13e9d1ac8b8baa16f2fc198ad6e6776defdcdd3 + c0ff5bf3ace7acc1b31fcc109cee48d9eb8f025ae15a31dc91eca760933bdb97c93f05d61e95af1e317859d72e5f179f897f5bf3df0e3810f4212d43bacee4bd + c4ee54d80a2e67e819700051d6cfa01a17631c89f942b8690afb601e491f02d7497fe57bd5c70edfb9b444ae8222b846 + de0777d2d1d7aad105defb12aed17ef38abfe89db2449c5243fa3c69304ea24dd8df0881330351d0733313e8f7252814 + 5fb94d2742cc3d44abad42c5d61b9c7464a2ef33bc58b4b5b121d49799123460 + c5e37fe3d9c420a9035f1160eb1d396e94f01851c01c6e2f19f19a221bfc484e63f9660c7377f58aa65246b95a9eb799ac4e6798c0b20f658edf00a4435e1efa + + + + CDDL-1.0 + + + pkg:maven/javax.activation/activation@1.1?type=jar + + + http://java.sun.com/products/javabeans/jaf/index.jsp + + + https://maven-repository.dev.java.net/nonav/repository/javax.activation/jars/activation-1.1.jar + + + + + net.javacrumbs.shedlock + shedlock-provider-jdbc + 4.34.0 + Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/ + optional + + d0c9cfb0e9a678933a0a8b78274e0862 + dab2cc4c9779a45bcd255f326e92c6ba815f0560 + 5edcfdf31d46d223f23227328751aff5555001a2e939e451472ac9dd3a744e7a + 136abe6f2e21b4c875f8728a843c47ef399c3b5c6c0b8579006e5bd8748732899a57b2bdd4bea29acc1d03997eea8b57845d1a5a9ddbeafa339ed3b8e26a7060 + 7e3845c7c71b1322fd497cd3f5f9e8f1682795308b52f708f3ab4f8b3759728793e8b1407570ff7ef2c51f7d5ead8034 + e11be61dd4c24acb773ee5f2a4d302d635629b1a9b754ee3d738023eeaf1de31d5f52d7a90206451bc8103d3d166ee47 + 85ca8906bb7b2e772e1717372a2739a7bf33b2599c21ed21ce4ab803c27baa79 + 21d6d846134846b05ae60a69cf4f2b707b8c192f416fdce7a1d9f025fba45349d76902ab7e0962083e650f15ace02e6966507f3057ca2c7b64c6980a09331778 + + + + Apache-2.0 + + + pkg:maven/net.javacrumbs.shedlock/shedlock-provider-jdbc@4.34.0?type=jar + + + http://nexus.sonatype.org/oss-repository-hosting.html/shedlock-parent/providers/jdbc/shedlock-provider-jdbc + + + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + scm:git:git@github.com:lukas-krecan/ShedLock.git/providers/jdbc/shedlock-provider-jdbc + + + + + net.javacrumbs.shedlock + shedlock-provider-jdbc-internal + 4.34.0 + Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/ + + 011dd5bf190e939178688801dd5e9602 + 50ae171f7550d30acaa8692c4b4ed304f8d42f11 + f25ab558db71db9fe4ddb0028662688b8801db37f2fb6a7a98a019f18aa1a7a6 + b6aa165407e26b4935396d7b2b6a49652769c168c3261cc40221fdf78549d6c44ef53a742e39b9de95858f11b0b320cc74180e1c45c26d82f40abae0fb9504a1 + 0a0e017833fbfebb1412ade3378a5585f9acdf97e49d4c49115ce8e883acef8f384e0105ac7c14e698eded1e0fdf2ec8 + f892609902ddef98f3c00a96f156a88c53d08a3eec77ae4b1ced869ad113ec54ab0e11a6734a39e99cac4e8a57f0a8fe + 39b0768684cf113578f7677706b284d9228e98c72428563ecb11a32240fdccd9 + 56d9fd566c8e5848e72662c63744d483372dd5397f3b1650e9dc1de95e7277f375907cbb61929590e4af47e46eef0ade42de39ecf10b81674609f7e48d93c368 + + + + Apache-2.0 + + + pkg:maven/net.javacrumbs.shedlock/shedlock-provider-jdbc-internal@4.34.0?type=jar + + + http://nexus.sonatype.org/oss-repository-hosting.html/shedlock-parent/providers/jdbc/shedlock-provider-jdbc-internal + + + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + scm:git:git@github.com:lukas-krecan/ShedLock.git/providers/jdbc/shedlock-provider-jdbc-internal + + + + + net.javacrumbs.shedlock + shedlock-core + 4.34.0 + Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/ + + 8f4e5718120fd528c532518947ca26b6 + b3cae5abdc11ba461ec7a8fa4a8f383407decb0c + 3820c33e5adb2b68e1ded35f6d54734ded9ae2a086089794bc0f797a93305eed + 1f7df6e5ce59e8c808e3bb1d86f92d3796ee577cd4d65c52785c7323c8537e1ad1227191eb6aa1978768ec2cfdfcc5c5cd46397c6ffd554d3cd9c8d1d643b6aa + 9eb1946fbd5f88f18c9e697d038e78baa1460795cece6735e2d0793a2fa003798eee27054c3b10d4aded21794a98e158 + d63a96bc778b0fb07813de55225117b01aac655c45e00afa71eeed5fa2077011b26871e1264cb33f453613fe1f4b5380 + f9fcd1d8365c74f485378178867bf03f26a8b6ee23619c7812328cc79c69c0a7 + 3fbef1b5e4026bb1e2cd412f949eded21540f3144a57e1c9ce6551a8a0375bb44674baa6283bd6f7b7029f93df068978f3f49d7ec5b2fdea7edc94c6b55060a5 + + + + Apache-2.0 + + + pkg:maven/net.javacrumbs.shedlock/shedlock-core@4.34.0?type=jar + + + http://nexus.sonatype.org/oss-repository-hosting.html/shedlock-parent/shedlock-core + + + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + scm:git:git@github.com:lukas-krecan/ShedLock.git/shedlock-core + + + + + taglibs + standard + 1.0.6 + optional + + e56f6a326555b0192208464567b11c2c + 72b2dab3d9723943f6f6839ef84ccc25a087e5fa + e8c513e3d2ab17c39aec36167cc03d8bee9683f232b754b6a63c54c3eb25a8c4 + 8e7af3b857d14f14b4091ba13f6e3e400407490371eece5a66c957c3430a5762075fcc7f881f16ba4db998da7ba2b9c99de98172005788e4efa2830739288356 + 60335c2309daeb7109e8d932ce5fbc7cc5665f55a97f7c7f85c244de583bc2cdd07488b698abd6e822b4b53d1949455c + a205de635cc74dffbbe053fc66ed1b485e22491778e24163bee55c81347d66b5785c44641001d99f6aed0aab8563fd22 + 5131c301d9355e48b7469c82bcc64cf014dd835754a3cd8e89fa5c2139e43302 + 930fc240ac9a28d6a4d17272b657cb045840c088d169878fc1a5a100609402d77898811dabee1cf35d977d8267092b02cfe196a722c33e9bf06b9b68a5200fbb + + + pkg:maven/taglibs/standard@1.0.6?type=jar + + + javax.servlet + jstl + 1.2 + optional + + 51e15f798e69358cb893e38c50596b9b + 74aca283cd4f4b4f3e425f5820cda58f44409547 + c6273119354a41522877e663582041012b22f8204fe72bba337ed84c7e649b0a + fb6fe33922631bba21b606cb5d53c4457071e695ec5632205185281e7db3e2d63d95248b43b9c7fb2cb5042d14a267b87d2c5da742c989174c3526dccf23aeec + 750771b79ef083a19d20a7b384c166893c9045ebbb9428b641d0bafd8101615652d50b095e3647d2d849fb79b822b109 + 98a520ca2dfd326e210fee9dac631e6fc21315ae6f8eb93c1a29bf4cd7b7a5fe880aaeafb73d14d5e6638ea72ead222c + 6f412b6fb48e4eafde516fc2803e0f40b09e2b6b090a798094430c0a126da654 + d67e63b347426c3e547e5fa6d6d8285dc5b2f9ba212355d1d909ffae336f1475b18133e30ee0bf84acaac9f8007c52f1c94fb2cda1e1e339ba5db5715f981927 + + + pkg:maven/javax.servlet/jstl@1.2?type=jar + + + javax.servlet.jsp + jsp-api + 2.1 + optional + + b8a34113a3a1ce29c8c60d7141f5a704 + 63f943103f250ef1f3a4d5e94d145a0f961f5316 + 545f4e7dc678ffb4cf8bd0fd40b4a4470a409a787c0ea7d0ad2f08d56112987b + f320915bf27b05f5f93a69572ff0dad6e68f030b6f0fcb1832f80f7ffe56dba9e0575dd8e6b0425b3704ac75ea2b4a7656bdad64b8cc8610bfdcd5bc1989dcc5 + d4017a6b2b171512c97a00a9d84dbe60dd48b233964f1d4c1baa260ff65a7e901c896d38b81a57c98de977b49f0273f4 + 1189f5774712edc77ac37ae5aa9570156f78050003da49c182e1a84651f1149bbdf13e1d752dbd16fe637a9869ec5660 + 68d8a993b6f6c8615f62800c33ad6aecb836bda091da097c640129472f262340 + 09175d9a46ef53e85cf68a779ad515f69f4643d3cef6b96a8f147283d8a61e533ab2cca1f217365180dcbcbd67f8d969ebcae085307ba4579f1f6a73cb657fe6 + + + pkg:maven/javax.servlet.jsp/jsp-api@2.1?type=jar + + + com.google.guava + guava + 16.0 + Guava is a suite of core and expanded libraries that include + utility classes, google's collections, io classes, and much + much more. + + Guava has only one code dependency - javax.annotation, + per the JSR-305 spec. + optional + + 5286e2b8c38ff1ca83fb51e30af71f5a + aca09d2e5e8416bf91550e72281958e35460be52 + fa917f4f3f6a76375134ba89a40d3a1ce807945a91bbdbe39c31f76e03030868 + fb39ed7edab2a627f93d75c62d4ff49f2f0cde81e3b5bfd43f2e4051801612529d2186e0649bfae1ed7a1051b89261c083045e4a3e0c62b0a1e655f85d1e845f + c0c72650fd852b1c3e1c7dabb9dc89a2913af3ee23ab1001b5523b44082ab907248c2caaf07fc1873aa2c52c5970ce4e + ae0c41c576ea836c974148bf54c75c78dbfda12e5ca194e3238c75f2a85797ff90e052a82bd166e4f5ac1ed94989a29c + 39a92873296c7dc95f17427396965c4f52d3d548963b490410c0fd2d2cf2e6ff + 985ef413c1ea7c316e06c426134d919584656ef5044dba2e1dcb41c368bdb199802f4d4752044a50c77e0f1cc6c7b761c1e35201b7f58ed9e0dbdb23d84970df + + + + Apache-2.0 + + + pkg:maven/com.google.guava/guava@16.0?type=jar + + + http://code.google.com/p/guava-libraries/guava + + + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + http://code.google.com/p/guava-libraries/issues + + + http://code.google.com/p/guava-libraries/source/browse/guava + + + + + io.springfox + springfox-oas + 3.0.0 + JSON API documentation for spring projxd applications + optional + + ad8d92b8eb2eb04ca001e3e70cf75a0f + e7bc9c1319cf1b64ae714a249c3db3b8fe01e42b + 917a274fec28497b6cbc100f1166eb542fa8d760dcf2e7089678c5ceef68fa49 + a8ee2548d2619c221e923386bd6e68ff8b1c057ee2d85c43b28f4ec39f68bfb718b671eb7cd061f112f6b4d6086b5e845fbcff0398e204769963725edb02472a + 482b90c7570300605cad9bf7ec8ccef6a495813c46f40c53b580b870d78d0fd3198fa5d878f27f4225f56c0e09b908b8 + 051584ffe011b853d2ef59ab8d11d9502c1544b6ceb953e5f8cdbd768aa78acc8121d35d6d61ab671c3af865a2ef7017 + f16edf000592bcbba29c44a7b3ddf8584a8c277bc5232832e6809e6a9ee0049f + 5eeac068f397f54580bef6479563b39239b1887ae0a279ff3a9a098d170d5db903cc8f168939eb6e61380b9db32b05fa52ce1e312450b6ab917c9a8dd0493814 + + + + Apache-2.0 + + + pkg:maven/io.springfox/springfox-oas@3.0.0?type=jar + + + https://github.com/springfox/springfox + + + scm:git:git@github.com:springfox/springfox.git + + + + + io.swagger.core.v3 + swagger-annotations + 2.1.2 + Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/ + + 629255d4a51b8228e519d8c308b24286 + d407a33aa71444802c640080eb4d5f499b027f96 + 6f442341699cdbcdd74246b82fee96a0c09f0145f48063f17b5b693e3aa40b1a + 98a3ca0dabb6a3f2896bcb8b9407804b6c813b4ee7e3941f0a0828bfbcd88123722f2b51de3a9a659632c053fd06583fb7bae65bfffb748bc4c14ba63c52f376 + 31079c1fdc3894e4cfb25462bf1d146e6341b49ec61c910b8ed0c1ebc2f317881c3d1f87f231268c71a1d87d67171d8b + c72ca5facc429a9daf39e55846e54892743eae7b8c2dd7a2df68188a30a07b029aebc6f277f64a88b06a96f4f2a7558d + 1994a7b468f75771fee1ee0ea17f2115492340f94fd8c9ff85151d590695c7d0 + 47159af817b5d4ad9ba01668e5f781f7498b720cbedf043e43504e77b9941603e0e93ad72e690ac482517027537e6b213a8bd55ea4f3a4cdb4582b5581940363 + + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + pkg:maven/io.swagger.core.v3/swagger-annotations@2.1.2?type=jar + + + https://github.com/swagger-api/swagger-core/modules/swagger-annotations + + + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + https://github.com/swagger-api/swagger-core/issues + + + https://groups.google.com/forum/#!forum/swagger-swaggersocket + + + https://github.com/swagger-api/swagger-core/modules/swagger-annotations + + + + + io.swagger.core.v3 + swagger-models + 2.1.2 + Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/ + + d46f8391f46a9e89dcbbf063c8ba6a6d + e7edeed6456a16d707542c003af03a594ecafe3a + 4835c9ab289138ecb52e56d29d6c7e40edf0450fc1eace20c27b1f325cbcbc0d + ff8ba50d7b53dcb754c346fb79b39f5effda896cd34203ddab680f34284210da666eb3ef1e9c15f64bbaaec45621941e4f95228ca13760678708ca4cfbfc1327 + eefaee39843c07a2f1c88fbbe05ffb914d325f5de43c4b4fdd870d9912a1c44544966bdd18982d54b1c9d2b81a3bf5c9 + deba49f818877613fab73cde12a797810b365503ca85d9e873766ecf0497bcd73f308678bab1d656aab295352a0f4035 + 2c38af111b79bee96a27dae0f9f4ea10fd5a3b9d6b8171c188c10c9c28966ccd + 394f1952d471bca5f1f76b1fa6e83fd4830c6c14b62eec9b5a6f4ab3b266b37dd247f9a5d7a1a0bd934f70bef1cbe2740c161227f250bae23acaf9f8fdcc3c79 + + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + pkg:maven/io.swagger.core.v3/swagger-models@2.1.2?type=jar + + + https://github.com/swagger-api/swagger-core/modules/swagger-models + + + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + https://github.com/swagger-api/swagger-core/issues + + + https://groups.google.com/forum/#!forum/swagger-swaggersocket + + + https://github.com/swagger-api/swagger-core/modules/swagger-models + + + + + io.springfox + springfox-spi + 3.0.0 + JSON API documentation for spring projxd applications + + 011a5c2e6f8d203358beb981a1137971 + bae0b820d4b5a922063d34a42aaf4f763308b828 + 0bc4e5186f423a69096315660fc7134b79c90b87e3195d415cc01227c39d7066 + 0c8d4edb8e3010b3fb74dd51a4eef226a7a583738157e08b22e44306cde7f2a09f0a76685eaf27fa24324d0fa9a08fe857fa934cf1cbc344b04f1e7a84c1dbb1 + 9f69670fed98571427fb635a5d28a56602a8cf139a1d1694d0bf8ea15d24b955cd7ff24f77f91321f70485f1e91fac6d + 3757a88b8f3bd2c2c09f3b7c0e6b744fb0912040484ad6a7db94766f3a09cbed98d552e975aab733a742f178c0d9c88b + 2f3ab746b98b25c6faf6120f9afa3df7c5e307add8c7d87c30f85c2b874810b1 + 9cbc83151ccf06b7328194ed5bc9695275e71de0325dbab0fc39d7e3a3f567a1bcd098d55328ffcc5f814d9f6de866a028fcd0f8af2098f2b3b4ad86bb1c0e3d + + + + Apache-2.0 + + + pkg:maven/io.springfox/springfox-spi@3.0.0?type=jar + + + https://github.com/springfox/springfox + + + scm:git:git@github.com:springfox/springfox.git + + + + + io.springfox + springfox-schema + 3.0.0 + JSON API documentation for spring projxd applications + + 15221503ce9eabdea1ed5c497ee08eea + 32c5d6965617830ef6480fadb9030008945bcd9c + 8ec39395e11faf454c084b5ed5ddea692b9705860b0b9e6720b7b958fb9fb6a6 + 4f1be2230585d3c67d57d00b8320ea2b828905957777b50e0490c21b6daada6709e3e8f9b1d5b55515a6d571c6bf0949882f9d081ed9a088dde674031d9c5499 + 7bebe05b40a8bcb6e07edd50dc0c40e2b8539722b8178ea89a9bc31fdf6cff475e6f723c7f95ff098dd897d0c2f0c25e + 8c8416aaa56cf45fd18b8e1e5459b6b24b67f0a25a368e48d563a6bf090d184a4bcd305df98e2ac3f9386c7d52266a67 + d0b4ed9dc9793ee6ee40f9668eb005f6b1d0c81580c8e5e86825c7ec48d654e1 + 8f9a2b6a65ef40b088a9178663ee6c74261ec146d1e63cb8dd2b85011165d81a8a80667669b39e5c16d8d55576fea96a24bb42b437d5b2b367a820ac68d6b79e + + + + Apache-2.0 + + + pkg:maven/io.springfox/springfox-schema@3.0.0?type=jar + + + https://github.com/springfox/springfox + + + scm:git:git@github.com:springfox/springfox.git + + + + + io.springfox + springfox-core + 3.0.0 + JSON API documentation for spring projxd applications + + 177e816438eea19529ca6c9423c9fdfc + 7c3367ce577c8acd9bf64c74488c9269253516c9 + 284c2422bec76129550e63d911adf73813cba0c4a60dd7b66efb23b99969df3f + cad596b0753b07f20b67e5d469229b3c3cc62fd12651ff91e287407808ce93113655317b6b3f93474cd82702c1073c4a91dd1dcae3fc9ae5ca3d6cbe6ead53af + dd2b2b6013df1986222cde6b395ed9a57a66b4e98d3a58519a7e0f7b11d1c9a04c976c35e7e93ab438e274929a3ced48 + 25b4b1872a7a7ea950ac4dbf3bac36544da30bf4bf5ff72469d81fe3e019d9e129dc27a610b4ded5070ffed121fc3677 + 8d1db8496dda95576ffc9208f50ea80a1ba10ea6ec5fc60ea77afc80f198c5d5 + 1db348e2d62c8dedf606cbb0fd6cf706fb01fce8a769a80937759802c7fdd404b9041652baeda21850bde26c9fbba52912a0088f3bfaf28ebcd09664e66a68c1 + + + + Apache-2.0 + + + pkg:maven/io.springfox/springfox-core@3.0.0?type=jar + + + https://github.com/springfox/springfox + + + scm:git:git@github.com:springfox/springfox.git + + + + + io.springfox + springfox-spring-web + 3.0.0 + JSON API documentation for spring projxd applications + + 4d5902809c88fc4a728583f899479873 + a76f2fbe805bfd2798e20dc8f2cfbfad554d52da + 48e2759084518989cda935e0b2f99c1e6fa6d70f037996454bc5cd4b9074d671 + 2896fe9cfc6c7bbaf4f4eda95b02f358a50519a8ec64c2b35880762b4ceba2c4b5dbe6b199a194ce2aa4410db628ab10be51480c8c4d5cf0a286f9b17c105f87 + cf172bdbc95e43d4fb0f93cd9c64bde8126e7c8b678c7e444c2e4309b7296fbef0662c536ccee3864a611ef5c1a6ffd0 + cebc8d739d17768c3ad765e85dab707ce403b974aa998bd73b3ee6fc7730c53a2714f134b554aab39146eae6ecb9dc15 + f258bfbf3d7d903e5fb8d34fd29ffac36b8512d051c10d04f26d982a6ff3dac8 + 18e2ba37b282a2080f2046f6bb43edc01ee560d30d063934fb4572f3b54d5d536fa8363aa1ba145041da8c48419f1225169b4b854e8dca143e2c38674cdf5073 + + + + Apache-2.0 + + + pkg:maven/io.springfox/springfox-spring-web@3.0.0?type=jar + + + https://github.com/springfox/springfox + + + scm:git:git@github.com:springfox/springfox.git + + + + + io.github.classgraph + classgraph + 4.8.83 + The uber-fast, ultra-lightweight classpath and module scanner for JVM languages. + + cbc2329992d63ef0100735a2a1956238 + 07be289f451cedf9e35ed97caba3953226b4e6d9 + 54d1fb342ed49ea606dfa647879c893eeac61b05d0cdf3207ed9a7591d93335b + 42a3c94f1ab3492a834f3a26da16e7352dbb5082e69b0d726ec8925dd45714369b49cffe54e22f909b09b27911e7e0fa3582ad30506f334c12ba550bdafe0e5a + b17bc8a3354f83c94d027073068d14887c93c5042b6ca324a05f53f0cbc4a340b8e8bf66509e4b886c821c0b2b74a961 + 58625c87298d52d9004a14a42fa6de3be60ea70906362860f76e3a4f203f753dc60825106664d29b207279dfa7ee6e0b + 7ce54fe568a0abaf032225bcb1367e723faf88038cd43494043135b047785045 + 4893de7c3d43b68720584d502ff54054486a0da79df4becab210579abfc3d7cf2ea08b0e0e32b2d12926a13c4247c7a727c2d274ac8826a922e6e6ae4353599c + + + + MIT + + + pkg:maven/io.github.classgraph/classgraph@4.8.83?type=jar + + + https://github.com/classgraph/classgraph + + + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + https://github.com/classgraph/classgraph/issues + + + https://github.com/classgraph/classgraph + + + + + io.springfox + springfox-spring-webmvc + 3.0.0 + JSON API documentation for spring projxd applications + + 8eb674eefd9c462ad6e9c0320ed8463a + 7ed22363fdfd651cd811c0b2391f16bddb91db8b + 84074711feb4e9d13f82274171550a5fe1386674a89f228669996fa9e298cd47 + 8a18bb1ef0aaa6854122276dc778fcd3c35ea37349c9ea5b3f4210f0d9fb1324bac246c277b23fa21dea3c7ccd9cbb6478a36fe9fd01f74e62bf1ad7289755c7 + 2b3a8db158b99aedcb903a39adc6a6ebafb65cd1c61ad367683dd3194aa05d0aabc1406fd1461ccafeadfd282ef60029 + 90e1275a2eb5637a201d9b7d59983d8758ae2471eee367f1f71c5b0f22e8823ba7023462ff58fe83bf462008f9cde906 + 90647f2b0c3a8cc14227dfd8fcf0e4bf864a878ef7cb45bef547554b1113a4d8 + 0f9f4c593696ccbb6ce5a58485b2a065b84d2bed2aed37d5394aadcec81ae93293da7e40017c6f11e6138c11b04f6b9d4c70783736403667614ae4b1c58732f3 + + + + Apache-2.0 + + + pkg:maven/io.springfox/springfox-spring-webmvc@3.0.0?type=jar + + + https://github.com/springfox/springfox + + + scm:git:git@github.com:springfox/springfox.git + + + + + io.springfox + springfox-spring-webflux + 3.0.0 + JSON API documentation for spring projxd applications + + 1cbb459b5a24a079befd6750f5c4df1e + efccbcfe1d23f2ba520bd87cc156bf2b81f3568e + d1c92ac9451d1537bec3806ef9b85ce434977a591659d3bedeab02156965b491 + 26c8af8cf2f10c10c2aed9911487fa1cee5374fbb70970ef3603c476521b8dfa0f20c17d9d527dc8e9ef66eb238fd5ac1af57fc102a82f9417a134af93f34fc0 + 998b923de97cd3d04d4cb331934b978e336a97a26299d74d20b28554e868a642b087834e654e2062ba9d5997bad69452 + cf376e880b9c6a21af29a664487397286e514ba05c6999087b0c4bdea72d82a153b399a2a2b41a79209cce068daa122b + 8bd243d761f6c47fb4d04410dd90df3213ee109822c238775265f9d807e03b36 + 444a130564b3b3975fcf7f28dc5335628b653cbd6bacfd445a65f30a76f854962de56419bf860131db6ea31942bd0364503a3db3654d3b2ad70aca9aa2ffc2a1 + + + + Apache-2.0 + + + pkg:maven/io.springfox/springfox-spring-webflux@3.0.0?type=jar + + + https://github.com/springfox/springfox + + + scm:git:git@github.com:springfox/springfox.git + + + + + io.springfox + springfox-swagger-common + 3.0.0 + JSON API documentation for spring projxd applications + + 9561d63837e1c9c92788ec8a1f9f77f6 + 2e2fae840984cfcabfd50e1b4b1c23422135ba12 + fc7b489fa8664e5b6426ec65034d2760b28d560ede570040316b1fec08411f2a + 0a0b01621c75bee2a2d618a0cbe9955fcf02089bb1e2e7529e74411041ba052c5d647bfe75e4a760c1caf8a6c2155514d9693dbd2c7388b8e1571000eda8dac1 + 92f66c46967f09944830ee91b6df566a9811d1761532bdad9b26f19b80d3189feb6cecf9b93d2f1ac8c5d93d25706f15 + a9176804731fff64f904565085420a2df9726311efb13806513a4f6b1fce85b6c25dc0a3b359b9ef170846a64281fb74 + ae0425981e0d8921143d4287d38364496fbb78c5f79b541d55c18c309e7b929c + 4b959ac52a71dda322471632fffd5264b2b42f7b9b6e2c8f72fd51a833d85c0d8e9b8be3b5a9d18fb0831a340380d76257ef8f2295db6550b7f40af9f351f2c0 + + + + Apache-2.0 + + + pkg:maven/io.springfox/springfox-swagger-common@3.0.0?type=jar + + + https://github.com/springfox/springfox + + + scm:git:git@github.com:springfox/springfox.git + + + + + Pivotal Software, Inc. + org.springframework.plugin + spring-plugin-core + 2.0.0.RELEASE + Core plugin infrastructure + + a89cd7b77db3ed7d0c9ea71ee9784e2e + 95fc8c13037630f4aba9c51141f535becec00fe6 + 6e6d026d6b572495533692173a264c6959f48d5ef7f3d6faf4555a577d4a38d2 + 2ea2c22caf7c89a7878a156c7adfb1154c9f194a4cc2d77aabd5f003d480a5705b86535fc9a5afcf863985437c820356e41b8f2f5e51f3d869ce63c2dcf67c60 + b3fb4671c3cb504a0ad0213e55d1adeada8df67d47eb51f7fa2826ba6204aa661a3bfc742d5080c840b90c08eaaaf9d1 + cb2555d329d3a2e5904bc50021eee7fce678e4d769144fd19fcd3b1e135dc4a330d048be91e01133233c55edbc1c1434 + 17e03ea8f3cc139df934330987e13e91c3b1fe455aac7f6c08a8f80d74fda9a1 + c56f48c8ec1cf9a4c0bd0dd6ee21f2f3070b8f75fdc949622e5e125975cc1221aca1fd4b8ed2ba96bc3cfeca397b61e286ca417c21144580436d932522fb2aa0 + + + + Apache-2.0 + + + pkg:maven/org.springframework.plugin/spring-plugin-core@2.0.0.RELEASE?type=jar + + + https://github.com/spring-projects/spring-plugin/spring-plugin-core + + + https://build.springsource.org/browse/PLUGIN-MASTER + + + https://github.com/spring-projects/spring-plugin/issues + + + https://github.com/spring-projects/spring-plugin/spring-plugin-core + + + + + Pivotal Software, Inc. + org.springframework.plugin + spring-plugin-metadata + 2.0.0.RELEASE + Extension package for metadata projxd plugins + + 6ca48881279237978de209a68c25599f + 6fb3a1fc0f05dc826687b7686ad8a5960ecdd57c + 174c6d6ead34d2493efe0c101aec7051d6c8793ca6c4202f271dee9cd7658498 + 7dd7f4d243fe4ab385aa40a9d2d69bab5ed84a62c9a393ea41c013808ef608c0314014197aeadf1dc41090689bd4a63cf70a7e63c58466f3b8f8c83dc0e52e25 + 5ed8b0a22553a6cb62cad1a386b9986bf7cb606b0e8f03648348149bf122d9397b3db7727d77ba71f06f620e5b469963 + 49e10d5f242a08d3ab5e0cebfab9995882e117ecdaa66e83f82e653dba9d4aebe524525765a6e820caa2f0d47ae82526 + 921733f1871e92ca15e4ea27565b7dca0391add9db9e904fb094d03aefba026c + d90c226a92bc71838a448946b438ef3e88e6333f40478144b96449f3d10e18960a8367cfa92d777d72258eb9ef41eda4b150aa8a192cb65b69507b3e8a83b86b + + + + Apache-2.0 + + + pkg:maven/org.springframework.plugin/spring-plugin-metadata@2.0.0.RELEASE?type=jar + + + https://github.com/spring-projects/spring-plugin/spring-plugin-metadata + + + https://build.springsource.org/browse/PLUGIN-MASTER + + + https://github.com/spring-projects/spring-plugin/issues + + + https://github.com/spring-projects/spring-plugin/spring-plugin-metadata + + + + + org.mapstruct + mapstruct + 1.3.1.Final + An annotation processor for generating type-safe bean mappers + + bcbcb2a13d6d7fbf8674f1eac5452b72 + 6ab184bbc7a7029738277a244e4c535fcdc3f558 + 567c4ce1145ee888716d4c1b00ef48b98256b22fbf0738be77ce1095e0fb9fcf + b6fb48cb48639b277c47ffdd1123cc54d8eb61194a3aaf6d363f6cfabcfe4ac27f4de3c25191f4642836b25ddabbd84834a4de99e781c1e750b1985ef5d6b7c3 + a9ce74dce5cd2b542e94e3c3629e2a7bff5fe46e03430072220d72e2c61e9b9e686eda96386fbfefb28cf9015b274424 + fad496a333fc302dda84d0019b394fcc6c72ba3390b9ddbd6225639058dc1d7e9d4057f09243e655ad1d1f32f4a87036 + 32a47bb295ecdff5aba58887ff6bd688f0893d2ce81a31f5e8fcf3d746810dff + 025f4c4ee18bc676229e6b667fc59d993f45d62493f4d347e5c033671535e927e8e11682de4f70d90911ba2cbc1835473e1119ef31704f869940f84afc231fab + + + + Apache-2.0 + + + pkg:maven/org.mapstruct/mapstruct@1.3.1.Final?type=jar + + + http://mapstruct.org/mapstruct/ + + + https://travis-ci.org/mapstruct/mapstruct + + + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + https://github.com/mapstruct/mapstruct/issues + + + https://groups.google.com/forum/?fromgroups#!forum/mapstruct-users + + + https://github.com/mapstruct/mapstruct/mapstruct/ + + + + + io.springfox + springfox-swagger-ui + 3.0.0 + JSON API documentation for spring projxd applications + optional + + 5f0f33ea8f709abf2465a31644fe0afb + 1e665fbe22148f7c36fa8a08e515a0047cd4390b + 40c2556b0c14e06602d23b6fbbad60ab6712e21e63636099035bb1a433cee478 + 817a7dfbd9ea08265eb00cf32fb6093522df3d7648c188eacfe576450af18690dc592c6349b4fc4b293222030e140d823d537deb6d5cfd7a1f30605441d4d86f + 3ccfee3413ff1a9e00dc21242d4dec6898c99edc4121d09dacc71276325dd398ca2030e971af3633e44942fb68e2b580 + bf1d398de6e347bb9ba498020f3f3268c34f2203463c80eca1a70f9c4e445ec6f16c800aa646d740d7a0e95f498d7312 + e20bb0752c84631102fb72ff28887c18f9aaa94693f38a080982c326c1fe8066 + eed1bf1f9408969922a5051c732581bb0b9af7f814fc9f76421ae309b8da3b6e5c90f885f31cb539be7d3fcc0f9d4ea444658446ee943cd5e8fd5bc46e93c7be + + + + Apache-2.0 + + + pkg:maven/io.springfox/springfox-swagger-ui@3.0.0?type=jar + + + https://github.com/springfox/springfox + + + scm:git:git@github.com:springfox/springfox.git + + + + + io.springfox + springfox-swagger2 + 3.0.0 + JSON API documentation for spring projxd applications + optional + + eedf7bdba06b0f68907cbf56fac33e6b + 7bcb18d496576eff76ef7bb72684e149cbb75c1d + 3be97aec137799b6826ea6647e587ca09759bcc01481e0fb6926147cae1dd6d6 + 8fa09da6dd2c2ad6d9c4229cfa0530dc7b2979d48713b999186092d933811ed464c530d85a5d579c988fc47b7d9dd909fd6a4cf8c3ca454d3efe6a908ea3105f + 6a3edc26b3bf652805ec5f7787c146c1b76c13205e3afb1489849eaf9f04e02961fd3c4a54f550e4756fd05907dc0805 + 575d5be27d961c7123048ec42712a81e4fcdee087383a0b159a05036dfd6d9a4cd096f5961554ca4cec2ccdeae2687d1 + cc781e7d4b9aeff5e4dfccba53dc8328716331ced5d39a102c6147d0dc9b3979 + 929237a4e545b0addee36eda524e1fd03eda8bf39b23866c0a1c20e8073e96550f3ab9b88af07444fbbecb56d2a4135a202532557b9772f2234fdc0ef87a94d5 + + + + Apache-2.0 + + + pkg:maven/io.springfox/springfox-swagger2@3.0.0?type=jar + + + https://github.com/springfox/springfox + + + scm:git:git@github.com:springfox/springfox.git + + + + + io.swagger + swagger-annotations + 1.5.20 + Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/ + + 619f94ec2cfa0276622657810eada472 + 16051f93ce11ca489a5313775d825f82fcc2cd6c + 69dee1ef78137a3ac5f9716193224049eab41b83fc6b845c2522efceb0af0273 + d53828e0a4cfb0467dbe3870c61b82f19906d98171a798b451edb5b2262a2c2885e7376c8c2363db114f078a5d28550b88499d0e25d6a238f06b6312e2c9c953 + d1264155c7f63bc8cb110e1a65a045765f7c146be60bc21868604920145e105da3c737ebd8447a63ea892f6240fcc881 + 54999315ae82cef57e79989d20a5cb34d845bc6245bb38442b586a19261de584609dc7d1ea655c0e97f677410f18d7f9 + 1a5afadd04622d1f91e25a8ac271b54403f277d834b49b6e8898a3fc401d9194 + dcffc7c6a72a3c9d5249d8d0bd936cabf96ae824181b014e6cb242b9b82f6a0ad74532ea7f59311601770bafaa27694dd0685f1eb4d4ffb0034298190d4d186e + + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + pkg:maven/io.swagger/swagger-annotations@1.5.20?type=jar + + + https://github.com/swagger-api/swagger-core/modules/swagger-annotations + + + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + https://github.com/swagger-api/swagger-core/issues + + + https://groups.google.com/forum/#!forum/swagger-swaggersocket + + + https://github.com/swagger-api/swagger-core/modules/swagger-annotations + + + + + io.swagger + swagger-models + 1.5.20 + Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/ + + 9a816507533880637936bee8c27b238e + fb3a23bad80c5ed84db9dd150db2cba699531458 + 0adbb590fc665f17594f8bc7acce6871ed5602c8a50d0ad5419e3b72efaef639 + 9a5db9d57342df308b263e4fcfdbe8e744bbd42b964c249a1788a0c64225a86377a6c83164f8a60e6e3aeda1d68abdcac6cbbd9baf4300511547c3f49165e87e + 346f83bbd71690d2802dd419402c341e6600b3ce31e14dea54a47180a7af6ec41c04ea9c8c128a7f909218a31310c8f1 + 3250092c26c8a7db07bc68f577e215b3edc43ecb03ab9a9a77d7d844a3ac2f9b0d0c67a84964bd63e1e65d15395a651d + c4cf93f342ecf6eb813c6d12f27ef5abd98628f066bfe68ae09d0ebfb4886c03 + 14c67a98df498a5cb03d7f8956ce6d3f063d316a12c768ed856c25c99c266dd47587de571ae101c7e9a2eae9b7d2a57bc706b43db42315117874896dbffc513e + + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + pkg:maven/io.swagger/swagger-models@1.5.20?type=jar + + + https://github.com/swagger-api/swagger-core/modules/swagger-models + + + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + https://github.com/swagger-api/swagger-core/issues + + + https://groups.google.com/forum/#!forum/swagger-swaggersocket + + + https://github.com/swagger-api/swagger-core/modules/swagger-models + + + + + x.site.projx + projx-web-ee-5 + LATEST-SNAPSHOT + pkg:maven/x.site.projx/projx-web-ee-5@LATEST-SNAPSHOT?type=war + + + x.site.projx + projx-ear + LATEST-SNAPSHOT + pkg:maven/x.site.projx/projx-ear@LATEST-SNAPSHOT?type=ear + + + x.site.projx + projx-web-tomcat + LATEST-SNAPSHOT + pkg:maven/x.site.projx/projx-web-tomcat@LATEST-SNAPSHOT?type=war + + + javax.xml + jaxb-impl + 2.1 + POM was created from install:install-file + optional + + 6be2e5c5e88e30e3abd3a65d497404c8 + 8c86d5d4eac7f89cec63432274d712ba82cd201b + 69d4d9e1a75265357d40e8c59e15e5f73a5d84e245fac250005a919543362bdd + 080dd031efe011684723d000b8c9ad8a364fc09e1b0449a4e860443564074b53174f6e47f33c52e06bef450bfa0228bd18ca3c08cb6c24a21dbf0a241a443407 + 7005f8a9dc5e1007a1b07e2efad1bca4edfb2b0329c70b832662c285da4d79ea0c57eb1cadf18cbb69cfdf342a5b6c83 + b828f2cdfcb25c8565a9d61d0261a25722df1fc3b18e8d738cbdded1dd0506e91cb4b58c549c16442a673c93ce447a0b + 6ce7e1702f925ac365ee135e8528cbdb5488676479e7206239673adc5c6fc9e7 + 7cffa2e204ed74b747169b1cc4c235518b39d63e3752032993ec711fde28c73b9ee11bc4117be2143aa68fcf2fa980154790deacec9831191a3d7776e98b3cad + + + pkg:maven/javax.xml/jaxb-impl@2.1?type=jar + + + javax.activation + activation + 1.1.1 + The JavaBeans(TM) Activation Framework is used by the JavaMail(TM) API to manage MIME data + optional + + 46a37512971d8eca81c3fcf245bf07d2 + 485de3a253e23f645037828c07f1d7f1af40763a + ae475120e9fcd99b4b00b38329bd61cdc5eb754eee03fe66c01f50e137724f99 + 49119b0cc3af02700685a55c6f15e6d40643f81640e642b9ea39a59e18d542f8837d30b43b5be006ce1a98c8ec9729bb2165c0442978168f64caa2fc6e3cb93d + 021f29ab14a1db9b27e31778fd5b6ead2ed46fef534cfab6b34b1b839547c78fc39cfb1568f0b2206bb46a98c4b9e1d4 + 9342dea5301c73ed32ec03efaea0f224336a7399674532130a025a85441b0c9e2ae4f6987039ccd337e719528279af23 + c51116dd0dc0668087dcaed49fc497c23269c9718b3fc66bd191eeabf1ad3155 + 7682c02949ff5057100882b2e802fc7afd5df14b77ddadd1dafe3f3bcd55f2e382df377bd3dfc3fa43816496fb441ec02570245e8d762bc975ccc53bc0ae0306 + + + + CDDL-1.0 + + + pkg:maven/javax.activation/activation@1.1.1?type=jar + + + http://java.sun.com/javase/technologies/desktop/javabeans/jaf/index.jsp + + + + + com.oracle.dataprojx.jdbc + ojdbc8 + 19.14.0.0 + Oracle JDBC Driver compatible with JDK8, JDK11, JDK12, JDK13, JDK14 and JDK15 + optional + + 4f2541ceefc3b68f43946e156af7dba5 + 32478d11f8ffd9c62740f1ab067d1f57425f95d6 + 58a14636bf722d425d971c9e72b31ae379eba1c5dc882ed24817376ebc1acaff + 12d19d9de229d04d240977475a2b6e90778916df2775b82cbefebf602154c1c52c27454fc8c658438a28bfd63f39385f856329358d41522537f47c874de5363c + 493d7c8762a439668871e02859ad8704e97f44f8bd26ad971758d2cf28570b878da3e92b1e449e1235729c2f09d2b4fc + a9e9ae7bbd022d10c365339d10604b564698173a6938904fafb59b40680e3f9ffde382c9a393c74a886e40a017e3a853 + 10e98b568b9c159b2f2845f2ad34bb24f03ac2afcdf03ecc3d7a403277eba1b1 + d0cba2f27fcb67f15833986bdace023be816385e864582ada953e8da1c2f1941ebd0aa2c299c7f490a7fea949e0f45818ce486666f1aa633ddeb18177e0523f4 + + + + Oracle Free Use Terms and Conditions (FUTC) + https://www.oracle.com/downloads/licenses/oracle-free-license.html + + + pkg:maven/com.oracle.dataprojx.jdbc/ojdbc8@19.14.0.0?type=jar + + + https://www.oracle.com/dataprojx/technologies/maven-central-guide.html + + + + + + + + Zaxxer.com + com.zaxxer + HikariCP + 5.0.1 + Ultimate JDBC Connection Pool + optional + + 3bc96d2ce8285470da11ec41bff6129f + a74c7f0a37046846e88d54f7cb6ea6d565c65f9c + 26d492397e6775b4296737a8919bf04047afe5827fdd2c08b4557595436b3a2b + 0a932d8c1083d3ba8eb6e004aa1783cc3f6df7424666f1d61ca6606715afbbb3da20bc0b61efd91bb3162f8092100ddad5e90fe019f818c89cc69a8d8d0bd5d5 + 7076c4dfe7763b477aa23309d0103290e035c88478bef5bb2189bff5d7a3942fcf6b510318863b8d55a7495586284d7c + 44ad2bde5beae862db7faba2e6f99b9e49076345f78f94136e5de2e10db972b786a544e009cf162f516953bb159085c6 + 3cd38fb84432c644bd831436b11c9b37be7dc8b2fc72b9517427c0008cc42e46 + 65a38105f390df9a4cfddcf2043206266cf0b2bb31a8797e08338dc4d631da31bae81998eb051e0f2767928783d5af55cc6d4b9bae47ad313cb66195cdc9f7e3 + + + + Apache-2.0 + + + pkg:maven/com.zaxxer/HikariCP@5.0.1?type=jar + + + https://github.com/brettwooldridge/HikariCP + + + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + com.onelogin + java-saml + 2.3.0 + A Java SAML toolkit by OneLogin + optional + + 008d26f393adced6541dd609f6620bdd + 79da3565b1fb9884e903b447211cf6cc24ab2eda + a1e3265b467add8eb6333b6aa3e4e56c0a653d37acf7fd8779cdf38204d2bc06 + 703b78a9261eeb9a0bac9c3c62cb00e50ae5bea40423224f1bd7ef8d6187e4b2a5e87932cd05dd3d51f51d9d56d078b9d5ddcb1ff420ce549d3bef4b5d81b8f9 + a6d6bd269906b52389c043e299e3afbf6b1fa78dafc5a3712dfd839201c06de52fc4f9efaf8379f2eaf5b6bb68724d83 + 90c792622a47355b525d6732b7d1e3871e91cae957809756a73a5e2d91a5a3a33f1602be0443d0c81268644dc176911e + ff2c31c74c259e19a981129f7faa86dc5f6f66bae427b1040d8dd400d6f236ee + 5ec3e091456403db3a6f26066683e9afd0ac345933281826f11502ac8a23753f9049a4d73d2d90e6fe08f79f1019d853d5ab3a854f6ffed589429740caabb24f + + + + MIT + https://opensource.org/licenses/MIT + + + pkg:maven/com.onelogin/java-saml@2.3.0?type=jar + + + https://github.com/onelogin/java-saml/java-saml + + + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + https://github.com/onelogin/java-saml/java-saml + + + + + com.onelogin + java-saml-core + 2.3.0 + A Java SAML toolkit by OneLogin + + 2ef197705cd4baa857c327af0912def3 + 2c2fafd7d5e767d9aae4e03450d3542d48d0b247 + b29e45395f4b8b141e6761dbabb4e4239b3ecb199284f30d688411894a1742fb + e2308999c98b8bbf302032d0663ade93a01f80ecddd317dcbef0f4cc2242e3b95e31fc713e976c332a3eefd51b1ee9256d2115e65e8dadea06bc01a8da9f8312 + 360cd16f6fb049e8055e0004d564ca648adbe0cb3c38d4598a9c79b6c2657c69401b58dd170d074bb593a68f1f8172e2 + af1b8890291c5f3698b7dbc8ea767cfc50de2fb2d49ea0d8e8d5d35d1b03f443855e2a898f65b73fd12a8b2e96d8b2a1 + cf0bf74f9ca7b17c83c8f293b9b7f188a4af8833425d8ce3984d2f7e09acb25d + 3bb15e320cc03e1d3732656e7bd5daa96a2076c3e859ede28b52684e21c3b29a8a93851360d9e9688978492319b1f3900afe5bbd10df5fd51eba8e85ec129525 + + + + MIT + https://opensource.org/licenses/MIT + + + pkg:maven/com.onelogin/java-saml-core@2.3.0?type=jar + + + https://github.com/onelogin/java-saml/java-saml-core + + + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + https://github.com/onelogin/java-saml/java-saml-core + + + + + QOS.ch + org.slf4j + slf4j-api + 1.7.12 + The slf4j API + + 68910bf95dbcf90ce5859128f0f75d1e + 8e20852d05222dc286bf1c71d78d0531e177c317 + 0aee9a77a4940d72932b0d0d9557793f872e66a03f598e473f45e7efecdccf99 + 786acfe09bd99719253da489f0db8fb6d55df2b4f9229f2554154835be517bb91b4b87aab426f8439038c42e2b5981adce355d7c8a266b3125f1c983db2ce83c + 24f7dc1833f8ac750ab97cfdc973e414a6c602ef3b28769f6cdb774db2f732599e1e78cb0b51d30ac5cab04525ea66fd + 9721840fbd6b5da0b4a8d922365e319016d6d6fba04214ea8b701ae9d6f62547ce0d1c864421dee5257495afa790c238 + 1d07dbdb9c326b55e806c58d7d0588f8a71e5548007e02077618d7fc85b5a339 + e97e94667ea1a7380138ec920aa195b5b40efb651b70704fbfb3e4c94a5280c8a5b0616ba92a79e6c87263bdac35e3245255566b2cb6398584d458213ccb2fc5 + + + + MIT + https://opensource.org/licenses/MIT + + + pkg:maven/org.slf4j/slf4j-api@1.7.12?type=jar + + + http://www.slf4j.org + + + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + https://github.com/ceki/slf4j/slf4j-api + + + + + Joda.org + joda-time + joda-time + 2.9.4 + Date and time library to replace JDK date handling + + e255d8f6e705d3e6918198bceb5458a0 + 1c295b462f16702ebe720bbb08f62e1ba80da41b + deef06d5ead0b3f940bf6fd8aba4aea0d5857213a199874d1f7a8e6a6538d133 + b18421085f54cdf1909e94852ec5cc586c766c470373aeeb94dcdcf0fbf24ac70edbbd2d57e808ddaaad34ab27c82cee50df655240df81c5a5de966ed5c62680 + f88e349ce812f574254e831a305a365fa42dc583b3d68c2422c4d79026fca70a0621a70c5d1b04c58f6d99381a3a3b90 + df320b73cacf859ea5cdeb1dfff18ceeb43694257cd796ba1a127290d4f81970de2339f3353ac9a8c82c667a53ee789d + 6a56e15c888add5ff18817e3522647a95c488307773b9b18ea7dcfdad1d7977b + de91c96e29af66d6321448352caf2a8169ff83448c53a268ea387d7b829002f9751987538eab150b88db74b4a290e2b97014c5d41249eaf152df6983a55d2016 + + + + Apache-2.0 + + + pkg:maven/joda-time/joda-time@2.9.4?type=jar + + + http://www.joda.org/joda-time/ + + + http://oss.sonatype.org/content/repositories/joda-releases + + + https://github.com/JodaOrg/joda-time/issues + + + http://sourceforge.net/mailarchive/forum.php?forum_name=joda-interest + + + https://github.com/JodaOrg/joda-time + + + + + The Apache Software Foundation + org.apache.santuario + xmlsec + 2.0.7 + Apache XML Security for Java supports XML-Signature Syntax and Processing, + W3C Recommendation 12 February 2002, and XML Encryption Syntax and + Processing, W3C Recommendation 10 December 2002. As of version 1.4, + the library supports the standard Java API JSR-105: XML Digital Signature APIs. + + 6105e54dd419b20ee397458974340240 + 58f340ddee6c7796ba0d8b0b359ccbeffe8d965d + 79dbbc12c2448d00a630aabcc67bcd6937bcb6659099bc5d5c45a1e4433eeb35 + 26b36ce058fe6de51917c73fad344498dbdda0c25d7bbdc61d42f4d5d49e4aeabf5f045354e628809e578784c0422e86d44808af5125e5f967eaca4d070c2ee6 + 8e717ec171cea4f3357262771671e15bfd13f51be7418a525fd27660edc174c5034fe9c81df4e1865e45289dfb45c666 + df96862fea98ed2fbeefe9f88c0d7adc6a9506343a1d1f71eb9f100843e7355d6d84b9701bb80c4e5a29dcf90b8fd25a + a147009f50a33847ce394febbb8961911cb6fc6e824be8ac3dad11d353f65c2b + 5175032030705a9bfb759fc937d08bf0ee54352b6ab44c310d2a5c122341b7aaadbce4a6a2e6250962a8f738ff547d8f93d21d1f471bc3c6dd238ec0a586350c + + + + Apache-2.0 + + + pkg:maven/org.apache.santuario/xmlsec@2.0.7?type=jar + + + http://santuario.apache.org/ + + + https://repository.apache.org/service/local/staging/deploy/maven2 + + + https://issues.apache.org/jira/browse/SANTUARIO + + + http://news.gmane.org/gmane.text.xml.security.devel + + + http://svn.apache.org/repos/asf/santuario/xml-security-java/tags/xmlsec-2.0.7 + + + + + The Apache Software Foundation + commons-codec + commons-codec + 1.10 + The Apache Commons Codec package contains simple encoder and decoders for + various formats such as projx64 and Hexadecimal. In addition to these + widely used encoders and decoders, the codec package also maintains a + collection of phonetic encoding utilities. + + 353cf6a2bdba09595ccfa073b78c7fcb + 4b95f4897fa13f2cd904aee711aeafc0c5295cd8 + 4241dfa94e711d435f29a4604a3e2de5c4aa3c165e23bd066be6fc1fc4309569 + 8edecc0faf38e8620460909d8191837f34e2bb2ce853677c486c5e79bb79e88d043c3aed69c11f1365c4884827052ee4e1c18ca56e38d1a5bc0ce15c57daeee3 + 8412e1f64746422f1875a811c71c51b6e45512a6255ff47e3b2b437bf6fb12eeea3910e3c1a0bb3caad672d3ae15852d + 7a02456a52fb37324fdc2d31f6ef958b898de479fedf32244facf7104b3dc1834761cc1f90c5dad74be76fcd980d09c5 + 5491c5ce96af7ee3af286d6095baf71cffbc80e110b3a6c5951b3a108d717343 + 473ad932b9f0851c7548e47304ce30567fb528ece28df818b61f42ea04f6198ef60f6f73c7b22cff612d61d3a6efaf0c7a0dec3922fea2bf4493d32f0a6dff41 + + + + Apache-2.0 + + + pkg:maven/commons-codec/commons-codec@1.10?type=jar + + + http://commons.apache.org/proper/commons-codec/ + + + https://continuum-ci.apache.org/ + + + https://repository.apache.org/service/local/staging/deploy/maven2 + + + http://issues.apache.org/jira/browse/CODEC + + + http://mail-archives.apache.org/mod_mbox/commons-user/ + + + http://svn.apache.org/viewvc/commons/proper/codec/trunk + + + + + The Apache Software Foundation + org.apache.taglibs + taglibs-standard-spec + 1.2.5 + An implementation of the JSP Standard Tag Library (JSTL) Specification API. + optional + + 671c434560d04e8f06aac02a413d11e4 + c3bb98c30f75fef1e229d1d03cf8457de22f1ba0 + 81a195f8acab3f072fe4d6c279b7c29575bcac49081076e3d08bbda829275189 + 3d377ed4df8372ab4816f99e53bf874c73338ad13666f1fd5c59d500a26240db3a6c3c06e81e610d2302a96b5d2372175c31008268af97b2fc19fe4b0f8ac174 + 234f41ce921cca050ea67cf582f79ffcddfb2d1193582e5c2a99643c21d3fa3cb3cf3fc55bcf97ba398c6b15c8397666 + 27162c9dd334e43145634b26f83ed9e32f6eb5aaebb49a5317f898bddef2e0f803529ff48615c11ab1907d81a4526325 + 71b308a53e4ab699c05d543db2eca4072a9218b6cbffb2a32ac3b66b0bc3f59c + 2adbbd657a1dfa211ae6f2e610fe3a963d53f58cbdf39e3724cc025b914cee37816d94e8f2c4b4f3b3c2178bb86504b1975d44de8ea23557079508b5f9cfabce + + + + Apache-2.0 + + + pkg:maven/org.apache.taglibs/taglibs-standard-spec@1.2.5?type=jar + + + http://tomcat.apache.org/taglibs/standard-1.2.5/taglibs-standard-spec + + + https://builds.apache.org/job/taglib-standard/ + + + https://repository.apache.org/service/local/staging/deploy/maven2 + + + http://issues.apache.org/bugzilla/ + + + http://mail-archives.apache.org/mod_mbox/tomcat-taglibs-user/ + + + http://svn.apache.org/viewvc/tomcat/taglibs/standard/tags/taglibs-standard-1.2.5/spec + + + + + The Apache Software Foundation + org.apache.taglibs + taglibs-standard-impl + 1.2.5 + An implementation of the JSP Standard Tag Library (JSTL). + optional + + 8e5c8db242fbef3db1acfcbb3bc8ec8b + 9b9783ccb2a323383e6e20e36d368f8997b71967 + d075cb77d94e2d115b4d90a897b57d65cc31ed8e1b95d65361da324642705728 + 4f52748dcc333164a8abbd3a5964072afe6a91d771700bef15385fa33b618cd73cc34d3e2dfc6929cde52c45624b7c7735bf839ddd69c3e23c086672b96039d9 + 144f88ec4e2175ec1cea6715c2da192264cf1b7e5270a582791962ca0be8fd8132ca38dfad7b2536808e4a7a158f2f1e + 2c7169a955dc8e7f2d4726356d005b869ff9013b8b6a3fd906a980d53105845d1db6981074a54d8490d1f2d7c9f3b21d + 23ecadb003653fe7610ae7ad2c6072655119d2e2b18e34575d1c8d7555929767 + f8f3fea62d15e9305299e021c3fc8eee0b8d5af6d0a6d0cff036480f6c2156f8ed924d15bc5f84e3fcd0ad84d63bd2cbb09b944510b9b9417ccb9a8e9b85f984 + + + + Apache-2.0 + + + pkg:maven/org.apache.taglibs/taglibs-standard-impl@1.2.5?type=jar + + + http://tomcat.apache.org/taglibs/standard-1.2.5/taglibs-standard-impl + + + https://builds.apache.org/job/taglib-standard/ + + + https://repository.apache.org/service/local/staging/deploy/maven2 + + + http://issues.apache.org/bugzilla/ + + + http://mail-archives.apache.org/mod_mbox/tomcat-taglibs-user/ + + + http://svn.apache.org/viewvc/tomcat/taglibs/standard/tags/taglibs-standard-1.2.5/impl + + + + + The Apache Software Foundation + org.apache.taglibs + taglibs-standard-jstlel + 1.2.5 + Support JSTL 1.0 tags using the original EL implementation. + optional + + fc22dca932afe1407c61c5c02e3b0093 + 7acb4b1a404d8016caf89fddcbe84791c4bc2ba0 + 60b4be11f339fb5796cce0cc685e89bc319e339427bbd14cdc372cc6dec95f8f + 14c45ff9a4bef71177cb838ca58096c152a3f1426b3381bff8bf3f97957df55b9204c8cf6614b55ba751acfed334d87644e4dd0ca2fe1e429ece0e47ce2c2a26 + 9338c04ee04a2d810f3647c549408b8972d74944c36041abcf54e4e108b1a2bf5c7aef556a273971dfec6a6b3cecbeb1 + 6dc612209e2f738713c2ce5e4f5cdb83cfdaf2726129a808e96f1378cc60a5bce2d00fa5383109f95984f2980dd5ffe9 + c694c79026eae9f674e85b267f0aa71d68fa8a1fb430c8ce4a33161d347c7c8e + d12b6c37345a7f4c1af488683d8855fde58d999dd2b9a6990fd91e2ab7a849f418c771a1cd0d3c4efe51d70b488c9e75082927d69f13f8fb5edef83242b627d1 + + + + Apache-2.0 + + + pkg:maven/org.apache.taglibs/taglibs-standard-jstlel@1.2.5?type=jar + + + http://tomcat.apache.org/taglibs/standard-1.2.5/taglibs-standard-jstlel + + + https://builds.apache.org/job/taglib-standard/ + + + https://repository.apache.org/service/local/staging/deploy/maven2 + + + http://issues.apache.org/bugzilla/ + + + http://mail-archives.apache.org/mod_mbox/tomcat-taglibs-user/ + + + http://svn.apache.org/viewvc/tomcat/taglibs/standard/tags/taglibs-standard-1.2.5/jstlel + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file