From bae02b6ae73dda47dc86590b73c21a85bb7273a5 Mon Sep 17 00:00:00 2001 From: mo khan Date: Tue, 14 Apr 2020 12:50:13 -0600 Subject: Migrate specs from gitlab-org/security-products/license-management --- .../expected/csharp/nuget-dotnetcore/v1.0.json | 1090 + .../expected/csharp/nuget-dotnetcore/v1.1.json | 1613 ++ .../expected/csharp/nuget-dotnetcore/v2.0.json | 1012 + spec/fixtures/expected/go/modules/v1.0.json | 53 + spec/fixtures/expected/go/modules/v1.1.json | 72 + spec/fixtures/expected/go/modules/v2.0.json | 52 + spec/fixtures/expected/java/gradle/v1.0.json | 365 + spec/fixtures/expected/java/gradle/v1.1.json | 526 + spec/fixtures/expected/java/gradle/v2.0.json | 330 + .../expected/java/maven-multimodules/v1.0.json | 94 + .../expected/java/maven-multimodules/v1.1.json | 157 + .../expected/java/maven-multimodules/v2.0.json | 58 + spec/fixtures/expected/java/maven/v1.0.json | 365 + spec/fixtures/expected/java/maven/v1.1.json | 526 + spec/fixtures/expected/java/maven/v2.0.json | 330 + spec/fixtures/expected/js/npm/v1.0.json | 4983 ++++ spec/fixtures/expected/js/npm/v1.1.json | 7112 +++++ spec/fixtures/expected/js/npm/v2.0.json | 3961 +++ spec/fixtures/expected/js/yarn/v1.0.json | 20336 +++++++++++++ spec/fixtures/expected/js/yarn/v1.1.json | 29025 +++++++++++++++++++ spec/fixtures/expected/js/yarn/v2.0.json | 16103 ++++++++++ spec/fixtures/expected/php/composer/v1.0.json | 749 + spec/fixtures/expected/php/composer/v1.1.json | 1086 + spec/fixtures/expected/php/composer/v2.0.json | 647 + spec/fixtures/expected/python/2/pip/v1.0.json | 196 + spec/fixtures/expected/python/2/pip/v1.1.json | 269 + spec/fixtures/expected/python/2/pip/v2.0.json | 175 + spec/fixtures/expected/python/3/pip/v1.0.json | 213 + spec/fixtures/expected/python/3/pip/v1.1.json | 292 + spec/fixtures/expected/python/3/pip/v2.0.json | 192 + spec/fixtures/expected/python/pipenv/v1.0.json | 77 + spec/fixtures/expected/python/pipenv/v1.1.json | 102 + spec/fixtures/expected/python/pipenv/v2.0.json | 75 + spec/fixtures/expected/ruby/bundler/v1.0.json | 242 + spec/fixtures/expected/ruby/bundler/v1.1.json | 339 + spec/fixtures/expected/ruby/bundler/v2.0.json | 201 + spec/fixtures/go/go.mod | 12 + spec/fixtures/go/go.sum | 158 + spec/fixtures/go/main.go | 13 + spec/fixtures/java/build.gradle.kts | 11 + spec/fixtures/java/custom-maven-settings.xml | 16 + spec/fixtures/java/maven-multimodule/api/pom.xml | 26 + spec/fixtures/java/maven-multimodule/model/pom.xml | 27 + spec/fixtures/java/maven-multimodule/pom.xml | 27 + spec/fixtures/java/maven-multimodule/web/pom.xml | 27 + .../fixtures/java/pom-public-gitlab-repository.xml | 16 + spec/fixtures/php/drupal_composer.json | 241 + spec/fixtures/python/airgap-Pipfile.erb | 9 + spec/fixtures/python/airgap-Pipfile.lock.erb | 50 + spec/fixtures/python/pypi.crt | 24 + spec/fixtures/python/simple-Pipfile | 10 + spec/fixtures/python/simple-Pipfile.lock | 69 + spec/fixtures/python/simple-setup.py | 17 + spec/fixtures/schema/v1.0.json | 72 + spec/fixtures/schema/v1.1.json | 99 + spec/fixtures/schema/v2.0.json | 74 + spec/integration/dotnet/examples_spec.rb | 12 + spec/integration/dotnet/nuget_spec.rb | 102 + spec/integration/go/modules_spec.rb | 53 + spec/integration/java/gradle_spec.rb | 77 + spec/integration/java/maven_spec.rb | 81 + spec/integration/js/npm_spec.rb | 5 + spec/integration/js/yarn_spec.rb | 5 + spec/integration/php/composer_spec.rb | 121 + spec/integration/python/pip_spec.rb | 160 + spec/integration/python/pipenv_spec.rb | 224 + spec/integration/ruby/bundler_spec.rb | 142 + spec/spandx/gitlab_spec.rb | 5 - spec/spec_helper.rb | 38 +- spec/support/fixture_file_helper.rb | 14 + spec/support/integration_test_helper.rb | 105 + spec/support/matchers.rb | 14 + spec/support/shared.rb | 19 + spec/unit/gitlab_spec.rb | 5 + spec/unit/license/management/report/v2_spec.rb | 52 + spec/unit/license/management/repository_spec.rb | 45 + 76 files changed, 95283 insertions(+), 12 deletions(-) create mode 100644 spec/fixtures/expected/csharp/nuget-dotnetcore/v1.0.json create mode 100644 spec/fixtures/expected/csharp/nuget-dotnetcore/v1.1.json create mode 100644 spec/fixtures/expected/csharp/nuget-dotnetcore/v2.0.json create mode 100644 spec/fixtures/expected/go/modules/v1.0.json create mode 100644 spec/fixtures/expected/go/modules/v1.1.json create mode 100644 spec/fixtures/expected/go/modules/v2.0.json create mode 100644 spec/fixtures/expected/java/gradle/v1.0.json create mode 100644 spec/fixtures/expected/java/gradle/v1.1.json create mode 100644 spec/fixtures/expected/java/gradle/v2.0.json create mode 100644 spec/fixtures/expected/java/maven-multimodules/v1.0.json create mode 100644 spec/fixtures/expected/java/maven-multimodules/v1.1.json create mode 100644 spec/fixtures/expected/java/maven-multimodules/v2.0.json create mode 100644 spec/fixtures/expected/java/maven/v1.0.json create mode 100644 spec/fixtures/expected/java/maven/v1.1.json create mode 100644 spec/fixtures/expected/java/maven/v2.0.json create mode 100644 spec/fixtures/expected/js/npm/v1.0.json create mode 100644 spec/fixtures/expected/js/npm/v1.1.json create mode 100644 spec/fixtures/expected/js/npm/v2.0.json create mode 100644 spec/fixtures/expected/js/yarn/v1.0.json create mode 100644 spec/fixtures/expected/js/yarn/v1.1.json create mode 100644 spec/fixtures/expected/js/yarn/v2.0.json create mode 100644 spec/fixtures/expected/php/composer/v1.0.json create mode 100644 spec/fixtures/expected/php/composer/v1.1.json create mode 100644 spec/fixtures/expected/php/composer/v2.0.json create mode 100644 spec/fixtures/expected/python/2/pip/v1.0.json create mode 100644 spec/fixtures/expected/python/2/pip/v1.1.json create mode 100644 spec/fixtures/expected/python/2/pip/v2.0.json create mode 100644 spec/fixtures/expected/python/3/pip/v1.0.json create mode 100644 spec/fixtures/expected/python/3/pip/v1.1.json create mode 100644 spec/fixtures/expected/python/3/pip/v2.0.json create mode 100644 spec/fixtures/expected/python/pipenv/v1.0.json create mode 100644 spec/fixtures/expected/python/pipenv/v1.1.json create mode 100644 spec/fixtures/expected/python/pipenv/v2.0.json create mode 100644 spec/fixtures/expected/ruby/bundler/v1.0.json create mode 100644 spec/fixtures/expected/ruby/bundler/v1.1.json create mode 100644 spec/fixtures/expected/ruby/bundler/v2.0.json create mode 100644 spec/fixtures/go/go.mod create mode 100644 spec/fixtures/go/go.sum create mode 100644 spec/fixtures/go/main.go create mode 100644 spec/fixtures/java/build.gradle.kts create mode 100644 spec/fixtures/java/custom-maven-settings.xml create mode 100644 spec/fixtures/java/maven-multimodule/api/pom.xml create mode 100644 spec/fixtures/java/maven-multimodule/model/pom.xml create mode 100644 spec/fixtures/java/maven-multimodule/pom.xml create mode 100644 spec/fixtures/java/maven-multimodule/web/pom.xml create mode 100644 spec/fixtures/java/pom-public-gitlab-repository.xml create mode 100644 spec/fixtures/php/drupal_composer.json create mode 100644 spec/fixtures/python/airgap-Pipfile.erb create mode 100644 spec/fixtures/python/airgap-Pipfile.lock.erb create mode 100644 spec/fixtures/python/pypi.crt create mode 100644 spec/fixtures/python/simple-Pipfile create mode 100644 spec/fixtures/python/simple-Pipfile.lock create mode 100644 spec/fixtures/python/simple-setup.py create mode 100644 spec/fixtures/schema/v1.0.json create mode 100644 spec/fixtures/schema/v1.1.json create mode 100644 spec/fixtures/schema/v2.0.json create mode 100644 spec/integration/dotnet/examples_spec.rb create mode 100644 spec/integration/dotnet/nuget_spec.rb create mode 100644 spec/integration/go/modules_spec.rb create mode 100644 spec/integration/java/gradle_spec.rb create mode 100644 spec/integration/java/maven_spec.rb create mode 100644 spec/integration/js/npm_spec.rb create mode 100644 spec/integration/js/yarn_spec.rb create mode 100644 spec/integration/php/composer_spec.rb create mode 100644 spec/integration/python/pip_spec.rb create mode 100644 spec/integration/python/pipenv_spec.rb create mode 100644 spec/integration/ruby/bundler_spec.rb delete mode 100644 spec/spandx/gitlab_spec.rb create mode 100644 spec/support/fixture_file_helper.rb create mode 100644 spec/support/integration_test_helper.rb create mode 100644 spec/support/matchers.rb create mode 100644 spec/support/shared.rb create mode 100644 spec/unit/gitlab_spec.rb create mode 100644 spec/unit/license/management/report/v2_spec.rb create mode 100644 spec/unit/license/management/repository_spec.rb diff --git a/spec/fixtures/expected/csharp/nuget-dotnetcore/v1.0.json b/spec/fixtures/expected/csharp/nuget-dotnetcore/v1.0.json new file mode 100644 index 0000000..94ac683 --- /dev/null +++ b/spec/fixtures/expected/csharp/nuget-dotnetcore/v1.0.json @@ -0,0 +1,1090 @@ +{ + "licenses": [ + { + "count": 76, + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + { + "count": 2, + "name": "https://github.com/dotnet/corefx/blob/master/LICENSE.TXT" + }, + { + "count": 2, + "name": "unknown" + }, + { + "count": 1, + "name": "http://opensource.org/licenses/Apache-2.0" + }, + { + "count": 1, + "name": "http://opensource.org/licenses/LGPL-2.1" + }, + { + "count": 1, + "name": "http://www.apache.org/licenses/LICENSE-2.0" + }, + { + "count": 1, + "name": "http://www.opensource.org/licenses/mit-license.php" + }, + { + "count": 1, + "name": "https://licenses.nuget.org/MIT" + }, + { + "count": 1, + "name": "https://raw.githubusercontent.com/antlr/antlrcs/master/LICENSE.txt" + }, + { + "count": 1, + "name": "https://raw.githubusercontent.com/nhibernate/nhibernate-core/master/LICENSE.txt" + } + ], + "dependencies": [ + { + "license": { + "name": "https://raw.githubusercontent.com/antlr/antlrcs/master/LICENSE.txt" + }, + "dependency": { + "name": "Antlr3.Runtime", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "unknown" + }, + "dependency": { + "name": "Iesi.Collections", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "Microsoft.NETCore.Platforms", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "Microsoft.NETCore.Targets", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "Microsoft.Win32.Primitives", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://www.opensource.org/licenses/mit-license.php" + }, + "dependency": { + "name": "MvcMailer", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "NETStandard.Library", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "https://raw.githubusercontent.com/nhibernate/nhibernate-core/master/LICENSE.txt" + }, + "dependency": { + "name": "NHibernate", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://www.apache.org/licenses/LICENSE-2.0" + }, + "dependency": { + "name": "NodaTime", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://opensource.org/licenses/Apache-2.0" + }, + "dependency": { + "name": "Remotion.Linq", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://opensource.org/licenses/LGPL-2.1" + }, + "dependency": { + "name": "Remotion.Linq.EagerFetching", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.AppContext", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Buffers", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Collections", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Collections.Concurrent", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "https://github.com/dotnet/corefx/blob/master/LICENSE.TXT" + }, + "dependency": { + "name": "System.Configuration.ConfigurationManager", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Console", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Diagnostics.Debug", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Diagnostics.DiagnosticSource", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Diagnostics.Tools", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Diagnostics.Tracing", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Globalization", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Globalization.Calendars", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Globalization.Extensions", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.IO", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.IO.Compression", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.IO.Compression.ZipFile", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.IO.FileSystem", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.IO.FileSystem.Primitives", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Linq", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Linq.Expressions", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Linq.Queryable", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Net.Http", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Net.Primitives", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Net.Sockets", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.ObjectModel", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Reflection", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Reflection.Emit", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Reflection.Emit.ILGeneration", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Reflection.Emit.Lightweight", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Reflection.Extensions", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Reflection.Primitives", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Reflection.TypeExtensions", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Resources.ResourceManager", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Runtime", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Runtime.Extensions", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Runtime.Handles", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Runtime.InteropServices", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Runtime.InteropServices.RuntimeInformation", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Runtime.Numerics", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Runtime.Serialization.Formatters", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Runtime.Serialization.Primitives", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Security.Cryptography.Algorithms", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Security.Cryptography.Cng", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Security.Cryptography.Csp", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Security.Cryptography.Encoding", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Security.Cryptography.OpenSsl", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Security.Cryptography.Primitives", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "https://github.com/dotnet/corefx/blob/master/LICENSE.TXT" + }, + "dependency": { + "name": "System.Security.Cryptography.ProtectedData", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Security.Cryptography.X509Certificates", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Text.Encoding", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Text.Encoding.Extensions", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Text.RegularExpressions", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Threading", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Threading.Tasks", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Threading.Tasks.Extensions", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Threading.Timer", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Xml.ReaderWriter", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Xml.XDocument", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "unknown" + }, + "dependency": { + "name": "T4Scaffolding.Core", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "https://licenses.nuget.org/MIT" + }, + "dependency": { + "name": "jive", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "runtime.native.System", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "runtime.native.System.IO.Compression", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "runtime.native.System.Net.Http", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "runtime.native.System.Security.Cryptography.Apple", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "runtime.native.System.Security.Cryptography.OpenSsl", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + } + ] +} diff --git a/spec/fixtures/expected/csharp/nuget-dotnetcore/v1.1.json b/spec/fixtures/expected/csharp/nuget-dotnetcore/v1.1.json new file mode 100644 index 0000000..826c02c --- /dev/null +++ b/spec/fixtures/expected/csharp/nuget-dotnetcore/v1.1.json @@ -0,0 +1,1613 @@ +{ + "version": "1.1", + "licenses": [ + { + "count": 76, + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + { + "count": 2, + "name": "https://github.com/dotnet/corefx/blob/master/LICENSE.TXT" + }, + { + "count": 2, + "name": "unknown" + }, + { + "count": 1, + "name": "http://opensource.org/licenses/Apache-2.0" + }, + { + "count": 1, + "name": "http://opensource.org/licenses/LGPL-2.1" + }, + { + "count": 1, + "name": "http://www.apache.org/licenses/LICENSE-2.0" + }, + { + "count": 1, + "name": "http://www.opensource.org/licenses/mit-license.php" + }, + { + "count": 1, + "name": "https://licenses.nuget.org/MIT" + }, + { + "count": 1, + "name": "https://raw.githubusercontent.com/antlr/antlrcs/master/LICENSE.txt" + }, + { + "count": 1, + "name": "https://raw.githubusercontent.com/nhibernate/nhibernate-core/master/LICENSE.txt" + } + ], + "dependencies": [ + { + "licenses": [ + { + "name": "https://raw.githubusercontent.com/antlr/antlrcs/master/LICENSE.txt", + "url": "" + } + ], + "license": { + "name": "https://raw.githubusercontent.com/antlr/antlrcs/master/LICENSE.txt" + }, + "dependency": { + "name": "Antlr3.Runtime", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "unknown", + "url": "" + } + ], + "license": { + "name": "unknown" + }, + "dependency": { + "name": "Iesi.Collections", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "Microsoft.NETCore.Platforms", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "Microsoft.NETCore.Targets", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "Microsoft.Win32.Primitives", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://www.opensource.org/licenses/mit-license.php", + "url": "" + } + ], + "license": { + "name": "http://www.opensource.org/licenses/mit-license.php" + }, + "dependency": { + "name": "MvcMailer", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "NETStandard.Library", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "https://raw.githubusercontent.com/nhibernate/nhibernate-core/master/LICENSE.txt", + "url": "" + } + ], + "license": { + "name": "https://raw.githubusercontent.com/nhibernate/nhibernate-core/master/LICENSE.txt" + }, + "dependency": { + "name": "NHibernate", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://www.apache.org/licenses/LICENSE-2.0", + "url": "" + } + ], + "license": { + "name": "http://www.apache.org/licenses/LICENSE-2.0" + }, + "dependency": { + "name": "NodaTime", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://opensource.org/licenses/Apache-2.0", + "url": "" + } + ], + "license": { + "name": "http://opensource.org/licenses/Apache-2.0" + }, + "dependency": { + "name": "Remotion.Linq", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://opensource.org/licenses/LGPL-2.1", + "url": "" + } + ], + "license": { + "name": "http://opensource.org/licenses/LGPL-2.1" + }, + "dependency": { + "name": "Remotion.Linq.EagerFetching", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.AppContext", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Buffers", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Collections", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Collections.Concurrent", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "https://github.com/dotnet/corefx/blob/master/LICENSE.TXT", + "url": "" + } + ], + "license": { + "name": "https://github.com/dotnet/corefx/blob/master/LICENSE.TXT" + }, + "dependency": { + "name": "System.Configuration.ConfigurationManager", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Console", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Diagnostics.Debug", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Diagnostics.DiagnosticSource", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Diagnostics.Tools", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Diagnostics.Tracing", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Globalization", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Globalization.Calendars", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Globalization.Extensions", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.IO", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.IO.Compression", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.IO.Compression.ZipFile", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.IO.FileSystem", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.IO.FileSystem.Primitives", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Linq", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Linq.Expressions", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Linq.Queryable", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Net.Http", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Net.Primitives", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Net.Sockets", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.ObjectModel", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Reflection", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Reflection.Emit", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Reflection.Emit.ILGeneration", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Reflection.Emit.Lightweight", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Reflection.Extensions", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Reflection.Primitives", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Reflection.TypeExtensions", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Resources.ResourceManager", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Runtime", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Runtime.Extensions", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Runtime.Handles", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Runtime.InteropServices", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Runtime.InteropServices.RuntimeInformation", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Runtime.Numerics", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Runtime.Serialization.Formatters", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Runtime.Serialization.Primitives", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Security.Cryptography.Algorithms", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Security.Cryptography.Cng", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Security.Cryptography.Csp", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Security.Cryptography.Encoding", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Security.Cryptography.OpenSsl", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Security.Cryptography.Primitives", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "https://github.com/dotnet/corefx/blob/master/LICENSE.TXT", + "url": "" + } + ], + "license": { + "name": "https://github.com/dotnet/corefx/blob/master/LICENSE.TXT" + }, + "dependency": { + "name": "System.Security.Cryptography.ProtectedData", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Security.Cryptography.X509Certificates", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Text.Encoding", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Text.Encoding.Extensions", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Text.RegularExpressions", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Threading", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Threading.Tasks", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Threading.Tasks.Extensions", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Threading.Timer", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Xml.ReaderWriter", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "System.Xml.XDocument", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "unknown", + "url": "" + } + ], + "license": { + "name": "unknown" + }, + "dependency": { + "name": "T4Scaffolding.Core", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "https://licenses.nuget.org/MIT", + "url": "" + } + ], + "license": { + "name": "https://licenses.nuget.org/MIT" + }, + "dependency": { + "name": "jive", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "runtime.native.System", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "runtime.native.System.IO.Compression", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "runtime.native.System.Net.Http", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "runtime.native.System.Security.Cryptography.Apple", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "runtime.native.System.Security.Cryptography.OpenSsl", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + }, + { + "licenses": [ + { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "" + } + ], + "license": { + "name": "http://go.microsoft.com/fwlink/?LinkId=329770" + }, + "dependency": { + "name": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", + "description": "", + "pathes": [ + "./src/web.api" + ] + } + } + ] +} diff --git a/spec/fixtures/expected/csharp/nuget-dotnetcore/v2.0.json b/spec/fixtures/expected/csharp/nuget-dotnetcore/v2.0.json new file mode 100644 index 0000000..070401e --- /dev/null +++ b/spec/fixtures/expected/csharp/nuget-dotnetcore/v2.0.json @@ -0,0 +1,1012 @@ +{ + "version": "2.0", + "licenses": [ + { + "id": "http://go.microsoft.com/fwlink/?linkid=329770", + "name": "http://go.microsoft.com/fwlink/?LinkId=329770", + "url": "", + "count": 76 + }, + { + "id": "Apache-2.0", + "name": "Apache License 2.0", + "url": "https://opensource.org/licenses/Apache-2.0", + "count": 2 + }, + { + "id": "MIT", + "name": "MIT License", + "url": "https://opensource.org/licenses/MIT", + "count": 2 + }, + { + "id": "https://github.com/dotnet/corefx/blob/master/license.txt", + "name": "https://github.com/dotnet/corefx/blob/master/LICENSE.TXT", + "url": "", + "count": 2 + }, + { + "id": "unknown", + "name": "unknown", + "url": "", + "count": 2 + }, + { + "id": "LGPL-2.1", + "name": "GNU Lesser General Public License v2.1 only", + "url": "https://opensource.org/licenses/LGPL-2.1", + "count": 1 + }, + { + "id": "https://raw.githubusercontent.com/antlr/antlrcs/master/license.txt", + "name": "https://raw.githubusercontent.com/antlr/antlrcs/master/LICENSE.txt", + "url": "", + "count": 1 + }, + { + "id": "https://raw.githubusercontent.com/nhibernate/nhibernate-core/master/license.txt", + "name": "https://raw.githubusercontent.com/nhibernate/nhibernate-core/master/LICENSE.txt", + "url": "", + "count": 1 + } + ], + "dependencies": [ + { + "name": "Antlr3.Runtime", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "https://raw.githubusercontent.com/antlr/antlrcs/master/license.txt" + ] + }, + { + "name": "Iesi.Collections", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "unknown" + ] + }, + { + "name": "Microsoft.NETCore.Platforms", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "Microsoft.NETCore.Targets", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "Microsoft.Win32.Primitives", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "MvcMailer", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "NETStandard.Library", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "NHibernate", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "https://raw.githubusercontent.com/nhibernate/nhibernate-core/master/license.txt" + ] + }, + { + "name": "NodaTime", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "Remotion.Linq", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "Remotion.Linq.EagerFetching", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "LGPL-2.1" + ] + }, + { + "name": "System.AppContext", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Buffers", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Collections", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Collections.Concurrent", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Configuration.ConfigurationManager", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "https://github.com/dotnet/corefx/blob/master/license.txt" + ] + }, + { + "name": "System.Console", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Diagnostics.Debug", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Diagnostics.DiagnosticSource", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Diagnostics.Tools", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Diagnostics.Tracing", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Globalization", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Globalization.Calendars", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Globalization.Extensions", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.IO", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.IO.Compression", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.IO.Compression.ZipFile", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.IO.FileSystem", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.IO.FileSystem.Primitives", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Linq", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Linq.Expressions", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Linq.Queryable", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Net.Http", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Net.Primitives", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Net.Sockets", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.ObjectModel", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Reflection", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Reflection.Emit", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Reflection.Emit.ILGeneration", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Reflection.Emit.Lightweight", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Reflection.Extensions", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Reflection.Primitives", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Reflection.TypeExtensions", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Resources.ResourceManager", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Runtime", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Runtime.Extensions", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Runtime.Handles", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Runtime.InteropServices", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Runtime.InteropServices.RuntimeInformation", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Runtime.Numerics", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Runtime.Serialization.Formatters", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Runtime.Serialization.Primitives", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Security.Cryptography.Algorithms", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Security.Cryptography.Cng", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Security.Cryptography.Csp", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Security.Cryptography.Encoding", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Security.Cryptography.OpenSsl", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Security.Cryptography.Primitives", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Security.Cryptography.ProtectedData", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "https://github.com/dotnet/corefx/blob/master/license.txt" + ] + }, + { + "name": "System.Security.Cryptography.X509Certificates", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Text.Encoding", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Text.Encoding.Extensions", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Text.RegularExpressions", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Threading", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Threading.Tasks", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Threading.Tasks.Extensions", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Threading.Timer", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Xml.ReaderWriter", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "System.Xml.XDocument", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "T4Scaffolding.Core", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "unknown" + ] + }, + { + "name": "jive", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "runtime.native.System", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "runtime.native.System.IO.Compression", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "runtime.native.System.Net.Http", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "runtime.native.System.Security.Cryptography.Apple", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "runtime.native.System.Security.Cryptography.OpenSsl", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + }, + { + "name": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", + "url": "", + "description": "", + "paths": [ + "./src/web.api" + ], + "licenses": [ + "http://go.microsoft.com/fwlink/?linkid=329770" + ] + } + ] +} diff --git a/spec/fixtures/expected/go/modules/v1.0.json b/spec/fixtures/expected/go/modules/v1.0.json new file mode 100644 index 0000000..800e31f --- /dev/null +++ b/spec/fixtures/expected/go/modules/v1.0.json @@ -0,0 +1,53 @@ +{ + "licenses": [ + { + "count": 2, + "name": "MIT" + }, + { + "count": 1, + "name": "New BSD" + } + ], + "dependencies": [ + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "github.com/konsorten/go-windows-terminal-sequences", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "github.com/sirupsen/logrus", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "golang.org/x/sys", + "description": "", + "pathes": [ + "." + ] + } + } + ] +} diff --git a/spec/fixtures/expected/go/modules/v1.1.json b/spec/fixtures/expected/go/modules/v1.1.json new file mode 100644 index 0000000..08636c0 --- /dev/null +++ b/spec/fixtures/expected/go/modules/v1.1.json @@ -0,0 +1,72 @@ +{ + "version": "1.1", + "licenses": [ + { + "count": 2, + "name": "MIT" + }, + { + "count": 1, + "name": "New BSD" + } + ], + "dependencies": [ + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "github.com/konsorten/go-windows-terminal-sequences", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "github.com/sirupsen/logrus", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "golang.org/x/sys", + "description": "", + "pathes": [ + "." + ] + } + } + ] +} diff --git a/spec/fixtures/expected/go/modules/v2.0.json b/spec/fixtures/expected/go/modules/v2.0.json new file mode 100644 index 0000000..c1da7e4 --- /dev/null +++ b/spec/fixtures/expected/go/modules/v2.0.json @@ -0,0 +1,52 @@ +{ + "version": "2.0", + "licenses": [ + { + "id": "MIT", + "name": "MIT License", + "url": "https://opensource.org/licenses/MIT", + "count": 2 + }, + { + "id": "BSD-3-Clause", + "name": "BSD 3-Clause \"New\" or \"Revised\" License", + "url": "https://opensource.org/licenses/BSD-3-Clause", + "count": 1 + } + ], + "dependencies": [ + { + "name": "github.com/konsorten/go-windows-terminal-sequences", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "github.com/sirupsen/logrus", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "golang.org/x/sys", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + } + ] +} diff --git a/spec/fixtures/expected/java/gradle/v1.0.json b/spec/fixtures/expected/java/gradle/v1.0.json new file mode 100644 index 0000000..f0bb0f5 --- /dev/null +++ b/spec/fixtures/expected/java/gradle/v1.0.json @@ -0,0 +1,365 @@ +{ + "licenses": [ + { + "count": 19, + "name": "Apache 2.0" + }, + { + "count": 2, + "name": "CDDL + GPLv2 with classpath exception" + }, + { + "count": 2, + "name": "MIT" + }, + { + "count": 1, + "name": "BSD" + }, + { + "count": 1, + "name": "LGPL, version 2.1, ASL, version 2" + }, + { + "count": 1, + "name": "Mozilla Public License 2.0" + } + ], + "dependencies": [ + { + "license": { + "name": "BSD", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + }, + "dependency": { + "name": "antlr", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "commons-beanutils", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "commons-io", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "commons-lang", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "commons-lang3", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "fastutil", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "findbugs-annotations", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "geode-common", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "geode-core", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "geode-json", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "jackson-annotations", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "jackson-core", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "jackson-databind", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "CDDL + GPLv2 with classpath exception" + }, + "dependency": { + "name": "javax.resource-api", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "CDDL + GPLv2 with classpath exception" + }, + "dependency": { + "name": "javax.transaction-api", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "jgroups", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "LGPL, version 2.1, ASL, version 2" + }, + "dependency": { + "name": "jna", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "jopt-simple", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "log4j-api", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "log4j-core", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "maven-artifact", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "netty", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "plexus-utils", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Mozilla Public License 2.0", + "url": "https://www.mozilla.org/media/MPL/2.0/index.815ca599c9df.txt" + }, + "dependency": { + "name": "rhino", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "shiro-core", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "slf4j-api", + "description": "", + "pathes": [ + "." + ] + } + } + ] +} diff --git a/spec/fixtures/expected/java/gradle/v1.1.json b/spec/fixtures/expected/java/gradle/v1.1.json new file mode 100644 index 0000000..e337e49 --- /dev/null +++ b/spec/fixtures/expected/java/gradle/v1.1.json @@ -0,0 +1,526 @@ +{ + "version": "1.1", + "licenses": [ + { + "count": 19, + "name": "Apache 2.0" + }, + { + "count": 2, + "name": "CDDL + GPLv2 with classpath exception" + }, + { + "count": 2, + "name": "MIT" + }, + { + "count": 1, + "name": "BSD" + }, + { + "count": 1, + "name": "LGPL, version 2.1, ASL, version 2" + }, + { + "count": 1, + "name": "Mozilla Public License 2.0" + } + ], + "dependencies": [ + { + "licenses": [ + { + "name": "BSD", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + } + ], + "license": { + "name": "BSD", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + }, + "dependency": { + "name": "antlr", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "commons-beanutils", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "commons-io", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "commons-lang", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "commons-lang3", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "fastutil", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "findbugs-annotations", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "geode-common", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "geode-core", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "geode-json", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "jackson-annotations", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "jackson-core", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "jackson-databind", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "CDDL + GPLv2 with classpath exception", + "url": "" + } + ], + "license": { + "name": "CDDL + GPLv2 with classpath exception" + }, + "dependency": { + "name": "javax.resource-api", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "CDDL + GPLv2 with classpath exception", + "url": "" + } + ], + "license": { + "name": "CDDL + GPLv2 with classpath exception" + }, + "dependency": { + "name": "javax.transaction-api", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "jgroups", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ASL, version 2", + "url": "" + }, + { + "name": "LGPL, version 2.1", + "url": "" + } + ], + "license": { + "name": "LGPL, version 2.1, ASL, version 2" + }, + "dependency": { + "name": "jna", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "jopt-simple", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "log4j-api", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "log4j-core", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "maven-artifact", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "netty", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "plexus-utils", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Mozilla Public License 2.0", + "url": "https://www.mozilla.org/media/MPL/2.0/index.815ca599c9df.txt" + } + ], + "license": { + "name": "Mozilla Public License 2.0", + "url": "https://www.mozilla.org/media/MPL/2.0/index.815ca599c9df.txt" + }, + "dependency": { + "name": "rhino", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "shiro-core", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "slf4j-api", + "description": "", + "pathes": [ + "." + ] + } + } + ] +} diff --git a/spec/fixtures/expected/java/gradle/v2.0.json b/spec/fixtures/expected/java/gradle/v2.0.json new file mode 100644 index 0000000..4b4a06c --- /dev/null +++ b/spec/fixtures/expected/java/gradle/v2.0.json @@ -0,0 +1,330 @@ +{ + "version": "2.0", + "licenses": [ + { + "id": "Apache-2.0", + "name": "Apache License 2.0", + "url": "https://opensource.org/licenses/Apache-2.0", + "count": 20 + }, + { + "id": "cddl + gplv2 with classpath exception", + "name": "CDDL + GPLv2 with classpath exception", + "url": "", + "count": 2 + }, + { + "id": "MIT", + "name": "MIT License", + "url": "https://opensource.org/licenses/MIT", + "count": 2 + }, + { + "id": "BSD-4-Clause", + "name": "BSD 4-Clause \"Original\" or \"Old\" License", + "url": "http://directory.fsf.org/wiki/License:BSD_4Clause", + "count": 1 + }, + { + "id": "LGPL-2.1", + "name": "GNU Lesser General Public License v2.1 only", + "url": "https://opensource.org/licenses/LGPL-2.1", + "count": 1 + }, + { + "id": "MPL-2.0", + "name": "Mozilla Public License 2.0", + "url": "https://opensource.org/licenses/MPL-2.0", + "count": 1 + } + ], + "dependencies": [ + { + "name": "antlr", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-4-Clause" + ] + }, + { + "name": "commons-beanutils", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "commons-io", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "commons-lang", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "commons-lang3", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "fastutil", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "findbugs-annotations", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "geode-common", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "geode-core", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "geode-json", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "jackson-annotations", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "jackson-core", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "jackson-databind", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "javax.resource-api", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "cddl + gplv2 with classpath exception" + ] + }, + { + "name": "javax.transaction-api", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "cddl + gplv2 with classpath exception" + ] + }, + { + "name": "jgroups", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "jna", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0", + "LGPL-2.1" + ] + }, + { + "name": "jopt-simple", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "log4j-api", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "log4j-core", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "maven-artifact", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "netty", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "plexus-utils", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "rhino", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MPL-2.0" + ] + }, + { + "name": "shiro-core", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "slf4j-api", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + } + ] +} diff --git a/spec/fixtures/expected/java/maven-multimodules/v1.0.json b/spec/fixtures/expected/java/maven-multimodules/v1.0.json new file mode 100644 index 0000000..ac9f480 --- /dev/null +++ b/spec/fixtures/expected/java/maven-multimodules/v1.0.json @@ -0,0 +1,94 @@ +{ + "licenses": [ + { "count": 15, "name": "Apache 2.0" }, + { "count": 4, "name": "BSD" }, + { "count": 1, "name": "MPL 1.1, GNU Lesser General Public License version 2.1, Apache 2.0" }, + { "count": 1, "name": "unknown" } + ], + "dependencies": [ + { + "license": { "name": "BSD", "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" }, + "dependency": { "name": "asm", "description": "", "pathes": [ "." ] } + }, + { + "license": { "name": "BSD", "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" }, + "dependency": { "name": "asm-commons", "description": "", "pathes": [ "." ] } + }, + { + "license": { "name": "BSD", "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" }, + "dependency": { "name": "asm-tree", "description": "", "pathes": [ "." ] } + }, + { + "license": { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, + "dependency": { "name": "commons-fileupload", "description": "", "pathes": [ "." ] } + }, + { + "license": { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, + "dependency": { "name": "commons-io", "description": "", "pathes": [ "." ] } + }, + { + "license": { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, + "dependency": { "name": "commons-lang3", "description": "", "pathes": [ "." ] } + }, + { + "license": { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, + "dependency": { "name": "freemarker", "description": "", "pathes": [ "." ] } + }, + { + "license": { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, + "dependency": { "name": "jackson-annotations", "description": "", "pathes": [ "." ] } + }, + { + "license": { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, + "dependency": { "name": "jackson-core", "description": "", "pathes": [ "." ] } + }, + { + "license": { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, + "dependency": { "name": "jackson-databind", "description": "", "pathes": [ "." ] } + }, + { + "license": { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, + "dependency": { "name": "jackson-dataformat-xml", "description": "", "pathes": [ "." ] } + }, + { + "license": { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, + "dependency": { "name": "jackson-module-jaxb-annotations", "description": "", "pathes": [ "." ] } + }, + { + "license": { "name": "MPL 1.1, GNU Lesser General Public License version 2.1, Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, + "dependency": { "name": "javassist", "description": "", "pathes": [ "." ] } + }, + { + "license": { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, + "dependency": { "name": "log4j-api", "description": "", "pathes": [ "." ] } + }, + { + "license": { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, + "dependency": { "name": "log4j-api", "description": "", "pathes": [ "." ] } + }, + { + "license": { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, + "dependency": { "name": "log4j-core", "description": "", "pathes": [ "." ] } + }, + { + "license": { "name": "unknown" }, + "dependency": { "name": "model", "description": "", "pathes": [ "." ] } + }, + { + "license": { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, + "dependency": { "name": "netty-all", "description": "", "pathes": [ "." ] } + }, + { + "license": { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, + "dependency": { "name": "ognl", "description": "", "pathes": [ "." ] } + }, + { + "license": { "name": "BSD", "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" }, + "dependency": { "name": "stax2-api", "description": "", "pathes": [ "." ] } + }, + { + "license": { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, + "dependency": { "name": "struts2-core", "description": "", "pathes": [ "." ] } + } + ] +} diff --git a/spec/fixtures/expected/java/maven-multimodules/v1.1.json b/spec/fixtures/expected/java/maven-multimodules/v1.1.json new file mode 100644 index 0000000..a8e2841 --- /dev/null +++ b/spec/fixtures/expected/java/maven-multimodules/v1.1.json @@ -0,0 +1,157 @@ +{ + "version": "1.1", + "licenses": [ + { "count": 15, "name": "Apache 2.0" }, + { "count": 4, "name": "BSD" }, + { "count": 1, "name": "MPL 1.1, GNU Lesser General Public License version 2.1, Apache 2.0" }, + { "count": 1, "name": "unknown" } + ], + "dependencies": [ + { + "licenses": [ + { "name": "BSD", "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" } + ], + "license": { "name": "BSD", "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" }, + "dependency": { "name": "asm", "description": "", "pathes": [ "." ] } + }, + { + "licenses": [ { "name": "BSD", "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" } ], + "license": { "name": "BSD", "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" }, + "dependency": { "name": "asm-commons", "description": "", "pathes": [ "." ] } + }, + { + "licenses": [ { "name": "BSD", "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" } ], + "license": { "name": "BSD", "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" }, + "dependency": { "name": "asm-tree", "description": "", "pathes": [ "." ] } + }, + { + "licenses": [ { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" } ], + "license": { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, + "dependency": { "name": "commons-fileupload", "description": "", "pathes": [ "." ] } + }, + { + "licenses": [ + { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" } + ], + "license": { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, + "dependency": { "name": "commons-io", "description": "", "pathes": [ "." ] } + }, + { + "licenses": [ + { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" } + ], + "license": { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, + "dependency": { "name": "commons-lang3", "description": "", "pathes": [ "." ] } + }, + { + "licenses": [ + { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" } + ], + "license": { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, + "dependency": { "name": "freemarker", "description": "", "pathes": [ "." ] } + }, + { + "licenses": [ + { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" } + ], + "license": { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, + "dependency": { "name": "jackson-annotations", "description": "", "pathes": [ "." ] } + }, + { + "licenses": [ + { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" } + ], + "license": { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, + "dependency": { "name": "jackson-core", "description": "", "pathes": [ "." ] } + }, + { + "licenses": [ + { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" } + ], + "license": { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, + "dependency": { "name": "jackson-databind", "description": "", "pathes": [ "." ] } + }, + { + "licenses": [ + { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" } + ], + "license": { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, + "dependency": { "name": "jackson-dataformat-xml", "description": "", "pathes": [ "." ] } + }, + { + "licenses": [ + { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" } + ], + "license": { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, + "dependency": { "name": "jackson-module-jaxb-annotations", "description": "", "pathes": [ "." ] } + }, + { + "licenses": [ + { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, + { "name": "GNU Lesser General Public License version 2.1", "url": "https://opensource.org/licenses/LGPL-2.1" }, + { "name": "MPL 1.1", "url": "" } + ], + "license": { "name": "MPL 1.1, GNU Lesser General Public License version 2.1, Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, + "dependency": { "name": "javassist", "description": "", "pathes": [ "." ] } + }, + { + "licenses": [ + { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" } + ], + "license": { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, + "dependency": { "name": "log4j-api", "description": "", "pathes": [ "." ] } + }, + { + "licenses": [ + { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" } + ], + "license": { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, + "dependency": { "name": "log4j-api", "description": "", "pathes": [ "." ] } + }, + { + "licenses": [ + { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" } + ], + "license": { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, + "dependency": { "name": "log4j-core", "description": "", "pathes": [ "." ] } + }, + { + "licenses": [ + { "name": "unknown", "url": "" } + ], + "license": { "name": "unknown" }, + "dependency": { "name": "model", "description": "", "pathes": [ "." ] } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, + "dependency": { "name": "netty-all", "description": "", "pathes": [ "." ] } + }, + { + "licenses": [ + { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" } + ], + "license": { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, + "dependency": { "name": "ognl", "description": "", "pathes": [ "." ] } + }, + { + "licenses": [ + { "name": "BSD", "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" } + ], + "license": { "name": "BSD", "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" }, + "dependency": { "name": "stax2-api", "description": "", "pathes": [ "." ] } + }, + { + "licenses": [ + { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" } + ], + "license": { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, + "dependency": { "name": "struts2-core", "description": "", "pathes": [ "." ] } + } + ] +} diff --git a/spec/fixtures/expected/java/maven-multimodules/v2.0.json b/spec/fixtures/expected/java/maven-multimodules/v2.0.json new file mode 100644 index 0000000..aa08ef9 --- /dev/null +++ b/spec/fixtures/expected/java/maven-multimodules/v2.0.json @@ -0,0 +1,58 @@ +{ + "version": "2.0", + "licenses": [ + { + "id": "Apache-2.0", + "name": "Apache License 2.0", + "url": "https://opensource.org/licenses/Apache-2.0", + "count": 16 + }, + { + "id": "BSD-4-Clause", + "name": "BSD 4-Clause \"Original\" or \"Old\" License", + "url": "http://directory.fsf.org/wiki/License:BSD_4Clause", + "count": 4 + }, + { + "id": "LGPL-2.1", + "name": "GNU Lesser General Public License v2.1 only", + "url": "https://opensource.org/licenses/LGPL-2.1", + "count": 1 + }, + { + "id": "MPL-1.1", + "name": "Mozilla Public License 1.1", + "url": "https://opensource.org/licenses/MPL-1.1", + "count": 1 + }, + { + "id": "unknown", + "name": "unknown", + "url": "", + "count": 1 + } + ], + "dependencies": [ + { "name": "asm", "url": "", "description": "", "paths": [ "." ], "licenses": [ "BSD-4-Clause" ] }, + { "name": "asm-commons", "url": "", "description": "", "paths": [ "." ], "licenses": [ "BSD-4-Clause" ] }, + { "name": "asm-tree", "url": "", "description": "", "paths": [ "." ], "licenses": [ "BSD-4-Clause" ] }, + { "name": "commons-fileupload", "url": "", "description": "", "paths": [ "." ], "licenses": [ "Apache-2.0" ] }, + { "name": "commons-io", "url": "", "description": "", "paths": [ "." ], "licenses": [ "Apache-2.0" ] }, + { "name": "commons-lang3", "url": "", "description": "", "paths": [ "." ], "licenses": [ "Apache-2.0" ] }, + { "name": "freemarker", "url": "", "description": "", "paths": [ "." ], "licenses": [ "Apache-2.0" ] }, + { "name": "jackson-annotations", "url": "", "description": "", "paths": [ "." ], "licenses": [ "Apache-2.0" ] }, + { "name": "jackson-core", "url": "", "description": "", "paths": [ "." ], "licenses": [ "Apache-2.0" ] }, + { "name": "jackson-databind", "url": "", "description": "", "paths": [ "." ], "licenses": [ "Apache-2.0" ] }, + { "name": "jackson-dataformat-xml", "url": "", "description": "", "paths": [ "." ], "licenses": [ "Apache-2.0" ] }, + { "name": "jackson-module-jaxb-annotations", "url": "", "description": "", "paths": [ "." ], "licenses": [ "Apache-2.0" ] }, + { "name": "javassist", "url": "", "description": "", "paths": [ "." ], "licenses": [ "Apache-2.0", "LGPL-2.1", "MPL-1.1" ] }, + { "name": "log4j-api", "url": "", "description": "", "paths": [ "." ], "licenses": [ "Apache-2.0" ] }, + { "name": "log4j-api", "url": "", "description": "", "paths": [ "." ], "licenses": [ "Apache-2.0" ] }, + { "name": "log4j-core", "url": "", "description": "", "paths": [ "." ], "licenses": [ "Apache-2.0" ] }, + { "name": "model", "url": "", "description": "", "paths": [ "." ], "licenses": [ "unknown" ] }, + { "name": "netty-all", "url": "", "description": "", "paths": [ "." ], "licenses": [ "Apache-2.0" ] }, + { "name": "ognl", "url": "", "description": "", "paths": [ "." ], "licenses": [ "Apache-2.0" ] }, + { "name": "stax2-api", "url": "", "description": "", "paths": [ "." ], "licenses": [ "BSD-4-Clause" ] }, + { "name": "struts2-core", "url": "", "description": "", "paths": [ "." ], "licenses": [ "Apache-2.0" ] } + ] +} diff --git a/spec/fixtures/expected/java/maven/v1.0.json b/spec/fixtures/expected/java/maven/v1.0.json new file mode 100644 index 0000000..f0bb0f5 --- /dev/null +++ b/spec/fixtures/expected/java/maven/v1.0.json @@ -0,0 +1,365 @@ +{ + "licenses": [ + { + "count": 19, + "name": "Apache 2.0" + }, + { + "count": 2, + "name": "CDDL + GPLv2 with classpath exception" + }, + { + "count": 2, + "name": "MIT" + }, + { + "count": 1, + "name": "BSD" + }, + { + "count": 1, + "name": "LGPL, version 2.1, ASL, version 2" + }, + { + "count": 1, + "name": "Mozilla Public License 2.0" + } + ], + "dependencies": [ + { + "license": { + "name": "BSD", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + }, + "dependency": { + "name": "antlr", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "commons-beanutils", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "commons-io", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "commons-lang", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "commons-lang3", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "fastutil", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "findbugs-annotations", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "geode-common", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "geode-core", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "geode-json", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "jackson-annotations", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "jackson-core", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "jackson-databind", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "CDDL + GPLv2 with classpath exception" + }, + "dependency": { + "name": "javax.resource-api", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "CDDL + GPLv2 with classpath exception" + }, + "dependency": { + "name": "javax.transaction-api", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "jgroups", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "LGPL, version 2.1, ASL, version 2" + }, + "dependency": { + "name": "jna", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "jopt-simple", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "log4j-api", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "log4j-core", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "maven-artifact", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "netty", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "plexus-utils", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Mozilla Public License 2.0", + "url": "https://www.mozilla.org/media/MPL/2.0/index.815ca599c9df.txt" + }, + "dependency": { + "name": "rhino", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "shiro-core", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "slf4j-api", + "description": "", + "pathes": [ + "." + ] + } + } + ] +} diff --git a/spec/fixtures/expected/java/maven/v1.1.json b/spec/fixtures/expected/java/maven/v1.1.json new file mode 100644 index 0000000..e337e49 --- /dev/null +++ b/spec/fixtures/expected/java/maven/v1.1.json @@ -0,0 +1,526 @@ +{ + "version": "1.1", + "licenses": [ + { + "count": 19, + "name": "Apache 2.0" + }, + { + "count": 2, + "name": "CDDL + GPLv2 with classpath exception" + }, + { + "count": 2, + "name": "MIT" + }, + { + "count": 1, + "name": "BSD" + }, + { + "count": 1, + "name": "LGPL, version 2.1, ASL, version 2" + }, + { + "count": 1, + "name": "Mozilla Public License 2.0" + } + ], + "dependencies": [ + { + "licenses": [ + { + "name": "BSD", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + } + ], + "license": { + "name": "BSD", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + }, + "dependency": { + "name": "antlr", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "commons-beanutils", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "commons-io", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "commons-lang", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "commons-lang3", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "fastutil", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "findbugs-annotations", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "geode-common", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "geode-core", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "geode-json", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "jackson-annotations", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "jackson-core", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "jackson-databind", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "CDDL + GPLv2 with classpath exception", + "url": "" + } + ], + "license": { + "name": "CDDL + GPLv2 with classpath exception" + }, + "dependency": { + "name": "javax.resource-api", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "CDDL + GPLv2 with classpath exception", + "url": "" + } + ], + "license": { + "name": "CDDL + GPLv2 with classpath exception" + }, + "dependency": { + "name": "javax.transaction-api", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "jgroups", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ASL, version 2", + "url": "" + }, + { + "name": "LGPL, version 2.1", + "url": "" + } + ], + "license": { + "name": "LGPL, version 2.1, ASL, version 2" + }, + "dependency": { + "name": "jna", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "jopt-simple", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "log4j-api", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "log4j-core", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "maven-artifact", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "netty", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "plexus-utils", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Mozilla Public License 2.0", + "url": "https://www.mozilla.org/media/MPL/2.0/index.815ca599c9df.txt" + } + ], + "license": { + "name": "Mozilla Public License 2.0", + "url": "https://www.mozilla.org/media/MPL/2.0/index.815ca599c9df.txt" + }, + "dependency": { + "name": "rhino", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "shiro-core", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "slf4j-api", + "description": "", + "pathes": [ + "." + ] + } + } + ] +} diff --git a/spec/fixtures/expected/java/maven/v2.0.json b/spec/fixtures/expected/java/maven/v2.0.json new file mode 100644 index 0000000..4b4a06c --- /dev/null +++ b/spec/fixtures/expected/java/maven/v2.0.json @@ -0,0 +1,330 @@ +{ + "version": "2.0", + "licenses": [ + { + "id": "Apache-2.0", + "name": "Apache License 2.0", + "url": "https://opensource.org/licenses/Apache-2.0", + "count": 20 + }, + { + "id": "cddl + gplv2 with classpath exception", + "name": "CDDL + GPLv2 with classpath exception", + "url": "", + "count": 2 + }, + { + "id": "MIT", + "name": "MIT License", + "url": "https://opensource.org/licenses/MIT", + "count": 2 + }, + { + "id": "BSD-4-Clause", + "name": "BSD 4-Clause \"Original\" or \"Old\" License", + "url": "http://directory.fsf.org/wiki/License:BSD_4Clause", + "count": 1 + }, + { + "id": "LGPL-2.1", + "name": "GNU Lesser General Public License v2.1 only", + "url": "https://opensource.org/licenses/LGPL-2.1", + "count": 1 + }, + { + "id": "MPL-2.0", + "name": "Mozilla Public License 2.0", + "url": "https://opensource.org/licenses/MPL-2.0", + "count": 1 + } + ], + "dependencies": [ + { + "name": "antlr", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-4-Clause" + ] + }, + { + "name": "commons-beanutils", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "commons-io", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "commons-lang", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "commons-lang3", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "fastutil", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "findbugs-annotations", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "geode-common", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "geode-core", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "geode-json", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "jackson-annotations", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "jackson-core", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "jackson-databind", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "javax.resource-api", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "cddl + gplv2 with classpath exception" + ] + }, + { + "name": "javax.transaction-api", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "cddl + gplv2 with classpath exception" + ] + }, + { + "name": "jgroups", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "jna", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0", + "LGPL-2.1" + ] + }, + { + "name": "jopt-simple", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "log4j-api", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "log4j-core", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "maven-artifact", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "netty", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "plexus-utils", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "rhino", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MPL-2.0" + ] + }, + { + "name": "shiro-core", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "slf4j-api", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + } + ] +} diff --git a/spec/fixtures/expected/js/npm/v1.0.json b/spec/fixtures/expected/js/npm/v1.0.json new file mode 100644 index 0000000..93ea313 --- /dev/null +++ b/spec/fixtures/expected/js/npm/v1.0.json @@ -0,0 +1,4983 @@ +{ + "licenses": [ + { + "count": 271, + "name": "MIT" + }, + { + "count": 38, + "name": "ISC" + }, + { + "count": 14, + "name": "New BSD" + }, + { + "count": 9, + "name": "Apache 2.0" + }, + { + "count": 9, + "name": "Simplified BSD" + }, + { + "count": 2, + "name": "MIT/X11" + }, + { + "count": 1, + "name": "(MIT OR Apache-2.0)" + }, + { + "count": 1, + "name": "BSD" + }, + { + "count": 1, + "name": "BSD, AFLv2.1" + }, + { + "count": 1, + "name": "BSD-3-Clause OR MIT" + }, + { + "count": 1, + "name": "CC-BY-3.0" + }, + { + "count": 1, + "name": "CC0-1.0" + }, + { + "count": 1, + "name": "New BSD, MIT, ISC, Apache 2.0" + }, + { + "count": 1, + "name": "Unlicense" + }, + { + "count": 1, + "name": "WTFPL" + } + ], + "dependencies": [ + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "abab", + "url": "https://github.com/jsdom/abab#readme", + "description": "WHATWG spec-compliant implementations of window.atob and window.btoa.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "acorn", + "url": "https://github.com/acornjs/acorn", + "description": "ECMAScript parser", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "acorn", + "url": "https://github.com/acornjs/acorn", + "description": "ECMAScript parser", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "acorn-globals", + "url": "https://github.com/ForbesLindesay/acorn-globals#readme", + "description": "Detect global variables in JavaScript using acorn", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "acorn-walk", + "url": "https://github.com/acornjs/acorn", + "description": "ECMAScript (ESTree) AST walker", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ajv", + "url": "https://github.com/epoberezkin/ajv", + "description": "Another JSON Schema Validator", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "align-text", + "url": "https://github.com/jonschlinkert/align-text", + "description": "Align the text in a string.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "BSD-3-Clause OR MIT" + }, + "dependency": { + "name": "amdefine", + "url": "http://github.com/jrburke/amdefine", + "description": "Provide AMD's define() API for declaring modules in the AMD format", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ansi-regex", + "url": "https://github.com/chalk/ansi-regex#readme", + "description": "Regular expression for matching ANSI escape codes", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ansi-regex", + "url": "https://github.com/chalk/ansi-regex#readme", + "description": "Regular expression for matching ANSI escape codes", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ansi-styles", + "url": "https://github.com/chalk/ansi-styles#readme", + "description": "ANSI escape codes for styling strings in the terminal", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "append-transform", + "url": "https://github.com/jamestalmage/append-transform#readme", + "description": "Install a transform to `require.extensions` that always runs last, even if additional extensions are added later.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "archy", + "url": "https://github.com/substack/node-archy#readme", + "description": "render nested hierarchies `npm ls` style with unicode pipes", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "arr-diff", + "url": "https://github.com/jonschlinkert/arr-diff", + "description": "Returns an array with only the unique values from the first array, by excluding all values from additional arrays using strict equality for comparisons.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "arr-flatten", + "url": "https://github.com/jonschlinkert/arr-flatten", + "description": "Recursively flatten an array or arrays.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "arr-union", + "url": "https://github.com/jonschlinkert/arr-union", + "description": "Combines a list of arrays, returning a single array with unique values, using strict equality for comparisons.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "array-equal", + "url": "https://github.com/component/array-equal#readme", + "description": "check if two arrays are equal", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "array-unique", + "url": "https://github.com/jonschlinkert/array-unique", + "description": "Remove duplicate values from an array. Fastest ES5 implementation.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "arrify", + "url": "https://github.com/sindresorhus/arrify#readme", + "description": "Convert a value to an array", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "asn1", + "url": "https://github.com/joyent/node-asn1#readme", + "description": "Contains parsers and serializers for ASN.1 (currently BER only)", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "assert-plus", + "url": "https://github.com/mcavage/node-assert-plus#readme", + "description": "Extra assertions on top of node's assert module", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "assign-symbols", + "url": "https://github.com/jonschlinkert/assign-symbols", + "description": "Assign the enumerable es6 Symbol properties from an object (or objects) to the first object passed on the arguments. Can be used as a supplement to other extend, assign or merge methods as a polyfill for the Symbols part of the es6 Object.assign method.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "async", + "url": "https://github.com/caolan/async#readme", + "description": "Higher-order functions and common patterns for asynchronous code", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "async-limiter", + "url": "https://github.com/strml/async-limiter#readme", + "description": "asynchronous function queue with adjustable concurrency", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "asynckit", + "url": "https://github.com/alexindigo/asynckit#readme", + "description": "Minimal async jobs utility library, with streams support", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "(MIT OR Apache-2.0)" + }, + "dependency": { + "name": "atob", + "url": "https://git.coolaj86.com/coolaj86/atob.js.git", + "description": "atob for Node.JS and Linux / Mac / Windows CLI (it's a one-liner)", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "aws-sign2", + "url": "https://github.com/mikeal/aws-sign#readme", + "description": "AWS signing. Originally pulled from LearnBoost/knox, maintained as vendor in request, now a standalone module.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "aws4", + "url": "https://github.com/mhart/aws4#readme", + "description": "Signs and prepares requests using AWS Signature Version 4", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "babel-code-frame", + "url": "https://babeljs.io/", + "description": "Generate errors that contain a code frame that point to source locations.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "babel-generator", + "url": "https://babeljs.io/", + "description": "Turns an AST into code.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "babel-messages", + "url": "https://babeljs.io/", + "description": "Collection of debug messages used by Babel.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "babel-runtime", + "description": "babel selfContained runtime", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "babel-template", + "url": "https://babeljs.io/", + "description": "Generate an AST from a string template.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "babel-traverse", + "url": "https://babeljs.io/", + "description": "The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "babel-types", + "url": "https://babeljs.io/", + "description": "Babel Types is a Lodash-esque utility library for AST nodes", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "babylon", + "url": "https://babeljs.io/", + "description": "A JavaScript parser", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "balanced-match", + "url": "https://github.com/juliangruber/balanced-match", + "description": "Match balanced character pairs, like \"{\" and \"}\"", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "base", + "url": "https://github.com/node-base/base", + "description": "base is the foundation for creating modular, unit testable and highly pluggable node.js applications, starting with a handful of common methods, like `set`, `get`, `del` and `use`.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "bcrypt-pbkdf", + "url": "https://github.com/joyent/node-bcrypt-pbkdf#readme", + "description": "Port of the OpenBSD bcrypt_pbkdf function to pure JS", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "brace-expansion", + "url": "https://github.com/juliangruber/brace-expansion", + "description": "Brace expansion as known from sh/bash", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "braces", + "url": "https://github.com/micromatch/braces", + "description": "Bash-like brace expansion, implemented in JavaScript. Safer than other brace expansion libs, with complete support for the Bash 4.3 braces specification, without sacrificing speed.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "browser-process-hrtime", + "url": "https://github.com/kumavis/browser-process-hrtime#readme", + "description": "Shim for process.hrtime in the browser", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "builtin-modules", + "url": "https://github.com/sindresorhus/builtin-modules#readme", + "description": "List of the Node.js builtin modules", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cache-base", + "url": "https://github.com/jonschlinkert/cache-base", + "description": "Basic object cache with `get`, `set`, `del`, and `has` methods for node.js/javascript projects.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "caching-transform", + "url": "https://github.com/jamestalmage/caching-transform#readme", + "description": "Wraps a transform and provides caching", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "camelcase", + "url": "https://github.com/sindresorhus/camelcase#readme", + "description": "Convert a dash/dot/underscore/space separated string to camelCase: foo-bar → fooBar", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "camelcase", + "url": "https://github.com/sindresorhus/camelcase#readme", + "description": "Convert a dash/dot/underscore/space separated string to camelCase: foo-bar → fooBar", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "caseless", + "url": "https://github.com/mikeal/caseless#readme", + "description": "Caseless object set/get/has, very useful when working with HTTP headers.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "center-align", + "url": "https://github.com/jonschlinkert/center-align", + "description": "Center-align the text in a string.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "chalk", + "url": "https://github.com/chalk/chalk#readme", + "description": "Terminal string styling done right. Much color.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "class-utils", + "url": "https://github.com/jonschlinkert/class-utils", + "description": "Utils for working with JavaScript classes and prototype methods.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "cliui", + "url": "https://github.com/bcoe/cliui#readme", + "description": "easily create complex multi-column command-line-interfaces", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "cliui", + "url": "https://github.com/yargs/cliui#readme", + "description": "easily create complex multi-column command-line-interfaces", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "code-point-at", + "url": "https://github.com/sindresorhus/code-point-at#readme", + "description": "ES2015 `String#codePointAt()` ponyfill", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "collection-visit", + "url": "https://github.com/jonschlinkert/collection-visit", + "description": "Visit a method over the items in an object, or map visit over the objects in an array.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "combined-stream", + "url": "https://github.com/felixge/node-combined-stream", + "description": "A stream that emits multiple other streams one after another.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "commondir", + "url": "https://github.com/substack/node-commondir#readme", + "description": "compute the closest common parent for file paths", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "component-emitter", + "url": "https://github.com/component/emitter#readme", + "description": "Event emitter", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "concat-map", + "url": "https://github.com/substack/node-concat-map#readme", + "description": "concatenative mapdashery", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "convert-source-map", + "url": "https://github.com/thlorenz/convert-source-map", + "description": "Converts a source-map from/to different formats and allows adding/changing properties.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "copy-descriptor", + "url": "https://github.com/jonschlinkert/copy-descriptor", + "description": "Copy a descriptor from object A to object B", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "core-js", + "url": "https://github.com/zloirock/core-js#readme", + "description": "Standard library", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "core-util-is", + "url": "https://github.com/isaacs/core-util-is#readme", + "description": "The `util.is*` functions introduced in Node v0.12.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cross-spawn", + "url": "https://github.com/IndigoUnited/node-cross-spawn#readme", + "description": "Cross platform child_process#spawn and child_process#spawnSync", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cross-spawn", + "url": "https://github.com/IndigoUnited/node-cross-spawn#readme", + "description": "Cross platform child_process#spawn and child_process#spawnSync", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cssom", + "url": "https://github.com/NV/CSSOM#readme", + "description": "CSS Object Model implementation and CSS parser", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cssstyle", + "url": "https://github.com/jsakas/CSSStyleDeclaration", + "description": "CSSStyleDeclaration Object Model implementation", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "dashdash", + "url": "https://github.com/trentm/node-dashdash#readme", + "description": "A light, featureful and explicit option parsing library.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "data-urls", + "url": "https://github.com/jsdom/data-urls#readme", + "description": "Parses data: URLs", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "debug", + "url": "https://github.com/visionmedia/debug#readme", + "description": "small debugging utility", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "debug", + "url": "https://github.com/visionmedia/debug#readme", + "description": "small debugging utility", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "debug-log", + "url": "https://github.com/sindresorhus/debug-log#readme", + "description": "Node.js 0.12 util.debuglog() ponyfill", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "decamelize", + "url": "https://github.com/sindresorhus/decamelize#readme", + "description": "Convert a camelized string into a lowercased one with a custom separator: unicornRainbow → unicorn_rainbow", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "decode-uri-component", + "url": "https://github.com/SamVerschueren/decode-uri-component#readme", + "description": "A better decodeURIComponent", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "deep-is", + "url": "https://github.com/thlorenz/deep-is#readme", + "description": "node's assert.deepEqual algorithm except for NaN being equal to NaN", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "default-require-extensions", + "url": "https://github.com/jamestalmage/default-require-extensions#readme", + "description": "Node's default require extensions as a separate module", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "define-property", + "url": "https://github.com/jonschlinkert/define-property", + "description": "Define a non-enumerable property on an object.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "define-property", + "url": "https://github.com/jonschlinkert/define-property", + "description": "Define a non-enumerable property on an object.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "define-property", + "url": "https://github.com/jonschlinkert/define-property", + "description": "Define a non-enumerable property on an object. Uses Reflect.defineProperty when available, otherwise Object.defineProperty.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "delayed-stream", + "url": "https://github.com/felixge/node-delayed-stream", + "description": "Buffers events from a stream until you are ready to handle them.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "detect-indent", + "url": "https://github.com/sindresorhus/detect-indent#readme", + "description": "Detect the indentation of code", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "domexception", + "url": "https://github.com/jsdom/domexception#readme", + "description": "An implementation of the DOMException class from browsers", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ecc-jsbn", + "url": "https://github.com/quartzjer/ecc-jsbn", + "description": "ECC JS code based on JSBN", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "error-ex", + "url": "https://github.com/qix-/node-error-ex#readme", + "description": "Easy error subclassing and stack customization", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "escape-string-regexp", + "url": "https://github.com/sindresorhus/escape-string-regexp#readme", + "description": "Escape RegExp special characters", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "escodegen", + "url": "http://github.com/estools/escodegen", + "description": "ECMAScript code generator", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "esprima", + "url": "http://esprima.org", + "description": "ECMAScript parsing infrastructure for multipurpose analysis", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "estraverse", + "url": "https://github.com/estools/estraverse", + "description": "ECMAScript JS AST traversal functions", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "BSD", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + }, + "dependency": { + "name": "esutils", + "url": "https://github.com/estools/esutils", + "description": "utility box for ECMAScript language tools", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "esutils", + "url": "https://github.com/estools/esutils", + "description": "utility box for ECMAScript language tools", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "execa", + "url": "https://github.com/sindresorhus/execa#readme", + "description": "A better `child_process`", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "expand-brackets", + "url": "https://github.com/jonschlinkert/expand-brackets", + "description": "Expand POSIX bracket expressions (character classes) in glob patterns.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "extend", + "url": "https://github.com/justmoon/node-extend#readme", + "description": "Port of jQuery.extend for node.js and the browser", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "extend-shallow", + "url": "https://github.com/jonschlinkert/extend-shallow", + "description": "Extend an object with the properties of additional objects. node.js/javascript util.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "extend-shallow", + "url": "https://github.com/jonschlinkert/extend-shallow", + "description": "Extend an object with the properties of additional objects. node.js/javascript util.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "extglob", + "url": "https://github.com/micromatch/extglob", + "description": "Extended glob support for JavaScript. Adds (almost) the expressive power of regular expressions to glob patterns.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "extsprintf", + "url": "https://github.com/davepacheco/node-extsprintf#readme", + "description": "extended POSIX-style sprintf", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "fast-deep-equal", + "url": "https://github.com/epoberezkin/fast-deep-equal#readme", + "description": "Fast deep equal", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "fast-json-stable-stringify", + "url": "https://github.com/epoberezkin/fast-json-stable-stringify", + "description": "deterministic `JSON.stringify()` - a faster version of substack's json-stable-strigify without jsonify", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "fast-levenshtein", + "url": "https://github.com/hiddentao/fast-levenshtein#readme", + "description": "Efficient implementation of Levenshtein algorithm with locale-specific collator support.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "fill-range", + "url": "https://github.com/jonschlinkert/fill-range", + "description": "Fill in a range of numbers or letters, optionally passing an increment or `step` to use, or create a regex-compatible range with `options.toRegex`", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "find-cache-dir", + "url": "https://github.com/jamestalmage/find-cache-dir#readme", + "description": "My well-made module", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "find-up", + "url": "https://github.com/sindresorhus/find-up#readme", + "description": "Find a file by walking up parent directories", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "find-up", + "url": "https://github.com/sindresorhus/find-up#readme", + "description": "Find a file by walking up parent directories", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "for-in", + "url": "https://github.com/jonschlinkert/for-in", + "description": "Iterate over the own and inherited enumerable properties of an object, and return an object with properties that evaluate to true from the callback. Exit early by returning `false`. JavaScript/Node.js", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "foreground-child", + "url": "https://github.com/tapjs/foreground-child#readme", + "description": "Run a child as if it's the foreground process. Give it stdio. Exit when it exits.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "forever-agent", + "url": "https://github.com/mikeal/forever-agent#readme", + "description": "HTTP Agent that keeps socket connections alive between keep-alive requests. Formerly part of mikeal/request, now a standalone module.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "form-data", + "url": "https://github.com/form-data/form-data#readme", + "description": "A library to create readable \"multipart/form-data\" streams. Can be used to submit forms and file uploads to other web applications.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "fragment-cache", + "url": "https://github.com/jonschlinkert/fragment-cache", + "description": "A cache for managing namespaced sub-caches", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "fs.realpath", + "url": "https://github.com/isaacs/fs.realpath#readme", + "description": "Use node's fs.realpath, but fall back to the JS implementation if the native one fails", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "get-caller-file", + "url": "https://github.com/stefanpenner/get-caller-file#readme", + "description": "[![Build Status](https://travis-ci.org/ember-cli/ember-cli.svg?branch=master)](https://travis-ci.org/ember-cli/ember-cli) [![Build status](https://ci.appveyor.com/api/projects/status/ol2q94g1932cy14a/branch/master?svg=true)](https://ci.appveyor.com/project/embercli/get-caller-file/branch/master)", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "get-stream", + "url": "https://github.com/sindresorhus/get-stream#readme", + "description": "Get a stream as a string, buffer, or array", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "get-value", + "url": "https://github.com/jonschlinkert/get-value", + "description": "Use property paths (`a.b.c`) to get a nested value from an object.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "getpass", + "url": "https://github.com/arekinath/node-getpass#readme", + "description": "getpass for node.js", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "glob", + "url": "https://github.com/isaacs/node-glob#readme", + "description": "a little globber", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "globals", + "url": "https://github.com/sindresorhus/globals#readme", + "description": "Global identifiers from different JavaScript environments", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "graceful-fs", + "url": "https://github.com/isaacs/node-graceful-fs#readme", + "description": "A drop-in replacement for fs, making various improvements.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "handlebars", + "url": "http://www.handlebarsjs.com/", + "description": "Handlebars provides the power necessary to let you build semantic templates effectively with no frustration", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "har-schema", + "url": "https://github.com/ahmadnassri/har-schema", + "description": "JSON Schema for HTTP Archive (HAR)", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "har-validator", + "url": "https://github.com/ahmadnassri/node-har-validator", + "description": "Extremely fast HTTP Archive (HAR) validator using JSON Schema", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "has-ansi", + "url": "https://github.com/sindresorhus/has-ansi#readme", + "description": "Check if a string has ANSI escape codes", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "has-flag", + "url": "https://github.com/sindresorhus/has-flag#readme", + "description": "Check if argv has a specific flag", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "has-value", + "url": "https://github.com/jonschlinkert/has-value", + "description": "Returns true if a value exists, false if empty. Works with deeply nested values using object paths.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "has-value", + "url": "https://github.com/jonschlinkert/has-value", + "description": "Returns true if a value exists, false if empty. Works with deeply nested values using object paths.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "has-values", + "url": "https://github.com/jonschlinkert/has-values", + "description": "Returns true if any values exist, false if empty. Works for booleans, functions, numbers, strings, nulls, objects and arrays. ", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "has-values", + "url": "https://github.com/jonschlinkert/has-values", + "description": "Returns true if any values exist, false if empty. Works for booleans, functions, numbers, strings, nulls, objects and arrays. ", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "highlight.js", + "url": "https://highlightjs.org/", + "description": "Syntax highlighting with language autodetection.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "hosted-git-info", + "url": "https://github.com/npm/hosted-git-info", + "description": "Provides metadata and conversions from repository urls for Github, Bitbucket and Gitlab", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "html-encoding-sniffer", + "url": "https://github.com/jsdom/html-encoding-sniffer#readme", + "description": "Sniff the encoding from a HTML byte stream", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "http-signature", + "url": "https://github.com/joyent/node-http-signature/", + "description": "Reference implementation of Joyent's HTTP Signature scheme.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "iconv-lite", + "url": "https://github.com/ashtuchkin/iconv-lite", + "description": "Convert character encodings in pure javascript.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "imurmurhash", + "url": "https://github.com/jensyt/imurmurhash-js", + "description": "An incremental implementation of MurmurHash3", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "inflight", + "url": "https://github.com/isaacs/inflight", + "description": "Add callbacks to requests in flight to avoid async duplication", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "inherits", + "url": "https://github.com/isaacs/inherits#readme", + "description": "Browser-friendly inheritance fully compatible with standard node.js inherits()", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "invariant", + "url": "https://github.com/zertosh/invariant#readme", + "description": "invariant", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "invert-kv", + "url": "https://github.com/sindresorhus/invert-kv#readme", + "description": "Invert the key/value of an object. Example: {foo: 'bar'} → {bar: 'foo'}", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-accessor-descriptor", + "url": "https://github.com/jonschlinkert/is-accessor-descriptor", + "description": "Returns true if a value has the characteristics of a valid JavaScript accessor descriptor.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-accessor-descriptor", + "url": "https://github.com/jonschlinkert/is-accessor-descriptor", + "description": "Returns true if a value has the characteristics of a valid JavaScript accessor descriptor.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-arrayish", + "url": "https://github.com/qix-/node-is-arrayish#readme", + "description": "Determines if an object can be used as an array", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-buffer", + "url": "https://github.com/feross/is-buffer#readme", + "description": "Determine if an object is a Buffer", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-builtin-module", + "url": "https://github.com/sindresorhus/is-builtin-module#readme", + "description": "Check if a string matches the name of a Node.js builtin module", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-data-descriptor", + "url": "https://github.com/jonschlinkert/is-data-descriptor", + "description": "Returns true if a value has the characteristics of a valid JavaScript data descriptor.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-data-descriptor", + "url": "https://github.com/jonschlinkert/is-data-descriptor", + "description": "Returns true if a value has the characteristics of a valid JavaScript data descriptor.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-descriptor", + "url": "https://github.com/jonschlinkert/is-descriptor", + "description": "Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for data descriptors and accessor descriptors.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-descriptor", + "url": "https://github.com/jonschlinkert/is-descriptor", + "description": "Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for data descriptors and accessor descriptors.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-extendable", + "url": "https://github.com/jonschlinkert/is-extendable", + "description": "Returns true if a value is any of the object types: array, regexp, plain object, function or date. This is useful for determining if a value can be extended, e.g. \"can the value have keys?\"", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-extendable", + "url": "https://github.com/jonschlinkert/is-extendable", + "description": "Returns true if a value is a plain object, array or function.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-finite", + "url": "https://github.com/sindresorhus/is-finite#readme", + "description": "ES2015 Number.isFinite() ponyfill", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-fullwidth-code-point", + "url": "https://github.com/sindresorhus/is-fullwidth-code-point#readme", + "description": "Check if the character represented by a given Unicode code point is fullwidth", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-fullwidth-code-point", + "url": "https://github.com/sindresorhus/is-fullwidth-code-point#readme", + "description": "Check if the character represented by a given Unicode code point is fullwidth", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-number", + "url": "https://github.com/jonschlinkert/is-number", + "description": "Returns true if the value is a number. comprehensive tests.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-number", + "url": "https://github.com/jonschlinkert/is-number", + "description": "Returns true if the value is a number. comprehensive tests.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-odd", + "url": "https://github.com/jonschlinkert/is-odd", + "description": "Returns true if the given number is odd.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-plain-object", + "url": "https://github.com/jonschlinkert/is-plain-object", + "description": "Returns true if an object was created by the `Object` constructor.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-stream", + "url": "https://github.com/sindresorhus/is-stream#readme", + "description": "Check if something is a Node.js stream", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-typedarray", + "url": "https://github.com/hughsk/is-typedarray", + "description": "Detect whether or not an object is a Typed Array", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-utf8", + "url": "https://github.com/wayfind/is-utf8#readme", + "description": "Detect if a buffer is utf8 encoded.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-windows", + "url": "https://github.com/jonschlinkert/is-windows", + "description": "Returns true if the platform is windows. UMD module, works with node.js, commonjs, browser, AMD, electron, etc.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "isarray", + "url": "https://github.com/juliangruber/isarray", + "description": "Array#isArray for older browsers", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "isexe", + "url": "https://github.com/isaacs/isexe#readme", + "description": "Minimal module to check if a file is executable.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "isobject", + "url": "https://github.com/jonschlinkert/isobject", + "description": "Returns true if the value is an object and not an array or null.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "isobject", + "url": "https://github.com/jonschlinkert/isobject", + "description": "Returns true if the value is an object and not an array or null.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "isstream", + "url": "https://github.com/rvagg/isstream", + "description": "Determine if an object is a Stream", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "istanbul-lib-coverage", + "url": "https://github.com/istanbuljs/istanbuljs", + "description": "Data library for istanbul coverage objects", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "istanbul-lib-hook", + "url": "https://github.com/istanbuljs/istanbuljs#readme", + "description": "Hooks for require, vm and script used in istanbul", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "istanbul-lib-instrument", + "url": "https://github.com/istanbuljs/istanbuljs", + "description": "Core istanbul API for JS code coverage", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "istanbul-lib-report", + "url": "https://github.com/istanbuljs/istanbuljs", + "description": "Base reporting library for istanbul", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "istanbul-lib-source-maps", + "url": "https://github.com/istanbuljs/istanbuljs#readme", + "description": "Source maps support for istanbul", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "istanbul-reports", + "url": "https://github.com/istanbuljs/istanbuljs", + "description": "istanbul reports", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD, MIT, ISC, Apache 2.0", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "js-npm", + "description": "Test project for js-npm", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "js-tokens", + "url": "https://github.com/lydell/js-tokens#readme", + "description": "A regex that tokenizes JavaScript.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "jsbn", + "url": "https://github.com/andyperlitch/jsbn#readme", + "description": "The jsbn library is a fast, portable implementation of large-number math in pure JavaScript, enabling public-key crypto and other applications on desktop and mobile browsers.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "jsdom", + "url": "https://github.com/jsdom/jsdom#readme", + "description": "A JavaScript implementation of many web standards", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "jsesc", + "url": "https://mths.be/jsesc", + "description": "A JavaScript library for escaping JavaScript strings while generating the shortest possible valid output.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "BSD, AFLv2.1", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + }, + "dependency": { + "name": "json-schema", + "url": "https://github.com/kriszyp/json-schema#readme", + "description": "JSON Schema validation and specifications", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "json-schema-traverse", + "url": "https://github.com/epoberezkin/json-schema-traverse#readme", + "description": "Traverse JSON Schema passing each schema object to callback", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "json-stringify-safe", + "url": "https://github.com/isaacs/json-stringify-safe", + "description": "Like JSON.stringify, but doesn't blow up on circular refs.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "jsprim", + "url": "https://github.com/joyent/node-jsprim#readme", + "description": "utilities for primitive JavaScript types", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "kind-of", + "url": "https://github.com/jonschlinkert/kind-of", + "description": "Get the native type of a value.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "kind-of", + "url": "https://github.com/jonschlinkert/kind-of", + "description": "Get the native type of a value.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "kind-of", + "url": "https://github.com/jonschlinkert/kind-of", + "description": "Get the native type of a value.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "kind-of", + "url": "https://github.com/jonschlinkert/kind-of", + "description": "Get the native type of a value.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lazy-cache", + "url": "https://github.com/jonschlinkert/lazy-cache", + "description": "Cache requires to be lazy-loaded when needed.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lcid", + "url": "https://github.com/sindresorhus/lcid#readme", + "description": "Mapping between standard locale identifiers and Windows locale identifiers (LCID)", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "WTFPL" + }, + "dependency": { + "name": "left-pad", + "url": "https://github.com/stevemao/left-pad#readme", + "description": "String left pad", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "levn", + "url": "https://github.com/gkz/levn", + "description": "Light ECMAScript (JavaScript) Value Notation - human written, concise, typed, flexible", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "load-json-file", + "url": "https://github.com/sindresorhus/load-json-file#readme", + "description": "Read and parse a JSON file", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "locate-path", + "url": "https://github.com/sindresorhus/locate-path#readme", + "description": "Get the first path that exists on disk of multiple paths", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash", + "url": "https://lodash.com/", + "description": "Lodash modular utilities.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash", + "url": "https://lodash.com/", + "description": "Lodash modular utilities.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash.sortby", + "url": "https://lodash.com/", + "description": "The lodash method `_.sortBy` exported as a module.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "longest", + "url": "https://github.com/jonschlinkert/longest", + "description": "Get the longest item in an array.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "loose-envify", + "url": "https://github.com/zertosh/loose-envify", + "description": "Fast (and loose) selective `process.env` replacer using js-tokens instead of an AST", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "lru-cache", + "url": "https://github.com/isaacs/node-lru-cache#readme", + "description": "A cache object that deletes the least-recently-used items.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "map-cache", + "url": "https://github.com/jonschlinkert/map-cache", + "description": "Basic cache object for storing key-value pairs.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "map-visit", + "url": "https://github.com/jonschlinkert/map-visit", + "description": "Map `visit` over an array of objects.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "md5-hex", + "url": "https://github.com/sindresorhus/md5-hex#readme", + "description": "Create a MD5 hash with hex encoding", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "md5-o-matic", + "url": "https://github.com/trentmillar/md5-o-matic", + "description": "Fast and simple MD5 hashing utility with zero module dependencies. View MD5 Shootout results, http://jsperf.com/md5-shootout/39", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mem", + "url": "https://github.com/sindresorhus/mem#readme", + "description": "Memoize functions - An optimization used to speed up consecutive function calls by caching the result of calls with identical input", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "merge-source-map", + "url": "https://github.com/keik/merge-source-map#readme", + "description": "Merge old source map and new source map in multi-transform flow", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "micromatch", + "url": "https://github.com/micromatch/micromatch", + "description": "Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mime-db", + "url": "https://github.com/jshttp/mime-db#readme", + "description": "Media Type Database", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mime-types", + "url": "https://github.com/jshttp/mime-types#readme", + "description": "The ultimate javascript content-type utility.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mimic-fn", + "url": "https://github.com/sindresorhus/mimic-fn#readme", + "description": "Make a function mimic another one", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "minimatch", + "url": "https://github.com/isaacs/minimatch#readme", + "description": "a glob matcher in javascript", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "minimist", + "url": "https://github.com/substack/minimist", + "description": "parse argument options", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mixin-deep", + "url": "https://github.com/jonschlinkert/mixin-deep", + "description": "Deeply mix the properties of objects into the first object. Like merge-deep, but doesn't clone.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mkdirp", + "url": "https://github.com/substack/node-mkdirp#readme", + "description": "Recursively mkdir, like `mkdir -p`", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "moment", + "url": "http://momentjs.com", + "description": "Parse, validate, manipulate, and display dates", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ms", + "url": "https://github.com/zeit/ms#readme", + "description": "Tiny milisecond conversion utility", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "nanomatch", + "url": "https://github.com/micromatch/nanomatch", + "description": "Fast, minimal glob matcher for node.js. Similar to micromatch, minimatch and multimatch, but complete Bash 4.3 wildcard support only (no support for exglobs, posix brackets or braces)", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "normalize-package-data", + "url": "https://github.com/npm/normalize-package-data#readme", + "description": "Normalizes data that can be found in package.json files.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "normalize.css", + "url": "https://necolas.github.io/normalize.css", + "description": "A modern alternative to CSS resets", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "npm-run-path", + "url": "https://github.com/sindresorhus/npm-run-path#readme", + "description": "Get your PATH prepended with locally installed binaries", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "number-is-nan", + "url": "https://github.com/sindresorhus/number-is-nan#readme", + "description": "ES2015 Number.isNaN() ponyfill", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "nwsapi", + "url": "http://javascript.nwbox.com/nwsapi/", + "description": "Fast CSS Selectors API Engine", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "nyc", + "url": "https://github.com/istanbuljs/nyc#readme", + "description": "the Istanbul command line interface", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "oauth-sign", + "url": "https://github.com/mikeal/oauth-sign#readme", + "description": "OAuth 1 signing. Formerly a vendor lib in mikeal/request, now a standalone module.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "object-assign", + "url": "https://github.com/sindresorhus/object-assign#readme", + "description": "ES2015 `Object.assign()` ponyfill", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "object-copy", + "url": "https://github.com/jonschlinkert/object-copy", + "description": "Copy static properties, prototype properties, and descriptors from one object to another.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "object-visit", + "url": "https://github.com/jonschlinkert/object-visit", + "description": "Call a specified method on each value in the given object.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "object.pick", + "url": "https://github.com/jonschlinkert/object.pick", + "description": "Returns a filtered copy of an object with only the specified keys, similar to `_.pick` from lodash / underscore.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "once", + "url": "https://github.com/isaacs/once#readme", + "description": "Run a function exactly one time", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT/X11" + }, + "dependency": { + "name": "optimist", + "url": "https://github.com/substack/node-optimist#readme", + "description": "Light-weight option parsing with an argv hash. No optstrings attached.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "optionator", + "url": "https://github.com/gkz/optionator", + "description": "option parsing and help generation", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "os-homedir", + "url": "https://github.com/sindresorhus/os-homedir#readme", + "description": "Node.js 4 `os.homedir()` ponyfill", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "os-locale", + "url": "https://github.com/sindresorhus/os-locale#readme", + "description": "Get the system locale", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "p-finally", + "url": "https://github.com/sindresorhus/p-finally#readme", + "description": "`Promise#finally()` ponyfill - Invoked when the promise is settled regardless of outcome", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "p-limit", + "url": "https://github.com/sindresorhus/p-limit#readme", + "description": "Run multiple promise-returning & async functions with limited concurrency", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "p-locate", + "url": "https://github.com/sindresorhus/p-locate#readme", + "description": "Get the first fulfilled promise that satisfies the provided testing function", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "p-try", + "url": "https://github.com/sindresorhus/p-try#readme", + "description": "`Promise#try()` ponyfill - Starts a promise chain", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "parse-json", + "url": "https://github.com/sindresorhus/parse-json#readme", + "description": "Parse JSON with more helpful errors", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "parse5", + "url": "https://github.com/inikulin/parse5", + "description": "HTML parsing/serialization toolset for Node.js. WHATWG HTML Living Standard (aka HTML5)-compliant.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pascalcase", + "url": "https://github.com/jonschlinkert/pascalcase", + "description": "Convert a string to pascal-case.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "path-exists", + "url": "https://github.com/sindresorhus/path-exists#readme", + "description": "Check if a path exists", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "path-exists", + "url": "https://github.com/sindresorhus/path-exists#readme", + "description": "Check if a path exists", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "path-is-absolute", + "url": "https://github.com/sindresorhus/path-is-absolute#readme", + "description": "Node.js 0.12 path.isAbsolute() ponyfill", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "path-key", + "url": "https://github.com/sindresorhus/path-key#readme", + "description": "Get the PATH environment variable key cross-platform", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "path-parse", + "url": "https://github.com/jbgutierrez/path-parse#readme", + "description": "Node.js path.parse() ponyfill", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "path-type", + "url": "https://github.com/sindresorhus/path-type#readme", + "description": "Check if a path is a file, directory, or symlink", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "performance-now", + "url": "https://github.com/braveg1rl/performance-now", + "description": "Implements performance.now (based on process.hrtime).", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pify", + "url": "https://github.com/sindresorhus/pify#readme", + "description": "Promisify a callback-style function", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pinkie", + "url": "https://github.com/floatdrop/pinkie#readme", + "description": "Itty bitty little widdle twinkie pinkie ES2015 Promise implementation", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pinkie-promise", + "url": "https://github.com/floatdrop/pinkie-promise#readme", + "description": "ES2015 Promise ponyfill", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pkg-dir", + "url": "https://github.com/sindresorhus/pkg-dir#readme", + "description": "Find the root directory of a npm package", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pn", + "url": "https://github.com/cscott/node-pn#readme", + "description": "Promisify the node standard library.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "posix-character-classes", + "url": "https://github.com/jonschlinkert/posix-character-classes", + "description": "POSIX character classes for creating regular expressions.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "prelude-ls", + "url": "http://preludels.com", + "description": "prelude.ls is a functionally oriented utility library. It is powerful and flexible. Almost all of its functions are curried. It is written in, and is the recommended base library for, LiveScript.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "pseudomap", + "url": "https://github.com/isaacs/pseudomap#readme", + "description": "A thing that is a lot like ES6 `Map`, but without iterators, for use in environments where `for..of` syntax and `Map` are not available.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "psl", + "url": "https://github.com/lupomontero/psl#readme", + "description": "Domain name parser based on the Public Suffix List", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "punycode", + "url": "https://mths.be/punycode", + "description": "A robust Punycode converter that fully complies to RFC 3492 and RFC 5891, and works on nearly all JavaScript platforms.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "punycode", + "url": "https://mths.be/punycode", + "description": "A robust Punycode converter that fully complies to RFC 3492 and RFC 5891, and works on nearly all JavaScript platforms.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "qs", + "url": "https://github.com/ljharb/qs", + "description": "A querystring parser that supports nesting and arrays, with a depth limit", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "read-pkg", + "url": "https://github.com/sindresorhus/read-pkg#readme", + "description": "Read a package.json file", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "read-pkg-up", + "url": "https://github.com/sindresorhus/read-pkg-up#readme", + "description": "Read the closest package.json file", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "regenerator-runtime", + "description": "Runtime for Regenerator-compiled generator and async functions.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "regex-not", + "url": "https://github.com/jonschlinkert/regex-not", + "description": "Create a javascript regular expression for matching everything except for the given string.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "repeat-element", + "url": "https://github.com/jonschlinkert/repeat-element", + "description": "Create an array by repeating the given value n times.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "repeat-string", + "url": "https://github.com/jonschlinkert/repeat-string", + "description": "Repeat the given string n times. Fastest implementation for repeating a string.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "repeating", + "url": "https://github.com/sindresorhus/repeating#readme", + "description": "Repeat a string - fast", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "request", + "url": "https://github.com/request/request#readme", + "description": "Simplified HTTP request client.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "request-promise-core", + "url": "https://github.com/request/promise-core#readme", + "description": "Core Promise support implementation for the simplified HTTP request client 'request'.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "request-promise-native", + "url": "https://github.com/request/request-promise-native#readme", + "description": "The simplified HTTP request client 'request' with Promise support. Powered by native ES6 promises.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "require-directory", + "url": "https://github.com/troygoode/node-require-directory/", + "description": "Recursively iterates over specified directory, require()'ing each file, and returning a nested hash structure containing those modules.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "require-main-filename", + "url": "https://github.com/yargs/require-main-filename#readme", + "description": "shim for require.main.filename() that works in as many environments as possible", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "resolve-from", + "url": "https://github.com/sindresorhus/resolve-from#readme", + "description": "Resolve the path of a module like require.resolve() but from a given path", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "resolve-url", + "url": "https://github.com/lydell/resolve-url#readme", + "description": "Like Node.js’ `path.resolve`/`url.resolve` for the browser.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ret", + "url": "https://github.com/fent/ret.js#readme", + "description": "Tokenizes a string that represents a regular expression.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "right-align", + "url": "https://github.com/jonschlinkert/right-align", + "description": "Right-align the text in a string.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "rimraf", + "url": "https://github.com/isaacs/rimraf#readme", + "description": "A deep deletion module for node (like `rm -rf`)", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "safe-buffer", + "url": "https://github.com/feross/safe-buffer", + "description": "Safer Node.js Buffer API", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "safe-regex", + "url": "https://github.com/substack/safe-regex", + "description": "detect possibly catastrophic, exponential-time regular expressions", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "safer-buffer", + "url": "https://github.com/ChALkeR/safer-buffer#readme", + "description": "Modern Buffer API polyfill without footguns", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "sax", + "url": "https://github.com/isaacs/sax-js#readme", + "description": "An evented streaming XML parser in JavaScript", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "semver", + "url": "https://github.com/npm/node-semver#readme", + "description": "The semantic version parser used by npm.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "set-blocking", + "url": "https://github.com/yargs/set-blocking#readme", + "description": "set blocking stdio and stderr ensuring that terminal output does not truncate", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "set-value", + "url": "https://github.com/jonschlinkert/set-value", + "description": "Create nested values and any intermediaries using dot notation (`'a.b.c'`) paths.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "set-value", + "url": "https://github.com/jonschlinkert/set-value", + "description": "Create nested values and any intermediaries using dot notation (`'a.b.c'`) paths.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "shebang-command", + "url": "https://github.com/kevva/shebang-command#readme", + "description": "Get the command from a shebang", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "shebang-regex", + "url": "https://github.com/sindresorhus/shebang-regex#readme", + "description": "Regular expression for matching a shebang", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "signal-exit", + "url": "https://github.com/tapjs/signal-exit", + "description": "when you want to fire an event no matter how a process exits.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "slide", + "url": "https://github.com/isaacs/slide-flow-control#readme", + "description": "A flow control lib small enough to fit on in a slide presentation. Derived live at Oak.JS", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "snapdragon", + "url": "https://github.com/jonschlinkert/snapdragon", + "description": "Fast, pluggable and easy-to-use parser-renderer factory.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "snapdragon-node", + "url": "https://github.com/jonschlinkert/snapdragon-node", + "description": "Snapdragon utility for creating a new AST node in custom code, such as plugins.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "snapdragon-util", + "url": "https://github.com/jonschlinkert/snapdragon-util", + "description": "Utilities for the snapdragon parser/compiler.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "source-map", + "url": "https://github.com/mozilla/source-map", + "description": "Generates and consumes source maps", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "source-map", + "url": "https://github.com/mozilla/source-map", + "description": "Generates and consumes source maps", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "source-map", + "url": "https://github.com/mozilla/source-map", + "description": "Generates and consumes source maps", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "source-map-resolve", + "url": "https://github.com/lydell/source-map-resolve#readme", + "description": "Resolve the source map and/or sources for a generated file.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "source-map-url", + "url": "https://github.com/lydell/source-map-url#readme", + "description": "Tools for working with sourceMappingURL comments.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "spawn-wrap", + "url": "https://github.com/isaacs/spawn-wrap#readme", + "description": "Wrap all spawned Node.js child processes by adding environs and arguments ahead of the main JavaScript file argument.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "spdx-correct", + "url": "https://github.com/jslicense/spdx-correct.js#readme", + "description": "correct invalid SPDX expressions", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "CC-BY-3.0" + }, + "dependency": { + "name": "spdx-exceptions", + "url": "https://github.com/kemitchell/spdx-exceptions.json#readme", + "description": "list of SPDX standard license exceptions", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "spdx-expression-parse", + "url": "https://github.com/jslicense/spdx-expression-parse.js#readme", + "description": "parse SPDX license expressions", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "spdx-license-ids", + "url": "https://github.com/shinnn/spdx-license-ids#readme", + "description": "A list of SPDX license identifiers", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "split-string", + "url": "https://github.com/jonschlinkert/split-string", + "description": "Split a string on a character except when the character is escaped.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "sshpk", + "url": "https://github.com/arekinath/node-sshpk#readme", + "description": "A library for finding and using SSH public keys", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "static-extend", + "url": "https://github.com/jonschlinkert/static-extend", + "description": "Adds a static `extend` method to a class, to simplify inheritance. Extends the static properties, prototype properties, and descriptors from a `Parent` constructor onto `Child` constructors.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "stealthy-require", + "url": "https://github.com/analog-nico/stealthy-require#readme", + "description": "The closest you can get to require something with bypassing the require cache", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "string-width", + "url": "https://github.com/sindresorhus/string-width#readme", + "description": "Get the visual width of a string - the number of columns required to display it", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "string-width", + "url": "https://github.com/sindresorhus/string-width#readme", + "description": "Get the visual width of a string - the number of columns required to display it", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "strip-ansi", + "url": "https://github.com/chalk/strip-ansi#readme", + "description": "Strip ANSI escape codes", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "strip-ansi", + "url": "https://github.com/chalk/strip-ansi#readme", + "description": "Strip ANSI escape codes", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "strip-bom", + "url": "https://github.com/sindresorhus/strip-bom#readme", + "description": "Strip UTF-8 byte order mark (BOM) from a string/buffer", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "strip-eof", + "url": "https://github.com/sindresorhus/strip-eof#readme", + "description": "Strip the End-Of-File (EOF) character from a string/buffer", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "supports-color", + "url": "https://github.com/chalk/supports-color#readme", + "description": "Detect whether a terminal supports color", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "supports-color", + "url": "https://github.com/chalk/supports-color#readme", + "description": "Detect whether a terminal supports color", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "symbol-tree", + "url": "https://github.com/jsdom/js-symbol-tree#symbol-tree", + "description": "Turn any collection of objects into its own efficient tree or linked list using Symbol", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "test-exclude", + "url": "https://github.com/istanbuljs/istanbuljs#readme", + "description": "test for inclusion or exclusion of paths using pkg-conf and globs", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "to-fast-properties", + "url": "https://github.com/sindresorhus/to-fast-properties#readme", + "description": "Force V8 to use fast properties for an object", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "to-object-path", + "url": "https://github.com/jonschlinkert/to-object-path", + "description": "Create an object path from a list or array of strings.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "to-regex", + "url": "https://github.com/jonschlinkert/to-regex", + "description": "Generate a regex from a string or array of strings.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "to-regex-range", + "url": "https://github.com/micromatch/to-regex-range", + "description": "Pass two numbers, get a regex-compatible source string for matching ranges. Validated against more than 2.78 million test assertions.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "tough-cookie", + "url": "https://github.com/salesforce/tough-cookie", + "description": "RFC6265 Cookies and Cookie Jar for node.js", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "tr46", + "url": "https://github.com/Sebmaster/tr46.js#readme", + "description": "An implementation of the Unicode TR46 spec", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "trim-right", + "url": "https://github.com/sindresorhus/trim-right#readme", + "description": "Similar to String#trim() but removes only whitespace on the right", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "tunnel-agent", + "url": "https://github.com/mikeal/tunnel-agent#readme", + "description": "HTTP proxy tunneling agent. Formerly part of mikeal/request, now a standalone module.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Unlicense" + }, + "dependency": { + "name": "tweetnacl", + "url": "https://tweetnacl.js.org", + "description": "Port of TweetNaCl cryptographic library to JavaScript", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "type-check", + "url": "https://github.com/gkz/type-check", + "description": "type-check allows you to check the types of JavaScript values at runtime with a Haskell like type syntax.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "uglify-js", + "url": "http://lisperator.net/uglifyjs", + "description": "JavaScript parser, mangler/compressor and beautifier toolkit", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "uglify-to-browserify", + "url": "https://github.com/ForbesLindesay/uglify-to-browserify#readme", + "description": "A transform to make UglifyJS work in browserify.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "union-value", + "url": "https://github.com/jonschlinkert/union-value", + "description": "Set an array of unique values as the property of an object. Supports setting deeply nested properties using using object-paths/dot notation.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "unset-value", + "url": "https://github.com/jonschlinkert/unset-value", + "description": "Delete nested properties from an object using dot notation.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "uri-js", + "url": "https://github.com/garycourt/uri-js", + "description": "An RFC 3986/3987 compliant, scheme extendable URI/IRI parsing/validating/resolving library for JavaScript.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "urix", + "url": "https://github.com/lydell/urix#readme", + "description": "Makes Windows-style paths more unix and URI friendly.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "use", + "url": "https://github.com/jonschlinkert/use", + "description": "Easily add plugin support to your node.js application.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "uuid", + "url": "https://github.com/kelektiv/node-uuid#readme", + "description": "RFC4122 (v1, v4, and v5) UUIDs", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "validate-npm-package-license", + "url": "https://github.com/kemitchell/validate-npm-package-license.js#readme", + "description": "Give me a string and I'll tell you if it's a valid npm package license string", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "verror", + "url": "https://github.com/davepacheco/node-verror#readme", + "description": "richer JavaScript errors", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "w3c-hr-time", + "url": "https://github.com/jsdom/w3c-hr-time#readme", + "description": "An implementation of the W3C High Resolution Time Level 2 specification.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "webidl-conversions", + "url": "https://github.com/jsdom/webidl-conversions#readme", + "description": "Implements the WebIDL algorithms for converting to and from JavaScript values", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "whatwg-encoding", + "url": "https://github.com/jsdom/whatwg-encoding#readme", + "description": "Decode strings according to the WHATWG Encoding Standard", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "whatwg-mimetype", + "url": "https://github.com/jsdom/whatwg-mimetype#readme", + "description": "Parses, serializes, and manipulates MIME types, according to the WHATWG MIME Sniffing Standard", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "whatwg-url", + "url": "https://github.com/jsdom/whatwg-url#readme", + "description": "An implementation of the WHATWG URL Standard's URL API and parsing machinery", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "whatwg-url", + "url": "https://github.com/jsdom/whatwg-url#readme", + "description": "An implementation of the WHATWG URL Standard's URL API and parsing machinery", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "which", + "url": "https://github.com/isaacs/node-which#readme", + "description": "Like which(1) unix command. Find the first instance of an executable in the PATH.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "which-module", + "url": "https://github.com/nexdrew/which-module#readme", + "description": "Find the module object for something that was require()d", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "window-size", + "url": "https://github.com/jonschlinkert/window-size", + "description": "Reliable way to to get the height and width of the terminal/console in a node.js environment.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "word-wrap", + "url": "https://github.com/jonschlinkert/word-wrap", + "description": "Wrap words to a specified length.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT/X11" + }, + "dependency": { + "name": "wordwrap", + "url": "https://github.com/substack/node-wordwrap#readme", + "description": "Wrap those words. Show them at what columns to start and stop.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "wordwrap", + "url": "https://github.com/substack/node-wordwrap#readme", + "description": "Wrap those words. Show them at what columns to start and stop.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "wrap-ansi", + "url": "https://github.com/chalk/wrap-ansi#readme", + "description": "Wordwrap a string with ANSI escape codes", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "wrappy", + "url": "https://github.com/npm/wrappy", + "description": "Callback wrapping utility", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "write-file-atomic", + "url": "https://github.com/iarna/write-file-atomic", + "description": "Write files in an atomic fashion w/configurable ownership", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ws", + "url": "https://github.com/websockets/ws", + "description": "Simple to use, blazing fast and thoroughly tested websocket client and server for Node.js", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "xml-name-validator", + "url": "https://github.com/jsdom/xml-name-validator#readme", + "description": "Validates whether a string matches the production for an XML name or qualified name", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "y18n", + "url": "https://github.com/yargs/y18n", + "description": "the bare-bones internationalization library used by yargs", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "yallist", + "url": "https://github.com/isaacs/yallist#readme", + "description": "Yet Another Linked List", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "yargs", + "url": "http://yargs.js.org/", + "description": "yargs the modern, pirate-themed, successor to optimist.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "yargs", + "url": "https://github.com/bcoe/yargs#readme", + "description": "Light-weight option parsing with an argv hash. No optstrings attached.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "yargs-parser", + "url": "https://github.com/yargs/yargs-parser#readme", + "description": "the mighty option parser used by yargs", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "yargs-parser", + "url": "https://github.com/yargs/yargs-parser#readme", + "description": "the mighty option parser used by yargs", + "pathes": [ + "." + ] + } + } + ] +} diff --git a/spec/fixtures/expected/js/npm/v1.1.json b/spec/fixtures/expected/js/npm/v1.1.json new file mode 100644 index 0000000..0acc153 --- /dev/null +++ b/spec/fixtures/expected/js/npm/v1.1.json @@ -0,0 +1,7112 @@ +{ + "version": "1.1", + "licenses": [ + { + "count": 271, + "name": "MIT" + }, + { + "count": 38, + "name": "ISC" + }, + { + "count": 14, + "name": "New BSD" + }, + { + "count": 9, + "name": "Apache 2.0" + }, + { + "count": 9, + "name": "Simplified BSD" + }, + { + "count": 2, + "name": "MIT/X11" + }, + { + "count": 1, + "name": "(MIT OR Apache-2.0)" + }, + { + "count": 1, + "name": "BSD" + }, + { + "count": 1, + "name": "BSD, AFLv2.1" + }, + { + "count": 1, + "name": "BSD-3-Clause OR MIT" + }, + { + "count": 1, + "name": "CC-BY-3.0" + }, + { + "count": 1, + "name": "CC0-1.0" + }, + { + "count": 1, + "name": "New BSD, MIT, ISC, Apache 2.0" + }, + { + "count": 1, + "name": "Unlicense" + }, + { + "count": 1, + "name": "WTFPL" + } + ], + "dependencies": [ + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "abab", + "url": "https://github.com/jsdom/abab#readme", + "description": "WHATWG spec-compliant implementations of window.atob and window.btoa.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "acorn", + "url": "https://github.com/acornjs/acorn", + "description": "ECMAScript parser", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "acorn", + "url": "https://github.com/acornjs/acorn", + "description": "ECMAScript parser", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "acorn-globals", + "url": "https://github.com/ForbesLindesay/acorn-globals#readme", + "description": "Detect global variables in JavaScript using acorn", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "acorn-walk", + "url": "https://github.com/acornjs/acorn", + "description": "ECMAScript (ESTree) AST walker", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ajv", + "url": "https://github.com/epoberezkin/ajv", + "description": "Another JSON Schema Validator", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "align-text", + "url": "https://github.com/jonschlinkert/align-text", + "description": "Align the text in a string.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "BSD-3-Clause OR MIT", + "url": "" + } + ], + "license": { + "name": "BSD-3-Clause OR MIT" + }, + "dependency": { + "name": "amdefine", + "url": "http://github.com/jrburke/amdefine", + "description": "Provide AMD's define() API for declaring modules in the AMD format", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ansi-regex", + "url": "https://github.com/chalk/ansi-regex#readme", + "description": "Regular expression for matching ANSI escape codes", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ansi-regex", + "url": "https://github.com/chalk/ansi-regex#readme", + "description": "Regular expression for matching ANSI escape codes", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ansi-styles", + "url": "https://github.com/chalk/ansi-styles#readme", + "description": "ANSI escape codes for styling strings in the terminal", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "append-transform", + "url": "https://github.com/jamestalmage/append-transform#readme", + "description": "Install a transform to `require.extensions` that always runs last, even if additional extensions are added later.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "archy", + "url": "https://github.com/substack/node-archy#readme", + "description": "render nested hierarchies `npm ls` style with unicode pipes", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "arr-diff", + "url": "https://github.com/jonschlinkert/arr-diff", + "description": "Returns an array with only the unique values from the first array, by excluding all values from additional arrays using strict equality for comparisons.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "arr-flatten", + "url": "https://github.com/jonschlinkert/arr-flatten", + "description": "Recursively flatten an array or arrays.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "arr-union", + "url": "https://github.com/jonschlinkert/arr-union", + "description": "Combines a list of arrays, returning a single array with unique values, using strict equality for comparisons.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "array-equal", + "url": "https://github.com/component/array-equal#readme", + "description": "check if two arrays are equal", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "array-unique", + "url": "https://github.com/jonschlinkert/array-unique", + "description": "Remove duplicate values from an array. Fastest ES5 implementation.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "arrify", + "url": "https://github.com/sindresorhus/arrify#readme", + "description": "Convert a value to an array", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "asn1", + "url": "https://github.com/joyent/node-asn1#readme", + "description": "Contains parsers and serializers for ASN.1 (currently BER only)", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "assert-plus", + "url": "https://github.com/mcavage/node-assert-plus#readme", + "description": "Extra assertions on top of node's assert module", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "assign-symbols", + "url": "https://github.com/jonschlinkert/assign-symbols", + "description": "Assign the enumerable es6 Symbol properties from an object (or objects) to the first object passed on the arguments. Can be used as a supplement to other extend, assign or merge methods as a polyfill for the Symbols part of the es6 Object.assign method.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "async", + "url": "https://github.com/caolan/async#readme", + "description": "Higher-order functions and common patterns for asynchronous code", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "async-limiter", + "url": "https://github.com/strml/async-limiter#readme", + "description": "asynchronous function queue with adjustable concurrency", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "asynckit", + "url": "https://github.com/alexindigo/asynckit#readme", + "description": "Minimal async jobs utility library, with streams support", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "(MIT OR Apache-2.0)", + "url": "" + } + ], + "license": { + "name": "(MIT OR Apache-2.0)" + }, + "dependency": { + "name": "atob", + "url": "https://git.coolaj86.com/coolaj86/atob.js.git", + "description": "atob for Node.JS and Linux / Mac / Windows CLI (it's a one-liner)", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "aws-sign2", + "url": "https://github.com/mikeal/aws-sign#readme", + "description": "AWS signing. Originally pulled from LearnBoost/knox, maintained as vendor in request, now a standalone module.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "aws4", + "url": "https://github.com/mhart/aws4#readme", + "description": "Signs and prepares requests using AWS Signature Version 4", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "babel-code-frame", + "url": "https://babeljs.io/", + "description": "Generate errors that contain a code frame that point to source locations.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "babel-generator", + "url": "https://babeljs.io/", + "description": "Turns an AST into code.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "babel-messages", + "url": "https://babeljs.io/", + "description": "Collection of debug messages used by Babel.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "babel-runtime", + "description": "babel selfContained runtime", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "babel-template", + "url": "https://babeljs.io/", + "description": "Generate an AST from a string template.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "babel-traverse", + "url": "https://babeljs.io/", + "description": "The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "babel-types", + "url": "https://babeljs.io/", + "description": "Babel Types is a Lodash-esque utility library for AST nodes", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "babylon", + "url": "https://babeljs.io/", + "description": "A JavaScript parser", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "balanced-match", + "url": "https://github.com/juliangruber/balanced-match", + "description": "Match balanced character pairs, like \"{\" and \"}\"", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "base", + "url": "https://github.com/node-base/base", + "description": "base is the foundation for creating modular, unit testable and highly pluggable node.js applications, starting with a handful of common methods, like `set`, `get`, `del` and `use`.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "bcrypt-pbkdf", + "url": "https://github.com/joyent/node-bcrypt-pbkdf#readme", + "description": "Port of the OpenBSD bcrypt_pbkdf function to pure JS", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "brace-expansion", + "url": "https://github.com/juliangruber/brace-expansion", + "description": "Brace expansion as known from sh/bash", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "braces", + "url": "https://github.com/micromatch/braces", + "description": "Bash-like brace expansion, implemented in JavaScript. Safer than other brace expansion libs, with complete support for the Bash 4.3 braces specification, without sacrificing speed.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + } + ], + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "browser-process-hrtime", + "url": "https://github.com/kumavis/browser-process-hrtime#readme", + "description": "Shim for process.hrtime in the browser", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "builtin-modules", + "url": "https://github.com/sindresorhus/builtin-modules#readme", + "description": "List of the Node.js builtin modules", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cache-base", + "url": "https://github.com/jonschlinkert/cache-base", + "description": "Basic object cache with `get`, `set`, `del`, and `has` methods for node.js/javascript projects.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "caching-transform", + "url": "https://github.com/jamestalmage/caching-transform#readme", + "description": "Wraps a transform and provides caching", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "camelcase", + "url": "https://github.com/sindresorhus/camelcase#readme", + "description": "Convert a dash/dot/underscore/space separated string to camelCase: foo-bar → fooBar", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "camelcase", + "url": "https://github.com/sindresorhus/camelcase#readme", + "description": "Convert a dash/dot/underscore/space separated string to camelCase: foo-bar → fooBar", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "caseless", + "url": "https://github.com/mikeal/caseless#readme", + "description": "Caseless object set/get/has, very useful when working with HTTP headers.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "center-align", + "url": "https://github.com/jonschlinkert/center-align", + "description": "Center-align the text in a string.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "chalk", + "url": "https://github.com/chalk/chalk#readme", + "description": "Terminal string styling done right. Much color.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "class-utils", + "url": "https://github.com/jonschlinkert/class-utils", + "description": "Utils for working with JavaScript classes and prototype methods.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "cliui", + "url": "https://github.com/bcoe/cliui#readme", + "description": "easily create complex multi-column command-line-interfaces", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "cliui", + "url": "https://github.com/yargs/cliui#readme", + "description": "easily create complex multi-column command-line-interfaces", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "code-point-at", + "url": "https://github.com/sindresorhus/code-point-at#readme", + "description": "ES2015 `String#codePointAt()` ponyfill", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "collection-visit", + "url": "https://github.com/jonschlinkert/collection-visit", + "description": "Visit a method over the items in an object, or map visit over the objects in an array.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "combined-stream", + "url": "https://github.com/felixge/node-combined-stream", + "description": "A stream that emits multiple other streams one after another.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "commondir", + "url": "https://github.com/substack/node-commondir#readme", + "description": "compute the closest common parent for file paths", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "component-emitter", + "url": "https://github.com/component/emitter#readme", + "description": "Event emitter", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "concat-map", + "url": "https://github.com/substack/node-concat-map#readme", + "description": "concatenative mapdashery", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "convert-source-map", + "url": "https://github.com/thlorenz/convert-source-map", + "description": "Converts a source-map from/to different formats and allows adding/changing properties.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "copy-descriptor", + "url": "https://github.com/jonschlinkert/copy-descriptor", + "description": "Copy a descriptor from object A to object B", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "core-js", + "url": "https://github.com/zloirock/core-js#readme", + "description": "Standard library", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "core-util-is", + "url": "https://github.com/isaacs/core-util-is#readme", + "description": "The `util.is*` functions introduced in Node v0.12.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cross-spawn", + "url": "https://github.com/IndigoUnited/node-cross-spawn#readme", + "description": "Cross platform child_process#spawn and child_process#spawnSync", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cross-spawn", + "url": "https://github.com/IndigoUnited/node-cross-spawn#readme", + "description": "Cross platform child_process#spawn and child_process#spawnSync", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cssom", + "url": "https://github.com/NV/CSSOM#readme", + "description": "CSS Object Model implementation and CSS parser", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cssstyle", + "url": "https://github.com/jsakas/CSSStyleDeclaration", + "description": "CSSStyleDeclaration Object Model implementation", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "dashdash", + "url": "https://github.com/trentm/node-dashdash#readme", + "description": "A light, featureful and explicit option parsing library.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "data-urls", + "url": "https://github.com/jsdom/data-urls#readme", + "description": "Parses data: URLs", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "debug", + "url": "https://github.com/visionmedia/debug#readme", + "description": "small debugging utility", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "debug", + "url": "https://github.com/visionmedia/debug#readme", + "description": "small debugging utility", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "debug-log", + "url": "https://github.com/sindresorhus/debug-log#readme", + "description": "Node.js 0.12 util.debuglog() ponyfill", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "decamelize", + "url": "https://github.com/sindresorhus/decamelize#readme", + "description": "Convert a camelized string into a lowercased one with a custom separator: unicornRainbow → unicorn_rainbow", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "decode-uri-component", + "url": "https://github.com/SamVerschueren/decode-uri-component#readme", + "description": "A better decodeURIComponent", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "deep-is", + "url": "https://github.com/thlorenz/deep-is#readme", + "description": "node's assert.deepEqual algorithm except for NaN being equal to NaN", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "default-require-extensions", + "url": "https://github.com/jamestalmage/default-require-extensions#readme", + "description": "Node's default require extensions as a separate module", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "define-property", + "url": "https://github.com/jonschlinkert/define-property", + "description": "Define a non-enumerable property on an object.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "define-property", + "url": "https://github.com/jonschlinkert/define-property", + "description": "Define a non-enumerable property on an object.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "define-property", + "url": "https://github.com/jonschlinkert/define-property", + "description": "Define a non-enumerable property on an object. Uses Reflect.defineProperty when available, otherwise Object.defineProperty.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "delayed-stream", + "url": "https://github.com/felixge/node-delayed-stream", + "description": "Buffers events from a stream until you are ready to handle them.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "detect-indent", + "url": "https://github.com/sindresorhus/detect-indent#readme", + "description": "Detect the indentation of code", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "domexception", + "url": "https://github.com/jsdom/domexception#readme", + "description": "An implementation of the DOMException class from browsers", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ecc-jsbn", + "url": "https://github.com/quartzjer/ecc-jsbn", + "description": "ECC JS code based on JSBN", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "error-ex", + "url": "https://github.com/qix-/node-error-ex#readme", + "description": "Easy error subclassing and stack customization", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "escape-string-regexp", + "url": "https://github.com/sindresorhus/escape-string-regexp#readme", + "description": "Escape RegExp special characters", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + } + ], + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "escodegen", + "url": "http://github.com/estools/escodegen", + "description": "ECMAScript code generator", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + } + ], + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "esprima", + "url": "http://esprima.org", + "description": "ECMAScript parsing infrastructure for multipurpose analysis", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + } + ], + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "estraverse", + "url": "https://github.com/estools/estraverse", + "description": "ECMAScript JS AST traversal functions", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "BSD", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + } + ], + "license": { + "name": "BSD", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + }, + "dependency": { + "name": "esutils", + "url": "https://github.com/estools/esutils", + "description": "utility box for ECMAScript language tools", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + } + ], + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "esutils", + "url": "https://github.com/estools/esutils", + "description": "utility box for ECMAScript language tools", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "execa", + "url": "https://github.com/sindresorhus/execa#readme", + "description": "A better `child_process`", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "expand-brackets", + "url": "https://github.com/jonschlinkert/expand-brackets", + "description": "Expand POSIX bracket expressions (character classes) in glob patterns.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "extend", + "url": "https://github.com/justmoon/node-extend#readme", + "description": "Port of jQuery.extend for node.js and the browser", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "extend-shallow", + "url": "https://github.com/jonschlinkert/extend-shallow", + "description": "Extend an object with the properties of additional objects. node.js/javascript util.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "extend-shallow", + "url": "https://github.com/jonschlinkert/extend-shallow", + "description": "Extend an object with the properties of additional objects. node.js/javascript util.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "extglob", + "url": "https://github.com/micromatch/extglob", + "description": "Extended glob support for JavaScript. Adds (almost) the expressive power of regular expressions to glob patterns.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "extsprintf", + "url": "https://github.com/davepacheco/node-extsprintf#readme", + "description": "extended POSIX-style sprintf", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "fast-deep-equal", + "url": "https://github.com/epoberezkin/fast-deep-equal#readme", + "description": "Fast deep equal", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "fast-json-stable-stringify", + "url": "https://github.com/epoberezkin/fast-json-stable-stringify", + "description": "deterministic `JSON.stringify()` - a faster version of substack's json-stable-strigify without jsonify", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "fast-levenshtein", + "url": "https://github.com/hiddentao/fast-levenshtein#readme", + "description": "Efficient implementation of Levenshtein algorithm with locale-specific collator support.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "fill-range", + "url": "https://github.com/jonschlinkert/fill-range", + "description": "Fill in a range of numbers or letters, optionally passing an increment or `step` to use, or create a regex-compatible range with `options.toRegex`", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "find-cache-dir", + "url": "https://github.com/jamestalmage/find-cache-dir#readme", + "description": "My well-made module", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "find-up", + "url": "https://github.com/sindresorhus/find-up#readme", + "description": "Find a file by walking up parent directories", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "find-up", + "url": "https://github.com/sindresorhus/find-up#readme", + "description": "Find a file by walking up parent directories", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "for-in", + "url": "https://github.com/jonschlinkert/for-in", + "description": "Iterate over the own and inherited enumerable properties of an object, and return an object with properties that evaluate to true from the callback. Exit early by returning `false`. JavaScript/Node.js", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "foreground-child", + "url": "https://github.com/tapjs/foreground-child#readme", + "description": "Run a child as if it's the foreground process. Give it stdio. Exit when it exits.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "forever-agent", + "url": "https://github.com/mikeal/forever-agent#readme", + "description": "HTTP Agent that keeps socket connections alive between keep-alive requests. Formerly part of mikeal/request, now a standalone module.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "form-data", + "url": "https://github.com/form-data/form-data#readme", + "description": "A library to create readable \"multipart/form-data\" streams. Can be used to submit forms and file uploads to other web applications.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "fragment-cache", + "url": "https://github.com/jonschlinkert/fragment-cache", + "description": "A cache for managing namespaced sub-caches", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "fs.realpath", + "url": "https://github.com/isaacs/fs.realpath#readme", + "description": "Use node's fs.realpath, but fall back to the JS implementation if the native one fails", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "get-caller-file", + "url": "https://github.com/stefanpenner/get-caller-file#readme", + "description": "[![Build Status](https://travis-ci.org/ember-cli/ember-cli.svg?branch=master)](https://travis-ci.org/ember-cli/ember-cli) [![Build status](https://ci.appveyor.com/api/projects/status/ol2q94g1932cy14a/branch/master?svg=true)](https://ci.appveyor.com/project/embercli/get-caller-file/branch/master)", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "get-stream", + "url": "https://github.com/sindresorhus/get-stream#readme", + "description": "Get a stream as a string, buffer, or array", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "get-value", + "url": "https://github.com/jonschlinkert/get-value", + "description": "Use property paths (`a.b.c`) to get a nested value from an object.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "getpass", + "url": "https://github.com/arekinath/node-getpass#readme", + "description": "getpass for node.js", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "glob", + "url": "https://github.com/isaacs/node-glob#readme", + "description": "a little globber", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "globals", + "url": "https://github.com/sindresorhus/globals#readme", + "description": "Global identifiers from different JavaScript environments", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "graceful-fs", + "url": "https://github.com/isaacs/node-graceful-fs#readme", + "description": "A drop-in replacement for fs, making various improvements.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "handlebars", + "url": "http://www.handlebarsjs.com/", + "description": "Handlebars provides the power necessary to let you build semantic templates effectively with no frustration", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "har-schema", + "url": "https://github.com/ahmadnassri/har-schema", + "description": "JSON Schema for HTTP Archive (HAR)", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "har-validator", + "url": "https://github.com/ahmadnassri/node-har-validator", + "description": "Extremely fast HTTP Archive (HAR) validator using JSON Schema", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "has-ansi", + "url": "https://github.com/sindresorhus/has-ansi#readme", + "description": "Check if a string has ANSI escape codes", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "has-flag", + "url": "https://github.com/sindresorhus/has-flag#readme", + "description": "Check if argv has a specific flag", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "has-value", + "url": "https://github.com/jonschlinkert/has-value", + "description": "Returns true if a value exists, false if empty. Works with deeply nested values using object paths.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "has-value", + "url": "https://github.com/jonschlinkert/has-value", + "description": "Returns true if a value exists, false if empty. Works with deeply nested values using object paths.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "has-values", + "url": "https://github.com/jonschlinkert/has-values", + "description": "Returns true if any values exist, false if empty. Works for booleans, functions, numbers, strings, nulls, objects and arrays. ", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "has-values", + "url": "https://github.com/jonschlinkert/has-values", + "description": "Returns true if any values exist, false if empty. Works for booleans, functions, numbers, strings, nulls, objects and arrays. ", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "highlight.js", + "url": "https://highlightjs.org/", + "description": "Syntax highlighting with language autodetection.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "hosted-git-info", + "url": "https://github.com/npm/hosted-git-info", + "description": "Provides metadata and conversions from repository urls for Github, Bitbucket and Gitlab", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "html-encoding-sniffer", + "url": "https://github.com/jsdom/html-encoding-sniffer#readme", + "description": "Sniff the encoding from a HTML byte stream", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "http-signature", + "url": "https://github.com/joyent/node-http-signature/", + "description": "Reference implementation of Joyent's HTTP Signature scheme.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "iconv-lite", + "url": "https://github.com/ashtuchkin/iconv-lite", + "description": "Convert character encodings in pure javascript.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "imurmurhash", + "url": "https://github.com/jensyt/imurmurhash-js", + "description": "An incremental implementation of MurmurHash3", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "inflight", + "url": "https://github.com/isaacs/inflight", + "description": "Add callbacks to requests in flight to avoid async duplication", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "inherits", + "url": "https://github.com/isaacs/inherits#readme", + "description": "Browser-friendly inheritance fully compatible with standard node.js inherits()", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "invariant", + "url": "https://github.com/zertosh/invariant#readme", + "description": "invariant", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "invert-kv", + "url": "https://github.com/sindresorhus/invert-kv#readme", + "description": "Invert the key/value of an object. Example: {foo: 'bar'} → {bar: 'foo'}", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-accessor-descriptor", + "url": "https://github.com/jonschlinkert/is-accessor-descriptor", + "description": "Returns true if a value has the characteristics of a valid JavaScript accessor descriptor.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-accessor-descriptor", + "url": "https://github.com/jonschlinkert/is-accessor-descriptor", + "description": "Returns true if a value has the characteristics of a valid JavaScript accessor descriptor.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-arrayish", + "url": "https://github.com/qix-/node-is-arrayish#readme", + "description": "Determines if an object can be used as an array", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-buffer", + "url": "https://github.com/feross/is-buffer#readme", + "description": "Determine if an object is a Buffer", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-builtin-module", + "url": "https://github.com/sindresorhus/is-builtin-module#readme", + "description": "Check if a string matches the name of a Node.js builtin module", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-data-descriptor", + "url": "https://github.com/jonschlinkert/is-data-descriptor", + "description": "Returns true if a value has the characteristics of a valid JavaScript data descriptor.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-data-descriptor", + "url": "https://github.com/jonschlinkert/is-data-descriptor", + "description": "Returns true if a value has the characteristics of a valid JavaScript data descriptor.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-descriptor", + "url": "https://github.com/jonschlinkert/is-descriptor", + "description": "Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for data descriptors and accessor descriptors.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-descriptor", + "url": "https://github.com/jonschlinkert/is-descriptor", + "description": "Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for data descriptors and accessor descriptors.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-extendable", + "url": "https://github.com/jonschlinkert/is-extendable", + "description": "Returns true if a value is any of the object types: array, regexp, plain object, function or date. This is useful for determining if a value can be extended, e.g. \"can the value have keys?\"", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-extendable", + "url": "https://github.com/jonschlinkert/is-extendable", + "description": "Returns true if a value is a plain object, array or function.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-finite", + "url": "https://github.com/sindresorhus/is-finite#readme", + "description": "ES2015 Number.isFinite() ponyfill", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-fullwidth-code-point", + "url": "https://github.com/sindresorhus/is-fullwidth-code-point#readme", + "description": "Check if the character represented by a given Unicode code point is fullwidth", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-fullwidth-code-point", + "url": "https://github.com/sindresorhus/is-fullwidth-code-point#readme", + "description": "Check if the character represented by a given Unicode code point is fullwidth", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-number", + "url": "https://github.com/jonschlinkert/is-number", + "description": "Returns true if the value is a number. comprehensive tests.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-number", + "url": "https://github.com/jonschlinkert/is-number", + "description": "Returns true if the value is a number. comprehensive tests.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-odd", + "url": "https://github.com/jonschlinkert/is-odd", + "description": "Returns true if the given number is odd.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-plain-object", + "url": "https://github.com/jonschlinkert/is-plain-object", + "description": "Returns true if an object was created by the `Object` constructor.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-stream", + "url": "https://github.com/sindresorhus/is-stream#readme", + "description": "Check if something is a Node.js stream", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-typedarray", + "url": "https://github.com/hughsk/is-typedarray", + "description": "Detect whether or not an object is a Typed Array", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-utf8", + "url": "https://github.com/wayfind/is-utf8#readme", + "description": "Detect if a buffer is utf8 encoded.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-windows", + "url": "https://github.com/jonschlinkert/is-windows", + "description": "Returns true if the platform is windows. UMD module, works with node.js, commonjs, browser, AMD, electron, etc.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "isarray", + "url": "https://github.com/juliangruber/isarray", + "description": "Array#isArray for older browsers", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "isexe", + "url": "https://github.com/isaacs/isexe#readme", + "description": "Minimal module to check if a file is executable.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "isobject", + "url": "https://github.com/jonschlinkert/isobject", + "description": "Returns true if the value is an object and not an array or null.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "isobject", + "url": "https://github.com/jonschlinkert/isobject", + "description": "Returns true if the value is an object and not an array or null.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "isstream", + "url": "https://github.com/rvagg/isstream", + "description": "Determine if an object is a Stream", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "istanbul-lib-coverage", + "url": "https://github.com/istanbuljs/istanbuljs", + "description": "Data library for istanbul coverage objects", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "istanbul-lib-hook", + "url": "https://github.com/istanbuljs/istanbuljs#readme", + "description": "Hooks for require, vm and script used in istanbul", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "istanbul-lib-instrument", + "url": "https://github.com/istanbuljs/istanbuljs", + "description": "Core istanbul API for JS code coverage", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "istanbul-lib-report", + "url": "https://github.com/istanbuljs/istanbuljs", + "description": "Base reporting library for istanbul", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "istanbul-lib-source-maps", + "url": "https://github.com/istanbuljs/istanbuljs#readme", + "description": "Source maps support for istanbul", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "istanbul-reports", + "url": "https://github.com/istanbuljs/istanbuljs", + "description": "istanbul reports", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD, MIT, ISC, Apache 2.0", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "js-npm", + "description": "Test project for js-npm", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "js-tokens", + "url": "https://github.com/lydell/js-tokens#readme", + "description": "A regex that tokenizes JavaScript.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "jsbn", + "url": "https://github.com/andyperlitch/jsbn#readme", + "description": "The jsbn library is a fast, portable implementation of large-number math in pure JavaScript, enabling public-key crypto and other applications on desktop and mobile browsers.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "jsdom", + "url": "https://github.com/jsdom/jsdom#readme", + "description": "A JavaScript implementation of many web standards", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "jsesc", + "url": "https://mths.be/jsesc", + "description": "A JavaScript library for escaping JavaScript strings while generating the shortest possible valid output.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "AFLv2.1", + "url": "" + }, + { + "name": "BSD", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + } + ], + "license": { + "name": "BSD, AFLv2.1", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + }, + "dependency": { + "name": "json-schema", + "url": "https://github.com/kriszyp/json-schema#readme", + "description": "JSON Schema validation and specifications", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "json-schema-traverse", + "url": "https://github.com/epoberezkin/json-schema-traverse#readme", + "description": "Traverse JSON Schema passing each schema object to callback", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "json-stringify-safe", + "url": "https://github.com/isaacs/json-stringify-safe", + "description": "Like JSON.stringify, but doesn't blow up on circular refs.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "jsprim", + "url": "https://github.com/joyent/node-jsprim#readme", + "description": "utilities for primitive JavaScript types", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "kind-of", + "url": "https://github.com/jonschlinkert/kind-of", + "description": "Get the native type of a value.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "kind-of", + "url": "https://github.com/jonschlinkert/kind-of", + "description": "Get the native type of a value.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "kind-of", + "url": "https://github.com/jonschlinkert/kind-of", + "description": "Get the native type of a value.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "kind-of", + "url": "https://github.com/jonschlinkert/kind-of", + "description": "Get the native type of a value.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lazy-cache", + "url": "https://github.com/jonschlinkert/lazy-cache", + "description": "Cache requires to be lazy-loaded when needed.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lcid", + "url": "https://github.com/sindresorhus/lcid#readme", + "description": "Mapping between standard locale identifiers and Windows locale identifiers (LCID)", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "WTFPL", + "url": "" + } + ], + "license": { + "name": "WTFPL" + }, + "dependency": { + "name": "left-pad", + "url": "https://github.com/stevemao/left-pad#readme", + "description": "String left pad", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "levn", + "url": "https://github.com/gkz/levn", + "description": "Light ECMAScript (JavaScript) Value Notation - human written, concise, typed, flexible", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "load-json-file", + "url": "https://github.com/sindresorhus/load-json-file#readme", + "description": "Read and parse a JSON file", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "locate-path", + "url": "https://github.com/sindresorhus/locate-path#readme", + "description": "Get the first path that exists on disk of multiple paths", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash", + "url": "https://lodash.com/", + "description": "Lodash modular utilities.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash", + "url": "https://lodash.com/", + "description": "Lodash modular utilities.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash.sortby", + "url": "https://lodash.com/", + "description": "The lodash method `_.sortBy` exported as a module.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "longest", + "url": "https://github.com/jonschlinkert/longest", + "description": "Get the longest item in an array.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "loose-envify", + "url": "https://github.com/zertosh/loose-envify", + "description": "Fast (and loose) selective `process.env` replacer using js-tokens instead of an AST", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "lru-cache", + "url": "https://github.com/isaacs/node-lru-cache#readme", + "description": "A cache object that deletes the least-recently-used items.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "map-cache", + "url": "https://github.com/jonschlinkert/map-cache", + "description": "Basic cache object for storing key-value pairs.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "map-visit", + "url": "https://github.com/jonschlinkert/map-visit", + "description": "Map `visit` over an array of objects.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "md5-hex", + "url": "https://github.com/sindresorhus/md5-hex#readme", + "description": "Create a MD5 hash with hex encoding", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "md5-o-matic", + "url": "https://github.com/trentmillar/md5-o-matic", + "description": "Fast and simple MD5 hashing utility with zero module dependencies. View MD5 Shootout results, http://jsperf.com/md5-shootout/39", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mem", + "url": "https://github.com/sindresorhus/mem#readme", + "description": "Memoize functions - An optimization used to speed up consecutive function calls by caching the result of calls with identical input", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "merge-source-map", + "url": "https://github.com/keik/merge-source-map#readme", + "description": "Merge old source map and new source map in multi-transform flow", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "micromatch", + "url": "https://github.com/micromatch/micromatch", + "description": "Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mime-db", + "url": "https://github.com/jshttp/mime-db#readme", + "description": "Media Type Database", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mime-types", + "url": "https://github.com/jshttp/mime-types#readme", + "description": "The ultimate javascript content-type utility.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mimic-fn", + "url": "https://github.com/sindresorhus/mimic-fn#readme", + "description": "Make a function mimic another one", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "minimatch", + "url": "https://github.com/isaacs/minimatch#readme", + "description": "a glob matcher in javascript", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "minimist", + "url": "https://github.com/substack/minimist", + "description": "parse argument options", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mixin-deep", + "url": "https://github.com/jonschlinkert/mixin-deep", + "description": "Deeply mix the properties of objects into the first object. Like merge-deep, but doesn't clone.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mkdirp", + "url": "https://github.com/substack/node-mkdirp#readme", + "description": "Recursively mkdir, like `mkdir -p`", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "moment", + "url": "http://momentjs.com", + "description": "Parse, validate, manipulate, and display dates", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ms", + "url": "https://github.com/zeit/ms#readme", + "description": "Tiny milisecond conversion utility", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "nanomatch", + "url": "https://github.com/micromatch/nanomatch", + "description": "Fast, minimal glob matcher for node.js. Similar to micromatch, minimatch and multimatch, but complete Bash 4.3 wildcard support only (no support for exglobs, posix brackets or braces)", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + } + ], + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "normalize-package-data", + "url": "https://github.com/npm/normalize-package-data#readme", + "description": "Normalizes data that can be found in package.json files.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "normalize.css", + "url": "https://necolas.github.io/normalize.css", + "description": "A modern alternative to CSS resets", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "npm-run-path", + "url": "https://github.com/sindresorhus/npm-run-path#readme", + "description": "Get your PATH prepended with locally installed binaries", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "number-is-nan", + "url": "https://github.com/sindresorhus/number-is-nan#readme", + "description": "ES2015 Number.isNaN() ponyfill", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "nwsapi", + "url": "http://javascript.nwbox.com/nwsapi/", + "description": "Fast CSS Selectors API Engine", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "nyc", + "url": "https://github.com/istanbuljs/nyc#readme", + "description": "the Istanbul command line interface", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "oauth-sign", + "url": "https://github.com/mikeal/oauth-sign#readme", + "description": "OAuth 1 signing. Formerly a vendor lib in mikeal/request, now a standalone module.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "object-assign", + "url": "https://github.com/sindresorhus/object-assign#readme", + "description": "ES2015 `Object.assign()` ponyfill", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "object-copy", + "url": "https://github.com/jonschlinkert/object-copy", + "description": "Copy static properties, prototype properties, and descriptors from one object to another.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "object-visit", + "url": "https://github.com/jonschlinkert/object-visit", + "description": "Call a specified method on each value in the given object.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "object.pick", + "url": "https://github.com/jonschlinkert/object.pick", + "description": "Returns a filtered copy of an object with only the specified keys, similar to `_.pick` from lodash / underscore.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "once", + "url": "https://github.com/isaacs/once#readme", + "description": "Run a function exactly one time", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT/X11", + "url": "" + } + ], + "license": { + "name": "MIT/X11" + }, + "dependency": { + "name": "optimist", + "url": "https://github.com/substack/node-optimist#readme", + "description": "Light-weight option parsing with an argv hash. No optstrings attached.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "optionator", + "url": "https://github.com/gkz/optionator", + "description": "option parsing and help generation", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "os-homedir", + "url": "https://github.com/sindresorhus/os-homedir#readme", + "description": "Node.js 4 `os.homedir()` ponyfill", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "os-locale", + "url": "https://github.com/sindresorhus/os-locale#readme", + "description": "Get the system locale", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "p-finally", + "url": "https://github.com/sindresorhus/p-finally#readme", + "description": "`Promise#finally()` ponyfill - Invoked when the promise is settled regardless of outcome", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "p-limit", + "url": "https://github.com/sindresorhus/p-limit#readme", + "description": "Run multiple promise-returning & async functions with limited concurrency", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "p-locate", + "url": "https://github.com/sindresorhus/p-locate#readme", + "description": "Get the first fulfilled promise that satisfies the provided testing function", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "p-try", + "url": "https://github.com/sindresorhus/p-try#readme", + "description": "`Promise#try()` ponyfill - Starts a promise chain", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "parse-json", + "url": "https://github.com/sindresorhus/parse-json#readme", + "description": "Parse JSON with more helpful errors", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "parse5", + "url": "https://github.com/inikulin/parse5", + "description": "HTML parsing/serialization toolset for Node.js. WHATWG HTML Living Standard (aka HTML5)-compliant.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pascalcase", + "url": "https://github.com/jonschlinkert/pascalcase", + "description": "Convert a string to pascal-case.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "path-exists", + "url": "https://github.com/sindresorhus/path-exists#readme", + "description": "Check if a path exists", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "path-exists", + "url": "https://github.com/sindresorhus/path-exists#readme", + "description": "Check if a path exists", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "path-is-absolute", + "url": "https://github.com/sindresorhus/path-is-absolute#readme", + "description": "Node.js 0.12 path.isAbsolute() ponyfill", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "path-key", + "url": "https://github.com/sindresorhus/path-key#readme", + "description": "Get the PATH environment variable key cross-platform", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "path-parse", + "url": "https://github.com/jbgutierrez/path-parse#readme", + "description": "Node.js path.parse() ponyfill", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "path-type", + "url": "https://github.com/sindresorhus/path-type#readme", + "description": "Check if a path is a file, directory, or symlink", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "performance-now", + "url": "https://github.com/braveg1rl/performance-now", + "description": "Implements performance.now (based on process.hrtime).", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pify", + "url": "https://github.com/sindresorhus/pify#readme", + "description": "Promisify a callback-style function", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pinkie", + "url": "https://github.com/floatdrop/pinkie#readme", + "description": "Itty bitty little widdle twinkie pinkie ES2015 Promise implementation", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pinkie-promise", + "url": "https://github.com/floatdrop/pinkie-promise#readme", + "description": "ES2015 Promise ponyfill", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pkg-dir", + "url": "https://github.com/sindresorhus/pkg-dir#readme", + "description": "Find the root directory of a npm package", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pn", + "url": "https://github.com/cscott/node-pn#readme", + "description": "Promisify the node standard library.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "posix-character-classes", + "url": "https://github.com/jonschlinkert/posix-character-classes", + "description": "POSIX character classes for creating regular expressions.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "prelude-ls", + "url": "http://preludels.com", + "description": "prelude.ls is a functionally oriented utility library. It is powerful and flexible. Almost all of its functions are curried. It is written in, and is the recommended base library for, LiveScript.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "pseudomap", + "url": "https://github.com/isaacs/pseudomap#readme", + "description": "A thing that is a lot like ES6 `Map`, but without iterators, for use in environments where `for..of` syntax and `Map` are not available.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "psl", + "url": "https://github.com/lupomontero/psl#readme", + "description": "Domain name parser based on the Public Suffix List", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "punycode", + "url": "https://mths.be/punycode", + "description": "A robust Punycode converter that fully complies to RFC 3492 and RFC 5891, and works on nearly all JavaScript platforms.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "punycode", + "url": "https://mths.be/punycode", + "description": "A robust Punycode converter that fully complies to RFC 3492 and RFC 5891, and works on nearly all JavaScript platforms.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "qs", + "url": "https://github.com/ljharb/qs", + "description": "A querystring parser that supports nesting and arrays, with a depth limit", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "read-pkg", + "url": "https://github.com/sindresorhus/read-pkg#readme", + "description": "Read a package.json file", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "read-pkg-up", + "url": "https://github.com/sindresorhus/read-pkg-up#readme", + "description": "Read the closest package.json file", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "regenerator-runtime", + "description": "Runtime for Regenerator-compiled generator and async functions.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "regex-not", + "url": "https://github.com/jonschlinkert/regex-not", + "description": "Create a javascript regular expression for matching everything except for the given string.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "repeat-element", + "url": "https://github.com/jonschlinkert/repeat-element", + "description": "Create an array by repeating the given value n times.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "repeat-string", + "url": "https://github.com/jonschlinkert/repeat-string", + "description": "Repeat the given string n times. Fastest implementation for repeating a string.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "repeating", + "url": "https://github.com/sindresorhus/repeating#readme", + "description": "Repeat a string - fast", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "request", + "url": "https://github.com/request/request#readme", + "description": "Simplified HTTP request client.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "request-promise-core", + "url": "https://github.com/request/promise-core#readme", + "description": "Core Promise support implementation for the simplified HTTP request client 'request'.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "request-promise-native", + "url": "https://github.com/request/request-promise-native#readme", + "description": "The simplified HTTP request client 'request' with Promise support. Powered by native ES6 promises.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "require-directory", + "url": "https://github.com/troygoode/node-require-directory/", + "description": "Recursively iterates over specified directory, require()'ing each file, and returning a nested hash structure containing those modules.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "require-main-filename", + "url": "https://github.com/yargs/require-main-filename#readme", + "description": "shim for require.main.filename() that works in as many environments as possible", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "resolve-from", + "url": "https://github.com/sindresorhus/resolve-from#readme", + "description": "Resolve the path of a module like require.resolve() but from a given path", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "resolve-url", + "url": "https://github.com/lydell/resolve-url#readme", + "description": "Like Node.js’ `path.resolve`/`url.resolve` for the browser.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ret", + "url": "https://github.com/fent/ret.js#readme", + "description": "Tokenizes a string that represents a regular expression.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "right-align", + "url": "https://github.com/jonschlinkert/right-align", + "description": "Right-align the text in a string.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "rimraf", + "url": "https://github.com/isaacs/rimraf#readme", + "description": "A deep deletion module for node (like `rm -rf`)", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "safe-buffer", + "url": "https://github.com/feross/safe-buffer", + "description": "Safer Node.js Buffer API", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "safe-regex", + "url": "https://github.com/substack/safe-regex", + "description": "detect possibly catastrophic, exponential-time regular expressions", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "safer-buffer", + "url": "https://github.com/ChALkeR/safer-buffer#readme", + "description": "Modern Buffer API polyfill without footguns", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "sax", + "url": "https://github.com/isaacs/sax-js#readme", + "description": "An evented streaming XML parser in JavaScript", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "semver", + "url": "https://github.com/npm/node-semver#readme", + "description": "The semantic version parser used by npm.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "set-blocking", + "url": "https://github.com/yargs/set-blocking#readme", + "description": "set blocking stdio and stderr ensuring that terminal output does not truncate", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "set-value", + "url": "https://github.com/jonschlinkert/set-value", + "description": "Create nested values and any intermediaries using dot notation (`'a.b.c'`) paths.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "set-value", + "url": "https://github.com/jonschlinkert/set-value", + "description": "Create nested values and any intermediaries using dot notation (`'a.b.c'`) paths.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "shebang-command", + "url": "https://github.com/kevva/shebang-command#readme", + "description": "Get the command from a shebang", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "shebang-regex", + "url": "https://github.com/sindresorhus/shebang-regex#readme", + "description": "Regular expression for matching a shebang", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "signal-exit", + "url": "https://github.com/tapjs/signal-exit", + "description": "when you want to fire an event no matter how a process exits.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "slide", + "url": "https://github.com/isaacs/slide-flow-control#readme", + "description": "A flow control lib small enough to fit on in a slide presentation. Derived live at Oak.JS", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "snapdragon", + "url": "https://github.com/jonschlinkert/snapdragon", + "description": "Fast, pluggable and easy-to-use parser-renderer factory.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "snapdragon-node", + "url": "https://github.com/jonschlinkert/snapdragon-node", + "description": "Snapdragon utility for creating a new AST node in custom code, such as plugins.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "snapdragon-util", + "url": "https://github.com/jonschlinkert/snapdragon-util", + "description": "Utilities for the snapdragon parser/compiler.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "source-map", + "url": "https://github.com/mozilla/source-map", + "description": "Generates and consumes source maps", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "source-map", + "url": "https://github.com/mozilla/source-map", + "description": "Generates and consumes source maps", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "source-map", + "url": "https://github.com/mozilla/source-map", + "description": "Generates and consumes source maps", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "source-map-resolve", + "url": "https://github.com/lydell/source-map-resolve#readme", + "description": "Resolve the source map and/or sources for a generated file.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "source-map-url", + "url": "https://github.com/lydell/source-map-url#readme", + "description": "Tools for working with sourceMappingURL comments.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "spawn-wrap", + "url": "https://github.com/isaacs/spawn-wrap#readme", + "description": "Wrap all spawned Node.js child processes by adding environs and arguments ahead of the main JavaScript file argument.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "spdx-correct", + "url": "https://github.com/jslicense/spdx-correct.js#readme", + "description": "correct invalid SPDX expressions", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "CC-BY-3.0", + "url": "" + } + ], + "license": { + "name": "CC-BY-3.0" + }, + "dependency": { + "name": "spdx-exceptions", + "url": "https://github.com/kemitchell/spdx-exceptions.json#readme", + "description": "list of SPDX standard license exceptions", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "spdx-expression-parse", + "url": "https://github.com/jslicense/spdx-expression-parse.js#readme", + "description": "parse SPDX license expressions", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "CC0-1.0", + "url": "" + } + ], + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "spdx-license-ids", + "url": "https://github.com/shinnn/spdx-license-ids#readme", + "description": "A list of SPDX license identifiers", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "split-string", + "url": "https://github.com/jonschlinkert/split-string", + "description": "Split a string on a character except when the character is escaped.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "sshpk", + "url": "https://github.com/arekinath/node-sshpk#readme", + "description": "A library for finding and using SSH public keys", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "static-extend", + "url": "https://github.com/jonschlinkert/static-extend", + "description": "Adds a static `extend` method to a class, to simplify inheritance. Extends the static properties, prototype properties, and descriptors from a `Parent` constructor onto `Child` constructors.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "stealthy-require", + "url": "https://github.com/analog-nico/stealthy-require#readme", + "description": "The closest you can get to require something with bypassing the require cache", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "string-width", + "url": "https://github.com/sindresorhus/string-width#readme", + "description": "Get the visual width of a string - the number of columns required to display it", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "string-width", + "url": "https://github.com/sindresorhus/string-width#readme", + "description": "Get the visual width of a string - the number of columns required to display it", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "strip-ansi", + "url": "https://github.com/chalk/strip-ansi#readme", + "description": "Strip ANSI escape codes", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "strip-ansi", + "url": "https://github.com/chalk/strip-ansi#readme", + "description": "Strip ANSI escape codes", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "strip-bom", + "url": "https://github.com/sindresorhus/strip-bom#readme", + "description": "Strip UTF-8 byte order mark (BOM) from a string/buffer", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "strip-eof", + "url": "https://github.com/sindresorhus/strip-eof#readme", + "description": "Strip the End-Of-File (EOF) character from a string/buffer", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "supports-color", + "url": "https://github.com/chalk/supports-color#readme", + "description": "Detect whether a terminal supports color", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "supports-color", + "url": "https://github.com/chalk/supports-color#readme", + "description": "Detect whether a terminal supports color", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "symbol-tree", + "url": "https://github.com/jsdom/js-symbol-tree#symbol-tree", + "description": "Turn any collection of objects into its own efficient tree or linked list using Symbol", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "test-exclude", + "url": "https://github.com/istanbuljs/istanbuljs#readme", + "description": "test for inclusion or exclusion of paths using pkg-conf and globs", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "to-fast-properties", + "url": "https://github.com/sindresorhus/to-fast-properties#readme", + "description": "Force V8 to use fast properties for an object", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "to-object-path", + "url": "https://github.com/jonschlinkert/to-object-path", + "description": "Create an object path from a list or array of strings.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "to-regex", + "url": "https://github.com/jonschlinkert/to-regex", + "description": "Generate a regex from a string or array of strings.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "to-regex-range", + "url": "https://github.com/micromatch/to-regex-range", + "description": "Pass two numbers, get a regex-compatible source string for matching ranges. Validated against more than 2.78 million test assertions.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "tough-cookie", + "url": "https://github.com/salesforce/tough-cookie", + "description": "RFC6265 Cookies and Cookie Jar for node.js", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "tr46", + "url": "https://github.com/Sebmaster/tr46.js#readme", + "description": "An implementation of the Unicode TR46 spec", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "trim-right", + "url": "https://github.com/sindresorhus/trim-right#readme", + "description": "Similar to String#trim() but removes only whitespace on the right", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "tunnel-agent", + "url": "https://github.com/mikeal/tunnel-agent#readme", + "description": "HTTP proxy tunneling agent. Formerly part of mikeal/request, now a standalone module.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Unlicense", + "url": "" + } + ], + "license": { + "name": "Unlicense" + }, + "dependency": { + "name": "tweetnacl", + "url": "https://tweetnacl.js.org", + "description": "Port of TweetNaCl cryptographic library to JavaScript", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "type-check", + "url": "https://github.com/gkz/type-check", + "description": "type-check allows you to check the types of JavaScript values at runtime with a Haskell like type syntax.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + } + ], + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "uglify-js", + "url": "http://lisperator.net/uglifyjs", + "description": "JavaScript parser, mangler/compressor and beautifier toolkit", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "uglify-to-browserify", + "url": "https://github.com/ForbesLindesay/uglify-to-browserify#readme", + "description": "A transform to make UglifyJS work in browserify.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "union-value", + "url": "https://github.com/jonschlinkert/union-value", + "description": "Set an array of unique values as the property of an object. Supports setting deeply nested properties using using object-paths/dot notation.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "unset-value", + "url": "https://github.com/jonschlinkert/unset-value", + "description": "Delete nested properties from an object using dot notation.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + } + ], + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "uri-js", + "url": "https://github.com/garycourt/uri-js", + "description": "An RFC 3986/3987 compliant, scheme extendable URI/IRI parsing/validating/resolving library for JavaScript.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "urix", + "url": "https://github.com/lydell/urix#readme", + "description": "Makes Windows-style paths more unix and URI friendly.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "use", + "url": "https://github.com/jonschlinkert/use", + "description": "Easily add plugin support to your node.js application.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "uuid", + "url": "https://github.com/kelektiv/node-uuid#readme", + "description": "RFC4122 (v1, v4, and v5) UUIDs", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "validate-npm-package-license", + "url": "https://github.com/kemitchell/validate-npm-package-license.js#readme", + "description": "Give me a string and I'll tell you if it's a valid npm package license string", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "verror", + "url": "https://github.com/davepacheco/node-verror#readme", + "description": "richer JavaScript errors", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "w3c-hr-time", + "url": "https://github.com/jsdom/w3c-hr-time#readme", + "description": "An implementation of the W3C High Resolution Time Level 2 specification.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + } + ], + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "webidl-conversions", + "url": "https://github.com/jsdom/webidl-conversions#readme", + "description": "Implements the WebIDL algorithms for converting to and from JavaScript values", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "whatwg-encoding", + "url": "https://github.com/jsdom/whatwg-encoding#readme", + "description": "Decode strings according to the WHATWG Encoding Standard", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "whatwg-mimetype", + "url": "https://github.com/jsdom/whatwg-mimetype#readme", + "description": "Parses, serializes, and manipulates MIME types, according to the WHATWG MIME Sniffing Standard", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "whatwg-url", + "url": "https://github.com/jsdom/whatwg-url#readme", + "description": "An implementation of the WHATWG URL Standard's URL API and parsing machinery", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "whatwg-url", + "url": "https://github.com/jsdom/whatwg-url#readme", + "description": "An implementation of the WHATWG URL Standard's URL API and parsing machinery", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "which", + "url": "https://github.com/isaacs/node-which#readme", + "description": "Like which(1) unix command. Find the first instance of an executable in the PATH.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "which-module", + "url": "https://github.com/nexdrew/which-module#readme", + "description": "Find the module object for something that was require()d", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "window-size", + "url": "https://github.com/jonschlinkert/window-size", + "description": "Reliable way to to get the height and width of the terminal/console in a node.js environment.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "word-wrap", + "url": "https://github.com/jonschlinkert/word-wrap", + "description": "Wrap words to a specified length.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT/X11", + "url": "" + } + ], + "license": { + "name": "MIT/X11" + }, + "dependency": { + "name": "wordwrap", + "url": "https://github.com/substack/node-wordwrap#readme", + "description": "Wrap those words. Show them at what columns to start and stop.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "wordwrap", + "url": "https://github.com/substack/node-wordwrap#readme", + "description": "Wrap those words. Show them at what columns to start and stop.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "wrap-ansi", + "url": "https://github.com/chalk/wrap-ansi#readme", + "description": "Wordwrap a string with ANSI escape codes", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "wrappy", + "url": "https://github.com/npm/wrappy", + "description": "Callback wrapping utility", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "write-file-atomic", + "url": "https://github.com/iarna/write-file-atomic", + "description": "Write files in an atomic fashion w/configurable ownership", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ws", + "url": "https://github.com/websockets/ws", + "description": "Simple to use, blazing fast and thoroughly tested websocket client and server for Node.js", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "xml-name-validator", + "url": "https://github.com/jsdom/xml-name-validator#readme", + "description": "Validates whether a string matches the production for an XML name or qualified name", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "y18n", + "url": "https://github.com/yargs/y18n", + "description": "the bare-bones internationalization library used by yargs", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "yallist", + "url": "https://github.com/isaacs/yallist#readme", + "description": "Yet Another Linked List", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "yargs", + "url": "http://yargs.js.org/", + "description": "yargs the modern, pirate-themed, successor to optimist.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "yargs", + "url": "https://github.com/bcoe/yargs#readme", + "description": "Light-weight option parsing with an argv hash. No optstrings attached.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "yargs-parser", + "url": "https://github.com/yargs/yargs-parser#readme", + "description": "the mighty option parser used by yargs", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "yargs-parser", + "url": "https://github.com/yargs/yargs-parser#readme", + "description": "the mighty option parser used by yargs", + "pathes": [ + "." + ] + } + } + ] +} diff --git a/spec/fixtures/expected/js/npm/v2.0.json b/spec/fixtures/expected/js/npm/v2.0.json new file mode 100644 index 0000000..76b97fb --- /dev/null +++ b/spec/fixtures/expected/js/npm/v2.0.json @@ -0,0 +1,3961 @@ +{ + "version": "2.0", + "licenses": [ + { + "id": "MIT", + "name": "MIT License", + "url": "https://opensource.org/licenses/MIT", + "count": 274 + }, + { + "id": "ISC", + "name": "ISC License", + "url": "https://opensource.org/licenses/ISC", + "count": 39 + }, + { + "id": "BSD-3-Clause", + "name": "BSD 3-Clause \"New\" or \"Revised\" License", + "url": "https://opensource.org/licenses/BSD-3-Clause", + "count": 15 + }, + { + "id": "Apache-2.0", + "name": "Apache License 2.0", + "url": "https://opensource.org/licenses/Apache-2.0", + "count": 10 + }, + { + "id": "BSD-2-Clause", + "name": "BSD 2-Clause \"Simplified\" License", + "url": "https://opensource.org/licenses/BSD-2-Clause", + "count": 9 + }, + { + "id": "BSD-4-Clause", + "name": "BSD 4-Clause \"Original\" or \"Old\" License", + "url": "http://directory.fsf.org/wiki/License:BSD_4Clause", + "count": 2 + }, + { + "id": "(mit or apache-2.0)", + "name": "(MIT OR Apache-2.0)", + "url": "", + "count": 1 + }, + { + "id": "AFL-2.1", + "name": "Academic Free License v2.1", + "url": "http://opensource.linux-mirror.org/licenses/afl-2.1.txt", + "count": 1 + }, + { + "id": "bsd-3-clause or mit", + "name": "BSD-3-Clause OR MIT", + "url": "", + "count": 1 + }, + { + "id": "CC-BY-3.0", + "name": "Creative Commons Attribution 3.0 Unported", + "url": "https://creativecommons.org/licenses/by/3.0/legalcode", + "count": 1 + }, + { + "id": "CC0-1.0", + "name": "Creative Commons Zero v1.0 Universal", + "url": "https://creativecommons.org/publicdomain/zero/1.0/legalcode", + "count": 1 + }, + { + "id": "WTFPL", + "name": "Do What The F*ck You Want To Public License", + "url": "http://sam.zoy.org/wtfpl/COPYING", + "count": 1 + }, + { + "id": "Unlicense", + "name": "The Unlicense", + "url": "https://unlicense.org/", + "count": 1 + } + ], + "dependencies": [ + { + "name": "abab", + "url": "https://github.com/jsdom/abab#readme", + "description": "WHATWG spec-compliant implementations of window.atob and window.btoa.", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "acorn", + "url": "https://github.com/acornjs/acorn", + "description": "ECMAScript parser", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "acorn", + "url": "https://github.com/acornjs/acorn", + "description": "ECMAScript parser", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "acorn-globals", + "url": "https://github.com/ForbesLindesay/acorn-globals#readme", + "description": "Detect global variables in JavaScript using acorn", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "acorn-walk", + "url": "https://github.com/acornjs/acorn", + "description": "ECMAScript (ESTree) AST walker", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "ajv", + "url": "https://github.com/epoberezkin/ajv", + "description": "Another JSON Schema Validator", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "align-text", + "url": "https://github.com/jonschlinkert/align-text", + "description": "Align the text in a string.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "amdefine", + "url": "http://github.com/jrburke/amdefine", + "description": "Provide AMD's define() API for declaring modules in the AMD format", + "paths": [ + "." + ], + "licenses": [ + "bsd-3-clause or mit" + ] + }, + { + "name": "ansi-regex", + "url": "https://github.com/chalk/ansi-regex#readme", + "description": "Regular expression for matching ANSI escape codes", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "ansi-regex", + "url": "https://github.com/chalk/ansi-regex#readme", + "description": "Regular expression for matching ANSI escape codes", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "ansi-styles", + "url": "https://github.com/chalk/ansi-styles#readme", + "description": "ANSI escape codes for styling strings in the terminal", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "append-transform", + "url": "https://github.com/jamestalmage/append-transform#readme", + "description": "Install a transform to `require.extensions` that always runs last, even if additional extensions are added later.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "archy", + "url": "https://github.com/substack/node-archy#readme", + "description": "render nested hierarchies `npm ls` style with unicode pipes", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "arr-diff", + "url": "https://github.com/jonschlinkert/arr-diff", + "description": "Returns an array with only the unique values from the first array, by excluding all values from additional arrays using strict equality for comparisons.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "arr-flatten", + "url": "https://github.com/jonschlinkert/arr-flatten", + "description": "Recursively flatten an array or arrays.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "arr-union", + "url": "https://github.com/jonschlinkert/arr-union", + "description": "Combines a list of arrays, returning a single array with unique values, using strict equality for comparisons.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "array-equal", + "url": "https://github.com/component/array-equal#readme", + "description": "check if two arrays are equal", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "array-unique", + "url": "https://github.com/jonschlinkert/array-unique", + "description": "Remove duplicate values from an array. Fastest ES5 implementation.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "arrify", + "url": "https://github.com/sindresorhus/arrify#readme", + "description": "Convert a value to an array", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "asn1", + "url": "https://github.com/joyent/node-asn1#readme", + "description": "Contains parsers and serializers for ASN.1 (currently BER only)", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "assert-plus", + "url": "https://github.com/mcavage/node-assert-plus#readme", + "description": "Extra assertions on top of node's assert module", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "assign-symbols", + "url": "https://github.com/jonschlinkert/assign-symbols", + "description": "Assign the enumerable es6 Symbol properties from an object (or objects) to the first object passed on the arguments. Can be used as a supplement to other extend, assign or merge methods as a polyfill for the Symbols part of the es6 Object.assign method.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "async", + "url": "https://github.com/caolan/async#readme", + "description": "Higher-order functions and common patterns for asynchronous code", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "async-limiter", + "url": "https://github.com/strml/async-limiter#readme", + "description": "asynchronous function queue with adjustable concurrency", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "asynckit", + "url": "https://github.com/alexindigo/asynckit#readme", + "description": "Minimal async jobs utility library, with streams support", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "atob", + "url": "https://git.coolaj86.com/coolaj86/atob.js.git", + "description": "atob for Node.JS and Linux / Mac / Windows CLI (it's a one-liner)", + "paths": [ + "." + ], + "licenses": [ + "(mit or apache-2.0)" + ] + }, + { + "name": "aws-sign2", + "url": "https://github.com/mikeal/aws-sign#readme", + "description": "AWS signing. Originally pulled from LearnBoost/knox, maintained as vendor in request, now a standalone module.", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "aws4", + "url": "https://github.com/mhart/aws4#readme", + "description": "Signs and prepares requests using AWS Signature Version 4", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "babel-code-frame", + "url": "https://babeljs.io/", + "description": "Generate errors that contain a code frame that point to source locations.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "babel-generator", + "url": "https://babeljs.io/", + "description": "Turns an AST into code.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "babel-messages", + "url": "https://babeljs.io/", + "description": "Collection of debug messages used by Babel.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "babel-runtime", + "url": "", + "description": "babel selfContained runtime", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "babel-template", + "url": "https://babeljs.io/", + "description": "Generate an AST from a string template.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "babel-traverse", + "url": "https://babeljs.io/", + "description": "The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "babel-types", + "url": "https://babeljs.io/", + "description": "Babel Types is a Lodash-esque utility library for AST nodes", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "babylon", + "url": "https://babeljs.io/", + "description": "A JavaScript parser", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "balanced-match", + "url": "https://github.com/juliangruber/balanced-match", + "description": "Match balanced character pairs, like \"{\" and \"}\"", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "base", + "url": "https://github.com/node-base/base", + "description": "base is the foundation for creating modular, unit testable and highly pluggable node.js applications, starting with a handful of common methods, like `set`, `get`, `del` and `use`.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "bcrypt-pbkdf", + "url": "https://github.com/joyent/node-bcrypt-pbkdf#readme", + "description": "Port of the OpenBSD bcrypt_pbkdf function to pure JS", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "brace-expansion", + "url": "https://github.com/juliangruber/brace-expansion", + "description": "Brace expansion as known from sh/bash", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "braces", + "url": "https://github.com/micromatch/braces", + "description": "Bash-like brace expansion, implemented in JavaScript. Safer than other brace expansion libs, with complete support for the Bash 4.3 braces specification, without sacrificing speed.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "browser-process-hrtime", + "url": "https://github.com/kumavis/browser-process-hrtime#readme", + "description": "Shim for process.hrtime in the browser", + "paths": [ + "." + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "name": "builtin-modules", + "url": "https://github.com/sindresorhus/builtin-modules#readme", + "description": "List of the Node.js builtin modules", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "cache-base", + "url": "https://github.com/jonschlinkert/cache-base", + "description": "Basic object cache with `get`, `set`, `del`, and `has` methods for node.js/javascript projects.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "caching-transform", + "url": "https://github.com/jamestalmage/caching-transform#readme", + "description": "Wraps a transform and provides caching", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "camelcase", + "url": "https://github.com/sindresorhus/camelcase#readme", + "description": "Convert a dash/dot/underscore/space separated string to camelCase: foo-bar → fooBar", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "camelcase", + "url": "https://github.com/sindresorhus/camelcase#readme", + "description": "Convert a dash/dot/underscore/space separated string to camelCase: foo-bar → fooBar", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "caseless", + "url": "https://github.com/mikeal/caseless#readme", + "description": "Caseless object set/get/has, very useful when working with HTTP headers.", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "center-align", + "url": "https://github.com/jonschlinkert/center-align", + "description": "Center-align the text in a string.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "chalk", + "url": "https://github.com/chalk/chalk#readme", + "description": "Terminal string styling done right. Much color.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "class-utils", + "url": "https://github.com/jonschlinkert/class-utils", + "description": "Utils for working with JavaScript classes and prototype methods.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "cliui", + "url": "https://github.com/bcoe/cliui#readme", + "description": "easily create complex multi-column command-line-interfaces", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "cliui", + "url": "https://github.com/yargs/cliui#readme", + "description": "easily create complex multi-column command-line-interfaces", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "code-point-at", + "url": "https://github.com/sindresorhus/code-point-at#readme", + "description": "ES2015 `String#codePointAt()` ponyfill", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "collection-visit", + "url": "https://github.com/jonschlinkert/collection-visit", + "description": "Visit a method over the items in an object, or map visit over the objects in an array.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "combined-stream", + "url": "https://github.com/felixge/node-combined-stream", + "description": "A stream that emits multiple other streams one after another.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "commondir", + "url": "https://github.com/substack/node-commondir#readme", + "description": "compute the closest common parent for file paths", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "component-emitter", + "url": "https://github.com/component/emitter#readme", + "description": "Event emitter", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "concat-map", + "url": "https://github.com/substack/node-concat-map#readme", + "description": "concatenative mapdashery", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "convert-source-map", + "url": "https://github.com/thlorenz/convert-source-map", + "description": "Converts a source-map from/to different formats and allows adding/changing properties.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "copy-descriptor", + "url": "https://github.com/jonschlinkert/copy-descriptor", + "description": "Copy a descriptor from object A to object B", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "core-js", + "url": "https://github.com/zloirock/core-js#readme", + "description": "Standard library", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "core-util-is", + "url": "https://github.com/isaacs/core-util-is#readme", + "description": "The `util.is*` functions introduced in Node v0.12.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "cross-spawn", + "url": "https://github.com/IndigoUnited/node-cross-spawn#readme", + "description": "Cross platform child_process#spawn and child_process#spawnSync", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "cross-spawn", + "url": "https://github.com/IndigoUnited/node-cross-spawn#readme", + "description": "Cross platform child_process#spawn and child_process#spawnSync", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "cssom", + "url": "https://github.com/NV/CSSOM#readme", + "description": "CSS Object Model implementation and CSS parser", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "cssstyle", + "url": "https://github.com/jsakas/CSSStyleDeclaration", + "description": "CSSStyleDeclaration Object Model implementation", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "dashdash", + "url": "https://github.com/trentm/node-dashdash#readme", + "description": "A light, featureful and explicit option parsing library.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "data-urls", + "url": "https://github.com/jsdom/data-urls#readme", + "description": "Parses data: URLs", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "debug", + "url": "https://github.com/visionmedia/debug#readme", + "description": "small debugging utility", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "debug", + "url": "https://github.com/visionmedia/debug#readme", + "description": "small debugging utility", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "debug-log", + "url": "https://github.com/sindresorhus/debug-log#readme", + "description": "Node.js 0.12 util.debuglog() ponyfill", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "decamelize", + "url": "https://github.com/sindresorhus/decamelize#readme", + "description": "Convert a camelized string into a lowercased one with a custom separator: unicornRainbow → unicorn_rainbow", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "decode-uri-component", + "url": "https://github.com/SamVerschueren/decode-uri-component#readme", + "description": "A better decodeURIComponent", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "deep-is", + "url": "https://github.com/thlorenz/deep-is#readme", + "description": "node's assert.deepEqual algorithm except for NaN being equal to NaN", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "default-require-extensions", + "url": "https://github.com/jamestalmage/default-require-extensions#readme", + "description": "Node's default require extensions as a separate module", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "define-property", + "url": "https://github.com/jonschlinkert/define-property", + "description": "Define a non-enumerable property on an object.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "define-property", + "url": "https://github.com/jonschlinkert/define-property", + "description": "Define a non-enumerable property on an object.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "define-property", + "url": "https://github.com/jonschlinkert/define-property", + "description": "Define a non-enumerable property on an object. Uses Reflect.defineProperty when available, otherwise Object.defineProperty.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "delayed-stream", + "url": "https://github.com/felixge/node-delayed-stream", + "description": "Buffers events from a stream until you are ready to handle them.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "detect-indent", + "url": "https://github.com/sindresorhus/detect-indent#readme", + "description": "Detect the indentation of code", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "domexception", + "url": "https://github.com/jsdom/domexception#readme", + "description": "An implementation of the DOMException class from browsers", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "ecc-jsbn", + "url": "https://github.com/quartzjer/ecc-jsbn", + "description": "ECC JS code based on JSBN", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "error-ex", + "url": "https://github.com/qix-/node-error-ex#readme", + "description": "Easy error subclassing and stack customization", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "escape-string-regexp", + "url": "https://github.com/sindresorhus/escape-string-regexp#readme", + "description": "Escape RegExp special characters", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "escodegen", + "url": "http://github.com/estools/escodegen", + "description": "ECMAScript code generator", + "paths": [ + "." + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "name": "esprima", + "url": "http://esprima.org", + "description": "ECMAScript parsing infrastructure for multipurpose analysis", + "paths": [ + "." + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "name": "estraverse", + "url": "https://github.com/estools/estraverse", + "description": "ECMAScript JS AST traversal functions", + "paths": [ + "." + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "name": "esutils", + "url": "https://github.com/estools/esutils", + "description": "utility box for ECMAScript language tools", + "paths": [ + "." + ], + "licenses": [ + "BSD-4-Clause" + ] + }, + { + "name": "esutils", + "url": "https://github.com/estools/esutils", + "description": "utility box for ECMAScript language tools", + "paths": [ + "." + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "name": "execa", + "url": "https://github.com/sindresorhus/execa#readme", + "description": "A better `child_process`", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "expand-brackets", + "url": "https://github.com/jonschlinkert/expand-brackets", + "description": "Expand POSIX bracket expressions (character classes) in glob patterns.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "extend", + "url": "https://github.com/justmoon/node-extend#readme", + "description": "Port of jQuery.extend for node.js and the browser", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "extend-shallow", + "url": "https://github.com/jonschlinkert/extend-shallow", + "description": "Extend an object with the properties of additional objects. node.js/javascript util.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "extend-shallow", + "url": "https://github.com/jonschlinkert/extend-shallow", + "description": "Extend an object with the properties of additional objects. node.js/javascript util.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "extglob", + "url": "https://github.com/micromatch/extglob", + "description": "Extended glob support for JavaScript. Adds (almost) the expressive power of regular expressions to glob patterns.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "extsprintf", + "url": "https://github.com/davepacheco/node-extsprintf#readme", + "description": "extended POSIX-style sprintf", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "fast-deep-equal", + "url": "https://github.com/epoberezkin/fast-deep-equal#readme", + "description": "Fast deep equal", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "fast-json-stable-stringify", + "url": "https://github.com/epoberezkin/fast-json-stable-stringify", + "description": "deterministic `JSON.stringify()` - a faster version of substack's json-stable-strigify without jsonify", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "fast-levenshtein", + "url": "https://github.com/hiddentao/fast-levenshtein#readme", + "description": "Efficient implementation of Levenshtein algorithm with locale-specific collator support.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "fill-range", + "url": "https://github.com/jonschlinkert/fill-range", + "description": "Fill in a range of numbers or letters, optionally passing an increment or `step` to use, or create a regex-compatible range with `options.toRegex`", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "find-cache-dir", + "url": "https://github.com/jamestalmage/find-cache-dir#readme", + "description": "My well-made module", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "find-up", + "url": "https://github.com/sindresorhus/find-up#readme", + "description": "Find a file by walking up parent directories", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "find-up", + "url": "https://github.com/sindresorhus/find-up#readme", + "description": "Find a file by walking up parent directories", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "for-in", + "url": "https://github.com/jonschlinkert/for-in", + "description": "Iterate over the own and inherited enumerable properties of an object, and return an object with properties that evaluate to true from the callback. Exit early by returning `false`. JavaScript/Node.js", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "foreground-child", + "url": "https://github.com/tapjs/foreground-child#readme", + "description": "Run a child as if it's the foreground process. Give it stdio. Exit when it exits.", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "forever-agent", + "url": "https://github.com/mikeal/forever-agent#readme", + "description": "HTTP Agent that keeps socket connections alive between keep-alive requests. Formerly part of mikeal/request, now a standalone module.", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "form-data", + "url": "https://github.com/form-data/form-data#readme", + "description": "A library to create readable \"multipart/form-data\" streams. Can be used to submit forms and file uploads to other web applications.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "fragment-cache", + "url": "https://github.com/jonschlinkert/fragment-cache", + "description": "A cache for managing namespaced sub-caches", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "fs.realpath", + "url": "https://github.com/isaacs/fs.realpath#readme", + "description": "Use node's fs.realpath, but fall back to the JS implementation if the native one fails", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "get-caller-file", + "url": "https://github.com/stefanpenner/get-caller-file#readme", + "description": "[![Build Status](https://travis-ci.org/ember-cli/ember-cli.svg?branch=master)](https://travis-ci.org/ember-cli/ember-cli) [![Build status](https://ci.appveyor.com/api/projects/status/ol2q94g1932cy14a/branch/master?svg=true)](https://ci.appveyor.com/project/embercli/get-caller-file/branch/master)", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "get-stream", + "url": "https://github.com/sindresorhus/get-stream#readme", + "description": "Get a stream as a string, buffer, or array", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "get-value", + "url": "https://github.com/jonschlinkert/get-value", + "description": "Use property paths (`a.b.c`) to get a nested value from an object.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "getpass", + "url": "https://github.com/arekinath/node-getpass#readme", + "description": "getpass for node.js", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "glob", + "url": "https://github.com/isaacs/node-glob#readme", + "description": "a little globber", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "globals", + "url": "https://github.com/sindresorhus/globals#readme", + "description": "Global identifiers from different JavaScript environments", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "graceful-fs", + "url": "https://github.com/isaacs/node-graceful-fs#readme", + "description": "A drop-in replacement for fs, making various improvements.", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "handlebars", + "url": "http://www.handlebarsjs.com/", + "description": "Handlebars provides the power necessary to let you build semantic templates effectively with no frustration", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "har-schema", + "url": "https://github.com/ahmadnassri/har-schema", + "description": "JSON Schema for HTTP Archive (HAR)", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "har-validator", + "url": "https://github.com/ahmadnassri/node-har-validator", + "description": "Extremely fast HTTP Archive (HAR) validator using JSON Schema", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "has-ansi", + "url": "https://github.com/sindresorhus/has-ansi#readme", + "description": "Check if a string has ANSI escape codes", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "has-flag", + "url": "https://github.com/sindresorhus/has-flag#readme", + "description": "Check if argv has a specific flag", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "has-value", + "url": "https://github.com/jonschlinkert/has-value", + "description": "Returns true if a value exists, false if empty. Works with deeply nested values using object paths.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "has-value", + "url": "https://github.com/jonschlinkert/has-value", + "description": "Returns true if a value exists, false if empty. Works with deeply nested values using object paths.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "has-values", + "url": "https://github.com/jonschlinkert/has-values", + "description": "Returns true if any values exist, false if empty. Works for booleans, functions, numbers, strings, nulls, objects and arrays. ", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "has-values", + "url": "https://github.com/jonschlinkert/has-values", + "description": "Returns true if any values exist, false if empty. Works for booleans, functions, numbers, strings, nulls, objects and arrays. ", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "highlight.js", + "url": "https://highlightjs.org/", + "description": "Syntax highlighting with language autodetection.", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "hosted-git-info", + "url": "https://github.com/npm/hosted-git-info", + "description": "Provides metadata and conversions from repository urls for Github, Bitbucket and Gitlab", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "html-encoding-sniffer", + "url": "https://github.com/jsdom/html-encoding-sniffer#readme", + "description": "Sniff the encoding from a HTML byte stream", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "http-signature", + "url": "https://github.com/joyent/node-http-signature/", + "description": "Reference implementation of Joyent's HTTP Signature scheme.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "iconv-lite", + "url": "https://github.com/ashtuchkin/iconv-lite", + "description": "Convert character encodings in pure javascript.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "imurmurhash", + "url": "https://github.com/jensyt/imurmurhash-js", + "description": "An incremental implementation of MurmurHash3", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "inflight", + "url": "https://github.com/isaacs/inflight", + "description": "Add callbacks to requests in flight to avoid async duplication", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "inherits", + "url": "https://github.com/isaacs/inherits#readme", + "description": "Browser-friendly inheritance fully compatible with standard node.js inherits()", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "invariant", + "url": "https://github.com/zertosh/invariant#readme", + "description": "invariant", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "invert-kv", + "url": "https://github.com/sindresorhus/invert-kv#readme", + "description": "Invert the key/value of an object. Example: {foo: 'bar'} → {bar: 'foo'}", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-accessor-descriptor", + "url": "https://github.com/jonschlinkert/is-accessor-descriptor", + "description": "Returns true if a value has the characteristics of a valid JavaScript accessor descriptor.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-accessor-descriptor", + "url": "https://github.com/jonschlinkert/is-accessor-descriptor", + "description": "Returns true if a value has the characteristics of a valid JavaScript accessor descriptor.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-arrayish", + "url": "https://github.com/qix-/node-is-arrayish#readme", + "description": "Determines if an object can be used as an array", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-buffer", + "url": "https://github.com/feross/is-buffer#readme", + "description": "Determine if an object is a Buffer", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-builtin-module", + "url": "https://github.com/sindresorhus/is-builtin-module#readme", + "description": "Check if a string matches the name of a Node.js builtin module", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-data-descriptor", + "url": "https://github.com/jonschlinkert/is-data-descriptor", + "description": "Returns true if a value has the characteristics of a valid JavaScript data descriptor.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-data-descriptor", + "url": "https://github.com/jonschlinkert/is-data-descriptor", + "description": "Returns true if a value has the characteristics of a valid JavaScript data descriptor.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-descriptor", + "url": "https://github.com/jonschlinkert/is-descriptor", + "description": "Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for data descriptors and accessor descriptors.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-descriptor", + "url": "https://github.com/jonschlinkert/is-descriptor", + "description": "Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for data descriptors and accessor descriptors.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-extendable", + "url": "https://github.com/jonschlinkert/is-extendable", + "description": "Returns true if a value is any of the object types: array, regexp, plain object, function or date. This is useful for determining if a value can be extended, e.g. \"can the value have keys?\"", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-extendable", + "url": "https://github.com/jonschlinkert/is-extendable", + "description": "Returns true if a value is a plain object, array or function.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-finite", + "url": "https://github.com/sindresorhus/is-finite#readme", + "description": "ES2015 Number.isFinite() ponyfill", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-fullwidth-code-point", + "url": "https://github.com/sindresorhus/is-fullwidth-code-point#readme", + "description": "Check if the character represented by a given Unicode code point is fullwidth", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-fullwidth-code-point", + "url": "https://github.com/sindresorhus/is-fullwidth-code-point#readme", + "description": "Check if the character represented by a given Unicode code point is fullwidth", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-number", + "url": "https://github.com/jonschlinkert/is-number", + "description": "Returns true if the value is a number. comprehensive tests.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-number", + "url": "https://github.com/jonschlinkert/is-number", + "description": "Returns true if the value is a number. comprehensive tests.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-odd", + "url": "https://github.com/jonschlinkert/is-odd", + "description": "Returns true if the given number is odd.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-plain-object", + "url": "https://github.com/jonschlinkert/is-plain-object", + "description": "Returns true if an object was created by the `Object` constructor.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-stream", + "url": "https://github.com/sindresorhus/is-stream#readme", + "description": "Check if something is a Node.js stream", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-typedarray", + "url": "https://github.com/hughsk/is-typedarray", + "description": "Detect whether or not an object is a Typed Array", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-utf8", + "url": "https://github.com/wayfind/is-utf8#readme", + "description": "Detect if a buffer is utf8 encoded.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-windows", + "url": "https://github.com/jonschlinkert/is-windows", + "description": "Returns true if the platform is windows. UMD module, works with node.js, commonjs, browser, AMD, electron, etc.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "isarray", + "url": "https://github.com/juliangruber/isarray", + "description": "Array#isArray for older browsers", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "isexe", + "url": "https://github.com/isaacs/isexe#readme", + "description": "Minimal module to check if a file is executable.", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "isobject", + "url": "https://github.com/jonschlinkert/isobject", + "description": "Returns true if the value is an object and not an array or null.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "isobject", + "url": "https://github.com/jonschlinkert/isobject", + "description": "Returns true if the value is an object and not an array or null.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "isstream", + "url": "https://github.com/rvagg/isstream", + "description": "Determine if an object is a Stream", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "istanbul-lib-coverage", + "url": "https://github.com/istanbuljs/istanbuljs", + "description": "Data library for istanbul coverage objects", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "istanbul-lib-hook", + "url": "https://github.com/istanbuljs/istanbuljs#readme", + "description": "Hooks for require, vm and script used in istanbul", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "istanbul-lib-instrument", + "url": "https://github.com/istanbuljs/istanbuljs", + "description": "Core istanbul API for JS code coverage", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "istanbul-lib-report", + "url": "https://github.com/istanbuljs/istanbuljs", + "description": "Base reporting library for istanbul", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "istanbul-lib-source-maps", + "url": "https://github.com/istanbuljs/istanbuljs#readme", + "description": "Source maps support for istanbul", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "istanbul-reports", + "url": "https://github.com/istanbuljs/istanbuljs", + "description": "istanbul reports", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "js-npm", + "url": "", + "description": "Test project for js-npm", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0", + "BSD-3-Clause", + "ISC", + "MIT" + ] + }, + { + "name": "js-tokens", + "url": "https://github.com/lydell/js-tokens#readme", + "description": "A regex that tokenizes JavaScript.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "jsbn", + "url": "https://github.com/andyperlitch/jsbn#readme", + "description": "The jsbn library is a fast, portable implementation of large-number math in pure JavaScript, enabling public-key crypto and other applications on desktop and mobile browsers.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "jsdom", + "url": "https://github.com/jsdom/jsdom#readme", + "description": "A JavaScript implementation of many web standards", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "jsesc", + "url": "https://mths.be/jsesc", + "description": "A JavaScript library for escaping JavaScript strings while generating the shortest possible valid output.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "json-schema", + "url": "https://github.com/kriszyp/json-schema#readme", + "description": "JSON Schema validation and specifications", + "paths": [ + "." + ], + "licenses": [ + "AFL-2.1", + "BSD-4-Clause" + ] + }, + { + "name": "json-schema-traverse", + "url": "https://github.com/epoberezkin/json-schema-traverse#readme", + "description": "Traverse JSON Schema passing each schema object to callback", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "json-stringify-safe", + "url": "https://github.com/isaacs/json-stringify-safe", + "description": "Like JSON.stringify, but doesn't blow up on circular refs.", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "jsprim", + "url": "https://github.com/joyent/node-jsprim#readme", + "description": "utilities for primitive JavaScript types", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "kind-of", + "url": "https://github.com/jonschlinkert/kind-of", + "description": "Get the native type of a value.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "kind-of", + "url": "https://github.com/jonschlinkert/kind-of", + "description": "Get the native type of a value.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "kind-of", + "url": "https://github.com/jonschlinkert/kind-of", + "description": "Get the native type of a value.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "kind-of", + "url": "https://github.com/jonschlinkert/kind-of", + "description": "Get the native type of a value.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "lazy-cache", + "url": "https://github.com/jonschlinkert/lazy-cache", + "description": "Cache requires to be lazy-loaded when needed.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "lcid", + "url": "https://github.com/sindresorhus/lcid#readme", + "description": "Mapping between standard locale identifiers and Windows locale identifiers (LCID)", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "left-pad", + "url": "https://github.com/stevemao/left-pad#readme", + "description": "String left pad", + "paths": [ + "." + ], + "licenses": [ + "WTFPL" + ] + }, + { + "name": "levn", + "url": "https://github.com/gkz/levn", + "description": "Light ECMAScript (JavaScript) Value Notation - human written, concise, typed, flexible", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "load-json-file", + "url": "https://github.com/sindresorhus/load-json-file#readme", + "description": "Read and parse a JSON file", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "locate-path", + "url": "https://github.com/sindresorhus/locate-path#readme", + "description": "Get the first path that exists on disk of multiple paths", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "lodash", + "url": "https://lodash.com/", + "description": "Lodash modular utilities.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "lodash", + "url": "https://lodash.com/", + "description": "Lodash modular utilities.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "lodash.sortby", + "url": "https://lodash.com/", + "description": "The lodash method `_.sortBy` exported as a module.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "longest", + "url": "https://github.com/jonschlinkert/longest", + "description": "Get the longest item in an array.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "loose-envify", + "url": "https://github.com/zertosh/loose-envify", + "description": "Fast (and loose) selective `process.env` replacer using js-tokens instead of an AST", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "lru-cache", + "url": "https://github.com/isaacs/node-lru-cache#readme", + "description": "A cache object that deletes the least-recently-used items.", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "map-cache", + "url": "https://github.com/jonschlinkert/map-cache", + "description": "Basic cache object for storing key-value pairs.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "map-visit", + "url": "https://github.com/jonschlinkert/map-visit", + "description": "Map `visit` over an array of objects.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "md5-hex", + "url": "https://github.com/sindresorhus/md5-hex#readme", + "description": "Create a MD5 hash with hex encoding", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "md5-o-matic", + "url": "https://github.com/trentmillar/md5-o-matic", + "description": "Fast and simple MD5 hashing utility with zero module dependencies. View MD5 Shootout results, http://jsperf.com/md5-shootout/39", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "mem", + "url": "https://github.com/sindresorhus/mem#readme", + "description": "Memoize functions - An optimization used to speed up consecutive function calls by caching the result of calls with identical input", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "merge-source-map", + "url": "https://github.com/keik/merge-source-map#readme", + "description": "Merge old source map and new source map in multi-transform flow", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "micromatch", + "url": "https://github.com/micromatch/micromatch", + "description": "Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "mime-db", + "url": "https://github.com/jshttp/mime-db#readme", + "description": "Media Type Database", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "mime-types", + "url": "https://github.com/jshttp/mime-types#readme", + "description": "The ultimate javascript content-type utility.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "mimic-fn", + "url": "https://github.com/sindresorhus/mimic-fn#readme", + "description": "Make a function mimic another one", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "minimatch", + "url": "https://github.com/isaacs/minimatch#readme", + "description": "a glob matcher in javascript", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "minimist", + "url": "https://github.com/substack/minimist", + "description": "parse argument options", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "mixin-deep", + "url": "https://github.com/jonschlinkert/mixin-deep", + "description": "Deeply mix the properties of objects into the first object. Like merge-deep, but doesn't clone.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "mkdirp", + "url": "https://github.com/substack/node-mkdirp#readme", + "description": "Recursively mkdir, like `mkdir -p`", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "moment", + "url": "http://momentjs.com", + "description": "Parse, validate, manipulate, and display dates", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "ms", + "url": "https://github.com/zeit/ms#readme", + "description": "Tiny milisecond conversion utility", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "nanomatch", + "url": "https://github.com/micromatch/nanomatch", + "description": "Fast, minimal glob matcher for node.js. Similar to micromatch, minimatch and multimatch, but complete Bash 4.3 wildcard support only (no support for exglobs, posix brackets or braces)", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "normalize-package-data", + "url": "https://github.com/npm/normalize-package-data#readme", + "description": "Normalizes data that can be found in package.json files.", + "paths": [ + "." + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "name": "normalize.css", + "url": "https://necolas.github.io/normalize.css", + "description": "A modern alternative to CSS resets", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "npm-run-path", + "url": "https://github.com/sindresorhus/npm-run-path#readme", + "description": "Get your PATH prepended with locally installed binaries", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "number-is-nan", + "url": "https://github.com/sindresorhus/number-is-nan#readme", + "description": "ES2015 Number.isNaN() ponyfill", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "nwsapi", + "url": "http://javascript.nwbox.com/nwsapi/", + "description": "Fast CSS Selectors API Engine", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "nyc", + "url": "https://github.com/istanbuljs/nyc#readme", + "description": "the Istanbul command line interface", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "oauth-sign", + "url": "https://github.com/mikeal/oauth-sign#readme", + "description": "OAuth 1 signing. Formerly a vendor lib in mikeal/request, now a standalone module.", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "object-assign", + "url": "https://github.com/sindresorhus/object-assign#readme", + "description": "ES2015 `Object.assign()` ponyfill", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "object-copy", + "url": "https://github.com/jonschlinkert/object-copy", + "description": "Copy static properties, prototype properties, and descriptors from one object to another.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "object-visit", + "url": "https://github.com/jonschlinkert/object-visit", + "description": "Call a specified method on each value in the given object.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "object.pick", + "url": "https://github.com/jonschlinkert/object.pick", + "description": "Returns a filtered copy of an object with only the specified keys, similar to `_.pick` from lodash / underscore.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "once", + "url": "https://github.com/isaacs/once#readme", + "description": "Run a function exactly one time", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "optimist", + "url": "https://github.com/substack/node-optimist#readme", + "description": "Light-weight option parsing with an argv hash. No optstrings attached.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "optionator", + "url": "https://github.com/gkz/optionator", + "description": "option parsing and help generation", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "os-homedir", + "url": "https://github.com/sindresorhus/os-homedir#readme", + "description": "Node.js 4 `os.homedir()` ponyfill", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "os-locale", + "url": "https://github.com/sindresorhus/os-locale#readme", + "description": "Get the system locale", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "p-finally", + "url": "https://github.com/sindresorhus/p-finally#readme", + "description": "`Promise#finally()` ponyfill - Invoked when the promise is settled regardless of outcome", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "p-limit", + "url": "https://github.com/sindresorhus/p-limit#readme", + "description": "Run multiple promise-returning & async functions with limited concurrency", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "p-locate", + "url": "https://github.com/sindresorhus/p-locate#readme", + "description": "Get the first fulfilled promise that satisfies the provided testing function", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "p-try", + "url": "https://github.com/sindresorhus/p-try#readme", + "description": "`Promise#try()` ponyfill - Starts a promise chain", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "parse-json", + "url": "https://github.com/sindresorhus/parse-json#readme", + "description": "Parse JSON with more helpful errors", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "parse5", + "url": "https://github.com/inikulin/parse5", + "description": "HTML parsing/serialization toolset for Node.js. WHATWG HTML Living Standard (aka HTML5)-compliant.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "pascalcase", + "url": "https://github.com/jonschlinkert/pascalcase", + "description": "Convert a string to pascal-case.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "path-exists", + "url": "https://github.com/sindresorhus/path-exists#readme", + "description": "Check if a path exists", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "path-exists", + "url": "https://github.com/sindresorhus/path-exists#readme", + "description": "Check if a path exists", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "path-is-absolute", + "url": "https://github.com/sindresorhus/path-is-absolute#readme", + "description": "Node.js 0.12 path.isAbsolute() ponyfill", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "path-key", + "url": "https://github.com/sindresorhus/path-key#readme", + "description": "Get the PATH environment variable key cross-platform", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "path-parse", + "url": "https://github.com/jbgutierrez/path-parse#readme", + "description": "Node.js path.parse() ponyfill", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "path-type", + "url": "https://github.com/sindresorhus/path-type#readme", + "description": "Check if a path is a file, directory, or symlink", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "performance-now", + "url": "https://github.com/braveg1rl/performance-now", + "description": "Implements performance.now (based on process.hrtime).", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "pify", + "url": "https://github.com/sindresorhus/pify#readme", + "description": "Promisify a callback-style function", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "pinkie", + "url": "https://github.com/floatdrop/pinkie#readme", + "description": "Itty bitty little widdle twinkie pinkie ES2015 Promise implementation", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "pinkie-promise", + "url": "https://github.com/floatdrop/pinkie-promise#readme", + "description": "ES2015 Promise ponyfill", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "pkg-dir", + "url": "https://github.com/sindresorhus/pkg-dir#readme", + "description": "Find the root directory of a npm package", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "pn", + "url": "https://github.com/cscott/node-pn#readme", + "description": "Promisify the node standard library.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "posix-character-classes", + "url": "https://github.com/jonschlinkert/posix-character-classes", + "description": "POSIX character classes for creating regular expressions.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "prelude-ls", + "url": "http://preludels.com", + "description": "prelude.ls is a functionally oriented utility library. It is powerful and flexible. Almost all of its functions are curried. It is written in, and is the recommended base library for, LiveScript.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "pseudomap", + "url": "https://github.com/isaacs/pseudomap#readme", + "description": "A thing that is a lot like ES6 `Map`, but without iterators, for use in environments where `for..of` syntax and `Map` are not available.", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "psl", + "url": "https://github.com/lupomontero/psl#readme", + "description": "Domain name parser based on the Public Suffix List", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "punycode", + "url": "https://mths.be/punycode", + "description": "A robust Punycode converter that fully complies to RFC 3492 and RFC 5891, and works on nearly all JavaScript platforms.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "punycode", + "url": "https://mths.be/punycode", + "description": "A robust Punycode converter that fully complies to RFC 3492 and RFC 5891, and works on nearly all JavaScript platforms.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "qs", + "url": "https://github.com/ljharb/qs", + "description": "A querystring parser that supports nesting and arrays, with a depth limit", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "read-pkg", + "url": "https://github.com/sindresorhus/read-pkg#readme", + "description": "Read a package.json file", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "read-pkg-up", + "url": "https://github.com/sindresorhus/read-pkg-up#readme", + "description": "Read the closest package.json file", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "regenerator-runtime", + "url": "", + "description": "Runtime for Regenerator-compiled generator and async functions.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "regex-not", + "url": "https://github.com/jonschlinkert/regex-not", + "description": "Create a javascript regular expression for matching everything except for the given string.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "repeat-element", + "url": "https://github.com/jonschlinkert/repeat-element", + "description": "Create an array by repeating the given value n times.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "repeat-string", + "url": "https://github.com/jonschlinkert/repeat-string", + "description": "Repeat the given string n times. Fastest implementation for repeating a string.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "repeating", + "url": "https://github.com/sindresorhus/repeating#readme", + "description": "Repeat a string - fast", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "request", + "url": "https://github.com/request/request#readme", + "description": "Simplified HTTP request client.", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "request-promise-core", + "url": "https://github.com/request/promise-core#readme", + "description": "Core Promise support implementation for the simplified HTTP request client 'request'.", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "request-promise-native", + "url": "https://github.com/request/request-promise-native#readme", + "description": "The simplified HTTP request client 'request' with Promise support. Powered by native ES6 promises.", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "require-directory", + "url": "https://github.com/troygoode/node-require-directory/", + "description": "Recursively iterates over specified directory, require()'ing each file, and returning a nested hash structure containing those modules.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "require-main-filename", + "url": "https://github.com/yargs/require-main-filename#readme", + "description": "shim for require.main.filename() that works in as many environments as possible", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "resolve-from", + "url": "https://github.com/sindresorhus/resolve-from#readme", + "description": "Resolve the path of a module like require.resolve() but from a given path", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "resolve-url", + "url": "https://github.com/lydell/resolve-url#readme", + "description": "Like Node.js’ `path.resolve`/`url.resolve` for the browser.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "ret", + "url": "https://github.com/fent/ret.js#readme", + "description": "Tokenizes a string that represents a regular expression.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "right-align", + "url": "https://github.com/jonschlinkert/right-align", + "description": "Right-align the text in a string.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "rimraf", + "url": "https://github.com/isaacs/rimraf#readme", + "description": "A deep deletion module for node (like `rm -rf`)", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "safe-buffer", + "url": "https://github.com/feross/safe-buffer", + "description": "Safer Node.js Buffer API", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "safe-regex", + "url": "https://github.com/substack/safe-regex", + "description": "detect possibly catastrophic, exponential-time regular expressions", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "safer-buffer", + "url": "https://github.com/ChALkeR/safer-buffer#readme", + "description": "Modern Buffer API polyfill without footguns", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "sax", + "url": "https://github.com/isaacs/sax-js#readme", + "description": "An evented streaming XML parser in JavaScript", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "semver", + "url": "https://github.com/npm/node-semver#readme", + "description": "The semantic version parser used by npm.", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "set-blocking", + "url": "https://github.com/yargs/set-blocking#readme", + "description": "set blocking stdio and stderr ensuring that terminal output does not truncate", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "set-value", + "url": "https://github.com/jonschlinkert/set-value", + "description": "Create nested values and any intermediaries using dot notation (`'a.b.c'`) paths.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "set-value", + "url": "https://github.com/jonschlinkert/set-value", + "description": "Create nested values and any intermediaries using dot notation (`'a.b.c'`) paths.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "shebang-command", + "url": "https://github.com/kevva/shebang-command#readme", + "description": "Get the command from a shebang", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "shebang-regex", + "url": "https://github.com/sindresorhus/shebang-regex#readme", + "description": "Regular expression for matching a shebang", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "signal-exit", + "url": "https://github.com/tapjs/signal-exit", + "description": "when you want to fire an event no matter how a process exits.", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "slide", + "url": "https://github.com/isaacs/slide-flow-control#readme", + "description": "A flow control lib small enough to fit on in a slide presentation. Derived live at Oak.JS", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "snapdragon", + "url": "https://github.com/jonschlinkert/snapdragon", + "description": "Fast, pluggable and easy-to-use parser-renderer factory.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "snapdragon-node", + "url": "https://github.com/jonschlinkert/snapdragon-node", + "description": "Snapdragon utility for creating a new AST node in custom code, such as plugins.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "snapdragon-util", + "url": "https://github.com/jonschlinkert/snapdragon-util", + "description": "Utilities for the snapdragon parser/compiler.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "source-map", + "url": "https://github.com/mozilla/source-map", + "description": "Generates and consumes source maps", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "source-map", + "url": "https://github.com/mozilla/source-map", + "description": "Generates and consumes source maps", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "source-map", + "url": "https://github.com/mozilla/source-map", + "description": "Generates and consumes source maps", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "source-map-resolve", + "url": "https://github.com/lydell/source-map-resolve#readme", + "description": "Resolve the source map and/or sources for a generated file.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "source-map-url", + "url": "https://github.com/lydell/source-map-url#readme", + "description": "Tools for working with sourceMappingURL comments.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "spawn-wrap", + "url": "https://github.com/isaacs/spawn-wrap#readme", + "description": "Wrap all spawned Node.js child processes by adding environs and arguments ahead of the main JavaScript file argument.", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "spdx-correct", + "url": "https://github.com/jslicense/spdx-correct.js#readme", + "description": "correct invalid SPDX expressions", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "spdx-exceptions", + "url": "https://github.com/kemitchell/spdx-exceptions.json#readme", + "description": "list of SPDX standard license exceptions", + "paths": [ + "." + ], + "licenses": [ + "CC-BY-3.0" + ] + }, + { + "name": "spdx-expression-parse", + "url": "https://github.com/jslicense/spdx-expression-parse.js#readme", + "description": "parse SPDX license expressions", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "spdx-license-ids", + "url": "https://github.com/shinnn/spdx-license-ids#readme", + "description": "A list of SPDX license identifiers", + "paths": [ + "." + ], + "licenses": [ + "CC0-1.0" + ] + }, + { + "name": "split-string", + "url": "https://github.com/jonschlinkert/split-string", + "description": "Split a string on a character except when the character is escaped.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "sshpk", + "url": "https://github.com/arekinath/node-sshpk#readme", + "description": "A library for finding and using SSH public keys", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "static-extend", + "url": "https://github.com/jonschlinkert/static-extend", + "description": "Adds a static `extend` method to a class, to simplify inheritance. Extends the static properties, prototype properties, and descriptors from a `Parent` constructor onto `Child` constructors.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "stealthy-require", + "url": "https://github.com/analog-nico/stealthy-require#readme", + "description": "The closest you can get to require something with bypassing the require cache", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "string-width", + "url": "https://github.com/sindresorhus/string-width#readme", + "description": "Get the visual width of a string - the number of columns required to display it", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "string-width", + "url": "https://github.com/sindresorhus/string-width#readme", + "description": "Get the visual width of a string - the number of columns required to display it", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "strip-ansi", + "url": "https://github.com/chalk/strip-ansi#readme", + "description": "Strip ANSI escape codes", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "strip-ansi", + "url": "https://github.com/chalk/strip-ansi#readme", + "description": "Strip ANSI escape codes", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "strip-bom", + "url": "https://github.com/sindresorhus/strip-bom#readme", + "description": "Strip UTF-8 byte order mark (BOM) from a string/buffer", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "strip-eof", + "url": "https://github.com/sindresorhus/strip-eof#readme", + "description": "Strip the End-Of-File (EOF) character from a string/buffer", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "supports-color", + "url": "https://github.com/chalk/supports-color#readme", + "description": "Detect whether a terminal supports color", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "supports-color", + "url": "https://github.com/chalk/supports-color#readme", + "description": "Detect whether a terminal supports color", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "symbol-tree", + "url": "https://github.com/jsdom/js-symbol-tree#symbol-tree", + "description": "Turn any collection of objects into its own efficient tree or linked list using Symbol", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "test-exclude", + "url": "https://github.com/istanbuljs/istanbuljs#readme", + "description": "test for inclusion or exclusion of paths using pkg-conf and globs", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "to-fast-properties", + "url": "https://github.com/sindresorhus/to-fast-properties#readme", + "description": "Force V8 to use fast properties for an object", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "to-object-path", + "url": "https://github.com/jonschlinkert/to-object-path", + "description": "Create an object path from a list or array of strings.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "to-regex", + "url": "https://github.com/jonschlinkert/to-regex", + "description": "Generate a regex from a string or array of strings.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "to-regex-range", + "url": "https://github.com/micromatch/to-regex-range", + "description": "Pass two numbers, get a regex-compatible source string for matching ranges. Validated against more than 2.78 million test assertions.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "tough-cookie", + "url": "https://github.com/salesforce/tough-cookie", + "description": "RFC6265 Cookies and Cookie Jar for node.js", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "tr46", + "url": "https://github.com/Sebmaster/tr46.js#readme", + "description": "An implementation of the Unicode TR46 spec", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "trim-right", + "url": "https://github.com/sindresorhus/trim-right#readme", + "description": "Similar to String#trim() but removes only whitespace on the right", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "tunnel-agent", + "url": "https://github.com/mikeal/tunnel-agent#readme", + "description": "HTTP proxy tunneling agent. Formerly part of mikeal/request, now a standalone module.", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "tweetnacl", + "url": "https://tweetnacl.js.org", + "description": "Port of TweetNaCl cryptographic library to JavaScript", + "paths": [ + "." + ], + "licenses": [ + "Unlicense" + ] + }, + { + "name": "type-check", + "url": "https://github.com/gkz/type-check", + "description": "type-check allows you to check the types of JavaScript values at runtime with a Haskell like type syntax.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "uglify-js", + "url": "http://lisperator.net/uglifyjs", + "description": "JavaScript parser, mangler/compressor and beautifier toolkit", + "paths": [ + "." + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "name": "uglify-to-browserify", + "url": "https://github.com/ForbesLindesay/uglify-to-browserify#readme", + "description": "A transform to make UglifyJS work in browserify.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "union-value", + "url": "https://github.com/jonschlinkert/union-value", + "description": "Set an array of unique values as the property of an object. Supports setting deeply nested properties using using object-paths/dot notation.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "unset-value", + "url": "https://github.com/jonschlinkert/unset-value", + "description": "Delete nested properties from an object using dot notation.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "uri-js", + "url": "https://github.com/garycourt/uri-js", + "description": "An RFC 3986/3987 compliant, scheme extendable URI/IRI parsing/validating/resolving library for JavaScript.", + "paths": [ + "." + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "name": "urix", + "url": "https://github.com/lydell/urix#readme", + "description": "Makes Windows-style paths more unix and URI friendly.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "use", + "url": "https://github.com/jonschlinkert/use", + "description": "Easily add plugin support to your node.js application.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "uuid", + "url": "https://github.com/kelektiv/node-uuid#readme", + "description": "RFC4122 (v1, v4, and v5) UUIDs", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "validate-npm-package-license", + "url": "https://github.com/kemitchell/validate-npm-package-license.js#readme", + "description": "Give me a string and I'll tell you if it's a valid npm package license string", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "verror", + "url": "https://github.com/davepacheco/node-verror#readme", + "description": "richer JavaScript errors", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "w3c-hr-time", + "url": "https://github.com/jsdom/w3c-hr-time#readme", + "description": "An implementation of the W3C High Resolution Time Level 2 specification.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "webidl-conversions", + "url": "https://github.com/jsdom/webidl-conversions#readme", + "description": "Implements the WebIDL algorithms for converting to and from JavaScript values", + "paths": [ + "." + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "name": "whatwg-encoding", + "url": "https://github.com/jsdom/whatwg-encoding#readme", + "description": "Decode strings according to the WHATWG Encoding Standard", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "whatwg-mimetype", + "url": "https://github.com/jsdom/whatwg-mimetype#readme", + "description": "Parses, serializes, and manipulates MIME types, according to the WHATWG MIME Sniffing Standard", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "whatwg-url", + "url": "https://github.com/jsdom/whatwg-url#readme", + "description": "An implementation of the WHATWG URL Standard's URL API and parsing machinery", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "whatwg-url", + "url": "https://github.com/jsdom/whatwg-url#readme", + "description": "An implementation of the WHATWG URL Standard's URL API and parsing machinery", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "which", + "url": "https://github.com/isaacs/node-which#readme", + "description": "Like which(1) unix command. Find the first instance of an executable in the PATH.", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "which-module", + "url": "https://github.com/nexdrew/which-module#readme", + "description": "Find the module object for something that was require()d", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "window-size", + "url": "https://github.com/jonschlinkert/window-size", + "description": "Reliable way to to get the height and width of the terminal/console in a node.js environment.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "word-wrap", + "url": "https://github.com/jonschlinkert/word-wrap", + "description": "Wrap words to a specified length.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "wordwrap", + "url": "https://github.com/substack/node-wordwrap#readme", + "description": "Wrap those words. Show them at what columns to start and stop.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "wordwrap", + "url": "https://github.com/substack/node-wordwrap#readme", + "description": "Wrap those words. Show them at what columns to start and stop.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "wrap-ansi", + "url": "https://github.com/chalk/wrap-ansi#readme", + "description": "Wordwrap a string with ANSI escape codes", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "wrappy", + "url": "https://github.com/npm/wrappy", + "description": "Callback wrapping utility", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "write-file-atomic", + "url": "https://github.com/iarna/write-file-atomic", + "description": "Write files in an atomic fashion w/configurable ownership", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "ws", + "url": "https://github.com/websockets/ws", + "description": "Simple to use, blazing fast and thoroughly tested websocket client and server for Node.js", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "xml-name-validator", + "url": "https://github.com/jsdom/xml-name-validator#readme", + "description": "Validates whether a string matches the production for an XML name or qualified name", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "y18n", + "url": "https://github.com/yargs/y18n", + "description": "the bare-bones internationalization library used by yargs", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "yallist", + "url": "https://github.com/isaacs/yallist#readme", + "description": "Yet Another Linked List", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "yargs", + "url": "http://yargs.js.org/", + "description": "yargs the modern, pirate-themed, successor to optimist.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "yargs", + "url": "https://github.com/bcoe/yargs#readme", + "description": "Light-weight option parsing with an argv hash. No optstrings attached.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "yargs-parser", + "url": "https://github.com/yargs/yargs-parser#readme", + "description": "the mighty option parser used by yargs", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "yargs-parser", + "url": "https://github.com/yargs/yargs-parser#readme", + "description": "the mighty option parser used by yargs", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + } + ] +} diff --git a/spec/fixtures/expected/js/yarn/v1.0.json b/spec/fixtures/expected/js/yarn/v1.0.json new file mode 100644 index 0000000..2401c97 --- /dev/null +++ b/spec/fixtures/expected/js/yarn/v1.0.json @@ -0,0 +1,20336 @@ +{ + "licenses": [ + { + "count": 1176, + "name": "MIT" + }, + { + "count": 121, + "name": "ISC" + }, + { + "count": 39, + "name": "New BSD" + }, + { + "count": 34, + "name": "Simplified BSD" + }, + { + "count": 23, + "name": "Apache 2.0" + }, + { + "count": 22, + "name": "CC0-1.0" + }, + { + "count": 4, + "name": "MIT*" + }, + { + "count": 3, + "name": "Apache*" + }, + { + "count": 2, + "name": "(WTFPL OR MIT)" + }, + { + "count": 2, + "name": "BSD" + }, + { + "count": 2, + "name": "CC-BY-4.0" + }, + { + "count": 2, + "name": "SEE LICENSE IN LICENSE" + }, + { + "count": 2, + "name": "Unlicense" + }, + { + "count": 2, + "name": "unknown" + }, + { + "count": 1, + "name": "(BSD-2-Clause OR MIT OR Apache-2.0)" + }, + { + "count": 1, + "name": "(GPL-2.0 OR MIT)" + }, + { + "count": 1, + "name": "(MIT AND BSD-3-Clause)" + }, + { + "count": 1, + "name": "(MIT AND Zlib)" + }, + { + "count": 1, + "name": "(MIT OR Apache-2.0)" + }, + { + "count": 1, + "name": "(MIT OR CC0-1.0)" + }, + { + "count": 1, + "name": "BSD*" + }, + { + "count": 1, + "name": "BSD-3-Clause OR MIT" + }, + { + "count": 1, + "name": "CC-BY-3.0" + }, + { + "count": 1, + "name": "LIL" + }, + { + "count": 1, + "name": "Mozilla Public License 2.0" + }, + { + "count": 1, + "name": "Public Domain" + }, + { + "count": 1, + "name": "UNKNOWN" + }, + { + "count": 1, + "name": "WTFPL" + } + ], + "dependencies": [ + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/code-frame", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/core", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/generator", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/helper-annotate-as-pure", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/helper-builder-binary-assignment-operator-visitor", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/helper-call-delegate", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/helper-create-class-features-plugin", + "url": "https://babeljs.io/team", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/helper-define-map", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/helper-explode-assignable-expression", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/helper-function-name", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/helper-get-function-arity", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/helper-hoist-variables", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/helper-member-expression-to-functions", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/helper-module-imports", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/helper-module-transforms", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/helper-optimise-call-expression", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/helper-plugin-utils", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/helper-regex", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/helper-remap-async-to-generator", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/helper-replace-supers", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/helper-simple-access", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/helper-split-export-declaration", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/helper-wrap-function", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/helpers", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/highlight", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/parser", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-proposal-async-generator-functions", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-proposal-class-properties", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-proposal-decorators", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-proposal-json-strings", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-proposal-object-rest-spread", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-proposal-optional-catch-binding", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-proposal-unicode-property-regex", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-syntax-async-generators", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-syntax-decorators", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-syntax-dynamic-import", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-syntax-json-strings", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-syntax-jsx", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-syntax-object-rest-spread", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-syntax-optional-catch-binding", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-arrow-functions", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-async-to-generator", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-block-scoped-functions", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-block-scoping", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-classes", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-computed-properties", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-destructuring", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-dotall-regex", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-duplicate-keys", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-exponentiation-operator", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-for-of", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-function-name", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-literals", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-member-expression-literals", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-modules-amd", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-modules-commonjs", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-modules-systemjs", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-modules-umd", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-named-capturing-groups-regex", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-new-target", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-object-super", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-parameters", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-property-literals", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-regenerator", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-regenerator", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-reserved-words", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-runtime", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-shorthand-properties", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-spread", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-sticky-regex", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-template-literals", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-typeof-symbol", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-unicode-regex", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/preset-env", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/runtime", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/template", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/traverse", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/types", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "@csstools/convert-colors", + "url": "https://github.com/jonathantneal/convert-colors#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxt/babel-preset-app", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxt/builder", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxt/cli", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxt/config", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxt/core", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "LIL" + }, + "dependency": { + "name": "@nuxt/devalue", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxt/friendly-errors-webpack-plugin", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxt/generator", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxt/loading-screen", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxt/opencollective", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxt/server", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxt/utils", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxt/vue-app", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxt/vue-renderer", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxt/webpack", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxtjs/axios", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxtjs/browserconfig", + "url": "https://github.com/nuxt/modules/tree/master/modules/browserconfig", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxtjs/cssnano", + "url": "https://github.com/nuxt/modules/tree/master/modules/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxtjs/icon", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxtjs/manifest", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxtjs/markdownit", + "url": "https://github.com/nuxt/modules/tree/master/modules/markdownit", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxtjs/markdownit-loader", + "url": "https://github.com/nuxt-community/markdownit-loader#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxtjs/optimize", + "url": "https://github.com/nuxt/modules/tree/master/modules/optimize", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxtjs/proxy", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxtjs/sitemap", + "url": "https://github.com/nuxt/modules/tree/master/modules/sitemap", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxtjs/workbox", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxtjs/youch", + "url": "https://github.com/poppinss/nuxt#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@types/q", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@vue/babel-helper-vue-jsx-merge-props", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@vue/babel-plugin-transform-vue-jsx", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@vue/babel-preset-jsx", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@vue/babel-sugar-functional-vue", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@vue/babel-sugar-inject-h", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@vue/babel-sugar-v-model", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@vue/babel-sugar-v-on", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@vue/component-compiler-utils", + "url": "https://github.com/vuejs/component-compiler-utils#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@webassemblyjs/ast", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@webassemblyjs/floating-point-hex-parser", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@webassemblyjs/helper-api-error", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@webassemblyjs/helper-buffer", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@webassemblyjs/helper-code-frame", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "@webassemblyjs/helper-fsm", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@webassemblyjs/helper-module-context", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@webassemblyjs/helper-wasm-bytecode", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@webassemblyjs/helper-wasm-section", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@webassemblyjs/ieee754", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@webassemblyjs/leb128", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@webassemblyjs/utf8", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@webassemblyjs/wasm-edit", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@webassemblyjs/wasm-gen", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@webassemblyjs/wasm-opt", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@webassemblyjs/wasm-parser", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@webassemblyjs/wast-parser", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@webassemblyjs/wast-printer", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "@xtuc/ieee754", + "url": "http://feross.org", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "@xtuc/long", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "abab", + "url": "https://github.com/jsdom/abab#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "abbrev", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "accepts", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "acorn", + "url": "https://github.com/ternjs/acorn", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "acorn", + "url": "https://github.com/acornjs/acorn", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "acorn", + "url": "https://github.com/acornjs/acorn", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "acorn", + "url": "https://github.com/acornjs/acorn", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "acorn-dynamic-import", + "url": "https://github.com/kesne/acorn-dynamic-import", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "acorn-globals", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "acorn-jsx", + "url": "https://github.com/RReverser/acorn-jsx", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "acorn-walk", + "url": "https://github.com/acornjs/acorn", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ajv", + "url": "https://github.com/epoberezkin/ajv", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ajv", + "url": "https://github.com/epoberezkin/ajv", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ajv-errors", + "url": "https://github.com/epoberezkin/ajv-errors#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ajv-keywords", + "url": "https://github.com/epoberezkin/ajv-keywords#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ajv-keywords", + "url": "https://github.com/epoberezkin/ajv-keywords#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "align-text", + "url": "https://github.com/jonschlinkert/align-text", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "alphanum-sort", + "url": "https://github.com/TrySound/alphanum-sort", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "BSD-3-Clause OR MIT" + }, + "dependency": { + "name": "amdefine", + "url": "http://github.com/jrburke/amdefine", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "ansi-align", + "url": "https://github.com/nexdrew/ansi-align#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ansi-colors", + "url": "https://github.com/doowb/ansi-colors", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ansi-escapes", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ansi-escapes", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "ansi-html", + "url": "https://github.com/Tjatse/ansi-html", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ansi-regex", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ansi-regex", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ansi-regex", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ansi-styles", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ansi-styles", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "anymatch", + "url": "https://github.com/es128/anymatch", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "anymatch", + "url": "https://github.com/micromatch/anymatch", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "anymatch", + "url": "https://github.com/micromatch/anymatch", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "append-transform", + "url": "github.com/jamestalmage", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "aproba", + "url": "https://github.com/iarna/aproba", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "archy", + "url": "http://substack.net", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "are-we-there-yet", + "url": "https://github.com/iarna/are-we-there-yet", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "argparse", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "arr-diff", + "url": "https://github.com/jonschlinkert/arr-diff", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "arr-diff", + "url": "https://github.com/jonschlinkert/arr-diff", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "arr-flatten", + "url": "https://github.com/jonschlinkert/arr-flatten", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "arr-union", + "url": "https://github.com/jonschlinkert/arr-union", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "array-equal", + "url": "http://jongleberry.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "array-filter", + "url": "https://github.com/juliangruber/array-filter", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "array-flatten", + "url": "https://github.com/blakeembrey/array-flatten", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "array-map", + "url": "https://github.com/substack/array-map", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "array-reduce", + "url": "https://github.com/substack/array-reduce", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "array-union", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "array-uniq", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "array-unique", + "url": "https://github.com/jonschlinkert/array-unique", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "array-unique", + "url": "https://github.com/jonschlinkert/array-unique", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "arrify", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "asn1", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "asn1", + "url": "joyent.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "asn1.js", + "url": "https://github.com/indutny/asn1.js", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "assert", + "url": "https://github.com/browserify/commonjs-assert", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT*" + }, + "dependency": { + "name": "assert-plus", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "assert-plus", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "assertion-error", + "url": "http://qualiancy.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "assign-symbols", + "url": "https://github.com/jonschlinkert/assign-symbols", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "async", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "async", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "async", + "url": "https://caolan.github.io/async/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "async-cache", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "async-each", + "url": "https://github.com/paulmillr/async-each/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "async-limiter", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "asynckit", + "url": "https://github.com/alexindigo/asynckit#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "(MIT OR Apache-2.0)" + }, + "dependency": { + "name": "atob", + "url": "https://git.coolaj86.com/coolaj86/atob.js.git", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "autoprefixer", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "autoprefixer", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache*" + }, + "dependency": { + "name": "aws-sign2", + "url": "http://www.futurealoof.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "aws-sign2", + "url": "http://www.futurealoof.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "aws4", + "url": "http://github.com/mhart", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "axios", + "url": "https://github.com/axios/axios", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "axios-retry", + "url": "https://github.com/softonic/axios-retry", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "babel-code-frame", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "babel-eslint", + "url": "https://github.com/babel/babel-eslint", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "babel-generator", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "babel-loader", + "url": "https://github.com/babel/babel-loader", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "babel-messages", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "babel-runtime", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "babel-template", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "babel-traverse", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "babel-types", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "babylon", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "balanced-match", + "url": "https://github.com/juliangruber/balanced-match", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "balanced-match", + "url": "https://github.com/juliangruber/balanced-match", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "base", + "url": "https://github.com/node-base/base", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "base64-js", + "url": "https://github.com/beatgammit/base64-js", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "bcrypt-pbkdf", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "bezier-easing", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "bfj", + "url": "https://gitlab.com/philbooth/bfj", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "big.js", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "big.js", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "bignumber.js", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "binary-extensions", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "binary-extensions", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "bl", + "url": "https://github.com/rvagg/bl", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "bluebird", + "url": "https://github.com/petkaantonov/bluebird", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "bmp-js", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "bn.js", + "url": "https://github.com/indutny/bn.js", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "body-parser", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "boolbase", + "url": "https://github.com/fb55/boolbase", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "boom", + "url": "http://hueniverse.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "boom", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "boom", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "boxen", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "brace-expansion", + "url": "https://github.com/juliangruber/brace-expansion", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "braces", + "url": "https://github.com/jonschlinkert/braces", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "braces", + "url": "https://github.com/micromatch/braces", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "braces", + "url": "https://github.com/micromatch/braces", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "brorand", + "url": "https://github.com/indutny/brorand", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "browser-env", + "url": "https://github.com/lukechilds/browser-env#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "browser-process-hrtime", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "browser-stdout", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "browserify-aes", + "url": "https://github.com/crypto-browserify/browserify-aes", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "browserify-cipher", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "browserify-des", + "url": "https://github.com/crypto-browserify/browserify-des#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "browserify-rsa", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "browserify-sign", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "browserify-zlib", + "url": "https://github.com/devongovett/browserify-zlib", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "browserslist", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "browserslist", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "buffer", + "url": "https://github.com/feross/buffer", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "buffer-equal", + "url": "http://substack.net", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "buffer-from", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "buffer-json", + "url": "https://github.com/jprichardson/buffer-json#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "buffer-xor", + "url": "https://github.com/crypto-browserify/buffer-xor", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "builtin-modules", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "builtin-status-codes", + "url": "bendrucker.me", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "bytes", + "url": "http://tjholowaychuk.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "bytes", + "url": "http://tjholowaychuk.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "cacache", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cache-base", + "url": "https://github.com/jonschlinkert/cache-base", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cache-loader", + "url": "https://github.com/webpack-contrib/cache-loader", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "caching-transform", + "url": "github.com/jamestalmage", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "caller-callsite", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "caller-path", + "url": "http://sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "caller-path", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "callsites", + "url": "http://sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "callsites", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "camel-case", + "url": "https://github.com/blakeembrey/camel-case", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "camelcase", + "url": "http://sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "camelcase", + "url": "http://sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "camelcase", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "camelcase", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "caniuse-api", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "caniuse-api", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "CC-BY-4.0" + }, + "dependency": { + "name": "caniuse-db", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "CC-BY-4.0" + }, + "dependency": { + "name": "caniuse-lite", + "url": "http://beneb.info", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "caseless", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "BSD", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + }, + "dependency": { + "name": "caseless", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "center-align", + "url": "https://github.com/jonschlinkert/center-align", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "chai", + "url": "http://chaijs.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "chalk", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "chalk", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "chalk", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "chardet", + "url": "https://github.com/runk/node-chardet", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "check-error", + "url": "http://alogicalparadox.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "check-types", + "url": "https://gitlab.com/philbooth/check-types.js", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "chokidar", + "url": "https://github.com/paulmillr/chokidar", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "chokidar", + "url": "https://github.com/paulmillr/chokidar", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "chownr", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "chrome-trace-event", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ci-info", + "url": "https://github.com/watson/ci-info", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ci-info", + "url": "https://github.com/watson/ci-info", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cipher-base", + "url": "https://github.com/crypto-browserify/cipher-base#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "circular-json", + "url": "https://github.com/WebReflection/circular-json", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "clap", + "url": "https://github.com/lahmatiy/clap", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "class-utils", + "url": "https://github.com/jonschlinkert/class-utils", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "clean-css", + "url": "https://github.com/jakubpawlowicz/clean-css", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cli-boxes", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cli-cursor", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "cli-width", + "url": "https://github.com/knownasilya/cli-width", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "cliui", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "cliui", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "cliui", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "clone", + "url": "http://paul.vorba.ch/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "co", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "coa", + "url": "http://github.com/veged/coa", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "coa", + "url": "http://github.com/veged/coa", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "code-point-at", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "codecov.io", + "url": "https://github.com/cainus/codecov.io", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "collection-visit", + "url": "https://github.com/jonschlinkert/collection-visit", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "color", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "color", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "color-convert", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "color-name", + "url": "https://github.com/dfcreative/color-name", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "color-name", + "url": "https://github.com/colorjs/color-name", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "color-string", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "color-string", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "colormin", + "url": "https://github.com/ben-eb/colormin", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "colors", + "url": "https://github.com/Marak/colors.js", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "combined-stream", + "url": "https://github.com/felixge/node-combined-stream", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "combined-stream", + "url": "https://github.com/felixge/node-combined-stream", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "commander", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "commander", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "commander", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "commander", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "commondir", + "url": "http://substack.net", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "component-emitter", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "compressible", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "compression", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "concat-map", + "url": "http://substack.net", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "concat-stream", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "concat-stream", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "connect", + "url": "http://tjholowaychuk.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "consola", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "console-browserify", + "url": "https://github.com/Raynos/console-browserify", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "console-control-strings", + "url": "http://re-becca.org/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "consolidate", + "url": "https://github.com/tj/consolidate.js", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "constants-browserify", + "url": "https://github.com/juliangruber/constants-browserify", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "contains-path", + "url": "https://github.com/jonschlinkert/contains-path", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "content-disposition", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "content-type", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "content-type-parser", + "url": "https://domenic.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "convert-source-map", + "url": "https://github.com/thlorenz/convert-source-map", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "convert-source-map", + "url": "https://github.com/thlorenz/convert-source-map", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cookie", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cookie", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cookie-signature", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "copy-concurrently", + "url": "https://www.npmjs.com/package/copy-concurrently", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "copy-descriptor", + "url": "https://github.com/jonschlinkert/copy-descriptor", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "core-js", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "core-js-compat", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "core-js-pure", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "core-util-is", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cosmiconfig", + "url": "https://github.com/davidtheclark/cosmiconfig#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cosmiconfig", + "url": "https://github.com/davidtheclark/cosmiconfig#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "coveralls", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "create-ecdh", + "url": "https://github.com/crypto-browserify/createECDH", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "create-hash", + "url": "https://github.com/crypto-browserify/createHash", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "create-hmac", + "url": "https://github.com/crypto-browserify/createHmac", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cross-spawn", + "url": "http://indigounited.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cross-spawn", + "url": "http://indigounited.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cross-spawn", + "url": "https://github.com/moxystudio/node-cross-spawn", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "cryptiles", + "url": "http://hueniverse.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "cryptiles", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "crypto-browserify", + "url": "https://github.com/crypto-browserify/crypto-browserify", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "css-blank-pseudo", + "url": "https://github.com/csstools/css-blank-pseudo#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "css-color-names", + "url": "http://www.daveeddy.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "css-declaration-sorter", + "url": "https://selwyn.cc/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "css-has-pseudo", + "url": "https://github.com/csstools/css-has-pseudo#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "css-loader", + "url": "https://github.com/webpack-contrib/css-loader", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "css-parse", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "css-prefers-color-scheme", + "url": "https://github.com/csstools/css-prefers-color-scheme#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "css-select", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "css-select", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "css-select-base-adapter", + "url": "https://github.com/nrkn/css-select-base-adapter#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "css-tree", + "url": "https://github.com/csstree/csstree", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "css-tree", + "url": "https://github.com/csstree/csstree", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "css-unit-converter", + "url": "https://github.com/andyjansson/css-unit-converter", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "css-url-regex", + "url": "https://github.com/johnotander/css-url-regex", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "css-what", + "url": "http://feedic.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "cssdb", + "url": "https://github.com/csstools/cssdb#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cssesc", + "url": "https://mths.be/cssesc", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cssesc", + "url": "https://mths.be/cssesc", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cssnano", + "url": "https://github.com/ben-eb/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cssnano", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cssnano-preset-default", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cssnano-util-get-arguments", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cssnano-util-get-match", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cssnano-util-raw-cache", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cssnano-util-same-parent", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "csso", + "url": "https://github.com/css/csso", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "csso", + "url": "https://github.com/css/csso", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cssom", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cssstyle", + "url": "https://github.com/chad3814/CSSStyleDeclaration", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ctype", + "url": "https://github.com/rmustacc/node-ctype", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cuint", + "url": "https://github.com/pierrec/js-cuint", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT*" + }, + "dependency": { + "name": "cyclist", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "dashdash", + "url": "http://trentm.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "data2xml", + "url": "https://github.com/chilts/data2xml", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "date-fns", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "date-now", + "url": "https://github.com/Colingo/date-now", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "de-indent", + "url": "https://github.com/yyx990803/de-indent#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "debug", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "debug", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "debug", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "debug", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "debug", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "debug-log", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "decamelize", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "decode-uri-component", + "url": "github.com/SamVerschueren", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "decouple", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "deep-eql", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "deep-equal", + "url": "http://substack.net", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "deep-extend", + "url": "https://github.com/unclechu/node-deep-extend", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "deep-is", + "url": "http://thlorenz.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "deepmerge", + "url": "https://github.com/TehShrike/deepmerge", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "default-require-extensions", + "url": "github.com/jamestalmage", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "define-properties", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "define-property", + "url": "https://github.com/jonschlinkert/define-property", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "define-property", + "url": "https://github.com/jonschlinkert/define-property", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "define-property", + "url": "https://github.com/jonschlinkert/define-property", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "defined", + "url": "https://github.com/substack/defined", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "defined", + "url": "https://github.com/substack/defined", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "defu", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "del", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "delayed-stream", + "url": "https://github.com/felixge/node-delayed-stream", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "delayed-stream", + "url": "https://github.com/felixge/node-delayed-stream", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "delegates", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "depd", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "des.js", + "url": "https://github.com/indutny/des.js#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "destroy", + "url": "http://jongleberry.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "detect-indent", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "detect-indent", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "detect-libc", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "diff", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "diffie-hellman", + "url": "https://github.com/crypto-browserify/diffie-hellman", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "doctrine", + "url": "https://github.com/eslint/doctrine", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "doctrine", + "url": "https://github.com/eslint/doctrine", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "dom-converter", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "dom-serializer", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "dom-walk", + "url": "https://github.com/Raynos/dom-walk", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "domain-browser", + "url": "https://github.com/bevry/domain-browser", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "domelementtype", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "domelementtype", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "domexception", + "url": "https://domenic.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "domhandler", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "domutils", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "domutils", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "dot-prop", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "duplexer", + "url": "https://github.com/Raynos/duplexer", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "duplexify", + "url": "https://github.com/mafintosh/duplexify", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ecc-jsbn", + "url": "https://github.com/quartzjer/ecc-jsbn", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ee-first", + "url": "http://jongleberry.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "ejs", + "url": "https://github.com/mde/ejs", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "electron-to-chromium", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "elliptic", + "url": "https://github.com/indutny/elliptic", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "emitter", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "emoji-regex", + "url": "https://mths.be/emoji-regex", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "emojis-list", + "url": "https://github.com/Kikobeats/emojis-list", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "encodeurl", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "end-of-stream", + "url": "https://github.com/mafintosh/end-of-stream", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "enhanced-resolve", + "url": "http://github.com/webpack/enhanced-resolve", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "enhanced-resolve", + "url": "http://github.com/webpack/enhanced-resolve", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "entities", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "entities", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "errno", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "error-ex", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "error-stack-parser", + "url": "https://www.stacktracejs.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "es-abstract", + "url": "http://ljharb.codes", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "es-to-primitive", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "es6-promise", + "url": "Conversion to ES6 API by Jake Archibald", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "escape-html", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "escape-string-regexp", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "escodegen", + "url": "http://github.com/estools/escodegen", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "eslint", + "url": "https://eslint.org/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "eslint-config-standard", + "url": "https://github.com/feross/eslint-config-standard", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "eslint-import-resolver-node", + "url": "https://github.com/benmosher/eslint-plugin-import", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "eslint-loader", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "eslint-module-utils", + "url": "https://github.com/benmosher/eslint-plugin-import#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "eslint-plugin-html", + "url": "https://github.com/BenoitZugmeyer/eslint-plugin-html", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "eslint-plugin-import", + "url": "https://github.com/benmosher/eslint-plugin-import", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "eslint-plugin-node", + "url": "https://github.com/mysticatea/eslint-plugin-node#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "eslint-plugin-promise", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "eslint-plugin-standard", + "url": "https://github.com/xjamundx/eslint-plugin-standard#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "eslint-scope", + "url": "http://github.com/eslint/eslint-scope", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "eslint-scope", + "url": "http://github.com/eslint/eslint-scope", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "eslint-visitor-keys", + "url": "https://github.com/eslint/eslint-visitor-keys#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "esm", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "espree", + "url": "https://github.com/eslint/espree", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "esprima", + "url": "http://esprima.org/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "esprima", + "url": "http://esprima.org/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "esprima", + "url": "http://esprima.org/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "esquery", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "esrecurse", + "url": "https://github.com/estools/esrecurse", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "estraverse", + "url": "https://github.com/estools/estraverse", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "esutils", + "url": "https://github.com/estools/esutils", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "etag", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "eventemitter3", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "events", + "url": "http://jeditoolkit.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "eventsource-polyfill", + "url": "https://github.com/amvtek/EventSource", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "evp_bytestokey", + "url": "https://github.com/crypto-browserify/EVP_BytesToKey", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "execa", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "execa", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "exif-parser", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "exit", + "url": "https://github.com/cowboy/node-exit", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "expand-brackets", + "url": "https://github.com/jonschlinkert/expand-brackets", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "expand-brackets", + "url": "https://github.com/jonschlinkert/expand-brackets", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "expand-range", + "url": "https://github.com/jonschlinkert/expand-range", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "express", + "url": "http://expressjs.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "extend", + "url": "http://www.justmoon.net", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "extend-shallow", + "url": "https://github.com/jonschlinkert/extend-shallow", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "extend-shallow", + "url": "https://github.com/jonschlinkert/extend-shallow", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "external-editor", + "url": "https://github.com/mrkmg/node-external-editor#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "extglob", + "url": "https://github.com/jonschlinkert/extglob", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "extglob", + "url": "https://github.com/micromatch/extglob", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "extract-css-chunks-webpack-plugin", + "url": "http://github.com/faceyspacey/extract-css-chunks-webpack-plugin", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "extsprintf", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "extsprintf", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "fast-deep-equal", + "url": "https://github.com/epoberezkin/fast-deep-equal#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "fast-deep-equal", + "url": "https://github.com/epoberezkin/fast-deep-equal#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "fast-json-stable-stringify", + "url": "https://github.com/epoberezkin/fast-json-stable-stringify", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "fast-levenshtein", + "url": "http://www.hiddentao.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "figgy-pudding", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "figures", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "figures", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "file-entry-cache", + "url": "http://royriojas.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "file-loader", + "url": "https://github.com/webpack-contrib/file-loader", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "file-type", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "filename-regex", + "url": "https://github.com/regexhq/filename-regex", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "filesize", + "url": "https://filesizejs.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "fill-range", + "url": "https://github.com/jonschlinkert/fill-range", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "fill-range", + "url": "https://github.com/jonschlinkert/fill-range", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "fill-range", + "url": "https://github.com/jonschlinkert/fill-range", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "finalhandler", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "find-cache-dir", + "url": "github.com/jamestalmage", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "find-cache-dir", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "find-up", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "find-up", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "find-up", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "flat-cache", + "url": "http://royriojas.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "flatten", + "url": "http://jesusabdullah.net", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "flush-write-stream", + "url": "https://github.com/mafintosh/flush-write-stream", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "follow-redirects", + "url": "https://github.com/olalonde/follow-redirects", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "for-each", + "url": "https://github.com/Raynos/for-each", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "for-in", + "url": "https://github.com/jonschlinkert/for-in", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "for-own", + "url": "https://github.com/jonschlinkert/for-own", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "foreground-child", + "url": "https://github.com/tapjs/foreground-child#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache*" + }, + "dependency": { + "name": "forever-agent", + "url": "http://www.futurealoof.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "forever-agent", + "url": "http://www.futurealoof.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "form-data", + "url": "http://debuggable.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "form-data", + "url": "http://debuggable.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "forwarded", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "fragment-cache", + "url": "https://github.com/jonschlinkert/fragment-cache", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "fresh", + "url": "http://tjholowaychuk.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "from2", + "url": "https://github.com/hughsk/from2", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "front-matter", + "url": "https://github.com/jxson/front-matter", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "fs-extra", + "url": "https://github.com/jprichardson/node-fs-extra", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "fs-extra", + "url": "https://github.com/jprichardson/node-fs-extra", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "fs-extra", + "url": "https://github.com/jprichardson/node-fs-extra", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "fs-extra", + "url": "https://github.com/jprichardson/node-fs-extra", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "fs-extra", + "url": "https://github.com/jprichardson/node-fs-extra", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "fs-minipass", + "url": "https://github.com/npm/fs-minipass#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "fs-write-stream-atomic", + "url": "https://github.com/npm/fs-write-stream-atomic", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "fs.realpath", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "unknown" + }, + "dependency": { + "name": "fsevents", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "unknown" + }, + "dependency": { + "name": "fsevents", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "function-bind", + "url": "https://github.com/Raynos/function-bind", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "functional-red-black-tree", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "gauge", + "url": "https://github.com/iarna/gauge", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "get-caller-file", + "url": "https://github.com/stefanpenner/get-caller-file#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "get-func-name", + "url": "http://alogicalparadox.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "get-stream", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "get-stream", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "get-value", + "url": "https://github.com/jonschlinkert/get-value", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "getpass", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "glob", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "glob", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "glob", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "glob", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "glob-base", + "url": "https://github.com/jonschlinkert/glob-base", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "glob-parent", + "url": "https://github.com/es128/glob-parent", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "glob-parent", + "url": "https://github.com/es128/glob-parent", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "glob-parent", + "url": "https://gulpjs.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "global", + "url": "https://github.com/Raynos/global", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "globals", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "globals", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "globals", + "url": "http://sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "globby", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "graceful-fs", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "graceful-fs", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "graceful-readlink", + "url": "https://github.com/zhiyelee/graceful-readlink", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "growl", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "gzip-size", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "handlebars", + "url": "http://www.handlebarsjs.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "har-schema", + "url": "https://github.com/ahmadnassri/har-schema", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "har-validator", + "url": "https://github.com/ahmadnassri/har-validator", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "hard-source-webpack-plugin", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "has", + "url": "https://github.com/tarruda/has", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "has-ansi", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "has-flag", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "has-flag", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "has-symbols", + "url": "http://ljharb.codes", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "has-unicode", + "url": "https://github.com/iarna/has-unicode", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "has-value", + "url": "https://github.com/jonschlinkert/has-value", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "has-value", + "url": "https://github.com/jonschlinkert/has-value", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "has-values", + "url": "https://github.com/jonschlinkert/has-values", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "has-values", + "url": "https://github.com/jonschlinkert/has-values", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "hash-base", + "url": "https://github.com/crypto-browserify/hash-base", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "hash-sum", + "url": "https://github.com/bevacqua/hash-sum", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "hash.js", + "url": "https://github.com/indutny/hash.js", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "hawk", + "url": "http://hueniverse.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "hawk", + "url": "http://hueniverse.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "he", + "url": "https://mths.be/he", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "he", + "url": "https://mths.be/he", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "hex-color-regex", + "url": "http://www.tunnckocore.tk", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "highlight.js", + "url": "https://highlightjs.org/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "hmac-drbg", + "url": "https://github.com/indutny/hmac-drbg#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "SEE LICENSE IN LICENSE" + }, + "dependency": { + "name": "hoek", + "url": "http://hueniverse.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "hoek", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "hoopy", + "url": "https://gitlab.com/philbooth/hoopy#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "hosted-git-info", + "url": "https://github.com/npm/hosted-git-info", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "hsl-regex", + "url": "https://github.com/regexps/hsl-regex", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "hsla-regex", + "url": "https://github.com/regexps/hsla-regex", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "html-comment-regex", + "url": "https://github.com/stevemao/html-comment-regex", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "html-encoding-sniffer", + "url": "https://domenic.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "html-entities", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "html-minifier", + "url": "https://kangax.github.io/html-minifier/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "html-minifier", + "url": "https://kangax.github.io/html-minifier/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "html-tags", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "html-webpack-plugin", + "url": "https://github.com/jantimon/html-webpack-plugin", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "htmlparser2", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "htmlparser2", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "http-errors", + "url": "http://jongleberry.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "http-proxy", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "http-proxy-middleware", + "url": "https://github.com/chimurai/http-proxy-middleware", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "http-signature", + "url": "https://github.com/joyent/node-http-signature/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "http-signature", + "url": "https://github.com/joyent/node-http-signature/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "https-browserify", + "url": "https://github.com/substack/https-browserify", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "husky", + "url": "https://github.com/typicode/husky", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "iconv-lite", + "url": "https://github.com/ashtuchkin/iconv-lite", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "iconv-lite", + "url": "https://github.com/ashtuchkin/iconv-lite", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "icss-replace-symbols", + "url": "https://github.com/css-modules/icss-replace-symbols#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "icss-utils", + "url": "https://github.com/css-modules/icss-utils#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "ieee754", + "url": "http://feross.org", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "iferr", + "url": "https://github.com/shesek/iferr", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ignore", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ignore", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "ignore-walk", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "import-cwd", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "import-fresh", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "import-from", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "imurmurhash", + "url": "https://github.com/jensyt/imurmurhash-js", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "indexes-of", + "url": "https://github.com/dominictarr/indexes-of", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT*" + }, + "dependency": { + "name": "indexof", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "inflight", + "url": "https://github.com/isaacs/inflight", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "inherits", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "inherits", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "ini", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "inquirer", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "interpret", + "url": "https://github.com/tkellen/node-interpret", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "invariant", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "invariant", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "invert-kv", + "url": "http://sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ip", + "url": "https://github.com/indutny/node-ip", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ip-regex", + "url": "http://sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ipaddr.js", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-absolute-url", + "url": "http://sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-accessor-descriptor", + "url": "https://github.com/jonschlinkert/is-accessor-descriptor", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-accessor-descriptor", + "url": "https://github.com/jonschlinkert/is-accessor-descriptor", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-arrayish", + "url": "http://github.com/qix-", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-arrayish", + "url": "http://github.com/qix-", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-binary-path", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-binary-path", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-buffer", + "url": "http://feross.org/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-callable", + "url": "http://ljharb.codes", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-ci", + "url": "https://github.com/watson/is-ci", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-color-stop", + "url": "https://github.com/pigcan/is-color-stop#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-data-descriptor", + "url": "https://github.com/jonschlinkert/is-data-descriptor", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-data-descriptor", + "url": "https://github.com/jonschlinkert/is-data-descriptor", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-date-object", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-descriptor", + "url": "https://github.com/jonschlinkert/is-descriptor", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-descriptor", + "url": "https://github.com/jonschlinkert/is-descriptor", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-directory", + "url": "https://github.com/jonschlinkert/is-directory", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-dotfile", + "url": "https://github.com/jonschlinkert/is-dotfile", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-equal-shallow", + "url": "https://github.com/jonschlinkert/is-equal-shallow", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-extendable", + "url": "https://github.com/jonschlinkert/is-extendable", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-extendable", + "url": "https://github.com/jonschlinkert/is-extendable", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-extglob", + "url": "https://github.com/jonschlinkert/is-extglob", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-extglob", + "url": "https://github.com/jonschlinkert/is-extglob", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-finite", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-fullwidth-code-point", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-fullwidth-code-point", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-function", + "url": "https://github.com/grncdr/js-is-function", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-glob", + "url": "https://github.com/jonschlinkert/is-glob", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-glob", + "url": "https://github.com/jonschlinkert/is-glob", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-glob", + "url": "https://github.com/micromatch/is-glob", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-https", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-number", + "url": "https://github.com/jonschlinkert/is-number", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-number", + "url": "https://github.com/jonschlinkert/is-number", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-number", + "url": "https://github.com/jonschlinkert/is-number", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-number", + "url": "https://github.com/jonschlinkert/is-number", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-obj", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-path-cwd", + "url": "http://sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-path-in-cwd", + "url": "http://sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-path-inside", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-plain-obj", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-plain-object", + "url": "https://github.com/jonschlinkert/is-plain-object", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-posix-bracket", + "url": "https://github.com/jonschlinkert/is-posix-bracket", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-primitive", + "url": "https://github.com/jonschlinkert/is-primitive", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-promise", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-regex", + "url": "https://github.com/ljharb/is-regex", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "is-resolvable", + "url": "https://github.com/shinnn", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-retry-allowed", + "url": "github.com/floatdrop", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-stream", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-svg", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-svg", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-symbol", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-typedarray", + "url": "https://github.com/hughsk/is-typedarray", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-utf8", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-windows", + "url": "https://github.com/jonschlinkert/is-windows", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-wsl", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "isarray", + "url": "https://github.com/juliangruber/isarray", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "isarray", + "url": "https://github.com/juliangruber/isarray", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "isexe", + "url": "https://github.com/isaacs/isexe#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "isobject", + "url": "https://github.com/jonschlinkert/isobject", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "isobject", + "url": "https://github.com/jonschlinkert/isobject", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "isstream", + "url": "https://github.com/rvagg/isstream", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "istanbul-lib-coverage", + "url": "https://github.com/istanbuljs/istanbuljs", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "istanbul-lib-hook", + "url": "https://github.com/istanbuljs/istanbuljs#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "istanbul-lib-instrument", + "url": "https://github.com/istanbuljs/istanbuljs", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "istanbul-lib-report", + "url": "https://github.com/istanbuljs/istanbuljs", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "istanbul-lib-source-maps", + "url": "https://github.com/istanbuljs/istanbuljs#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "istanbul-reports", + "url": "https://github.com/istanbuljs/istanbuljs", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "jimp", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "jpeg-js", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "js-base64", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "js-levenshtein", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "js-tokens", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "js-tokens", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "js-yaml", + "url": "https://github.com/nodeca/js-yaml", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "js-yaml", + "url": "https://github.com/nodeca/js-yaml", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "js-yaml", + "url": "https://github.com/nodeca/js-yaml", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "jsbn", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "jsdom", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "jsesc", + "url": "http://mths.be/jsesc", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "jsesc", + "url": "https://mths.be/jsesc", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "jsesc", + "url": "https://mths.be/jsesc", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "json-parse-better-errors", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "BSD*" + }, + "dependency": { + "name": "json-schema", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "json-schema-traverse", + "url": "https://github.com/epoberezkin/json-schema-traverse#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "json-schema-traverse", + "url": "https://github.com/epoberezkin/json-schema-traverse#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "json-stable-stringify-without-jsonify", + "url": "https://github.com/samn/json-stable-stringify", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "json-stringify-safe", + "url": "https://github.com/isaacs/json-stringify-safe", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "json3", + "url": "http://bestiejs.github.io/json3", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "json5", + "url": "http://json5.org/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "json5", + "url": "http://json5.org/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "json5", + "url": "http://json5.org/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "jsonfile", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "jsonfile", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "jsonfile", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Public Domain" + }, + "dependency": { + "name": "jsonify", + "url": "http://crockford.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "jsprim", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "kind-of", + "url": "https://github.com/jonschlinkert/kind-of", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "kind-of", + "url": "https://github.com/jonschlinkert/kind-of", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "kind-of", + "url": "https://github.com/jonschlinkert/kind-of", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "kind-of", + "url": "https://github.com/jonschlinkert/kind-of", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "klaw", + "url": "https://github.com/jprichardson/node-klaw#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "last-call-webpack-plugin", + "url": "http://github.com/NMFR/last-call-webpack-plugin", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "launch-editor", + "url": "https://github.com/yyx990803/launch-editor#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "launch-editor-middleware", + "url": "https://github.com/yyx990803/launch-editor#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lazy-cache", + "url": "https://github.com/jonschlinkert/lazy-cache", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lcid", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "lcov-parse", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "WTFPL" + }, + "dependency": { + "name": "left-pad", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "levn", + "url": "https://github.com/gkz/levn", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "linkify-it", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "load-bmfont", + "url": "https://github.com/Jam3/load-bmfont", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "load-json-file", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "load-json-file", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "loader-fs-cache", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "loader-runner", + "url": "https://github.com/webpack/loader-runner#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "loader-utils", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "loader-utils", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "locate-path", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "locate-path", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash._baseassign", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash._basecopy", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash._basecreate", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash._getnative", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash._isiterateecall", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash._reinterpolate", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash.assign", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash.clonedeep", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash.cond", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash.create", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash.isarguments", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash.isarray", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash.isplainobject", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash.kebabcase", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash.keys", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash.memoize", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash.merge", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash.sortby", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash.template", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash.templatesettings", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash.uniq", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash.uniqueid", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "log-driver", + "url": "https://github.com/cainus/logdriver", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "longest", + "url": "https://github.com/jonschlinkert/longest", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "loose-envify", + "url": "https://github.com/zertosh/loose-envify", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lower-case", + "url": "https://github.com/blakeembrey/lower-case", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "lru-cache", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "lru-cache", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "lru-cache", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "make-dir", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "make-dir", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mamacro", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "map-cache", + "url": "https://github.com/jonschlinkert/map-cache", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "map-visit", + "url": "https://github.com/jonschlinkert/map-visit", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "markdown-it", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Unlicense" + }, + "dependency": { + "name": "markdown-it-anchor", + "url": "https://github.com/valeriangalliat/markdown-it-anchor", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "math-expression-evaluator", + "url": "https://github.com/redhivesoftware/math-expression-evaluator#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "math-random", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "md5-hex", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "md5-o-matic", + "url": "https://github.com/trentmillar/md5-o-matic", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "md5.js", + "url": "https://github.com/crypto-browserify/md5.js", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Mozilla Public License 2.0", + "url": "https://www.mozilla.org/media/MPL/2.0/index.815ca599c9df.txt" + }, + "dependency": { + "name": "mdn-data", + "url": "https://developer.mozilla.org/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mdurl", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "media-typer", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mem", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "memory-fs", + "url": "https://github.com/webpack/memory-fs", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "merge-descriptors", + "url": "http://jongleberry.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "merge-source-map", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "methods", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "micromatch", + "url": "https://github.com/jonschlinkert/micromatch", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "micromatch", + "url": "https://github.com/micromatch/micromatch", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "miller-rabin", + "url": "https://github.com/indutny/miller-rabin", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mime", + "url": "http://github.com/broofa", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mime", + "url": "http://github.com/broofa", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mime", + "url": "http://github.com/broofa", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mime-db", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mime-db", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mime-types", + "url": "http://jongleberry.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mime-types", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mime-types", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mimic-fn", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "min-document", + "url": "https://github.com/Raynos/min-document", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "minimalistic-assert", + "url": "https://github.com/calvinmetcalf/minimalistic-assert", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "minimalistic-crypto-utils", + "url": "https://github.com/indutny/minimalistic-crypto-utils#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "minimatch", + "url": "http://blog.izs.me", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "minimist", + "url": "https://github.com/substack/minimist", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "minimist", + "url": "https://github.com/substack/minimist", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "minimist", + "url": "https://github.com/substack/minimist", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "minipass", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "minizlib", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "mississippi", + "url": "https://github.com/maxogden/mississippi#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mixin-deep", + "url": "https://github.com/jonschlinkert/mixin-deep", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mkdirp", + "url": "http://substack.net", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mocha", + "url": "https://mochajs.org/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mocha-webpack", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "moment", + "url": "http://momentjs.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "move-concurrently", + "url": "https://www.npmjs.com/package/move-concurrently", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ms", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ms", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mustache", + "url": "https://github.com/janl/mustache.js", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "mute-stream", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "nan", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "nanomatch", + "url": "https://github.com/micromatch/nanomatch", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "natural-compare", + "url": "https://github.com/litejs/natural-compare-lite", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "needle", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "negotiator", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "neo-async", + "url": "https://github.com/suguru03/neo-async", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "nice-try", + "url": "https://github.com/electerious/nice-try", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "no-case", + "url": "https://github.com/blakeembrey/no-case", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "node-fetch", + "url": "https://github.com/bitinn/node-fetch", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "node-libs-browser", + "url": "http://github.com/webpack/node-libs-browser", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "node-object-hash", + "url": "https://github.com/SkeLLLa/node-object-hash", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "node-pre-gyp", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "node-releases", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "node-uuid", + "url": "https://github.com/broofa/node-uuid", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "nopt", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "normalize-package-data", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "normalize-path", + "url": "https://github.com/jonschlinkert/normalize-path", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "normalize-path", + "url": "https://github.com/jonschlinkert/normalize-path", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "normalize-path", + "url": "https://github.com/jonschlinkert/normalize-path", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "normalize-range", + "url": "github.com/jamestalmage", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "normalize-url", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "normalize-url", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "normalize-url", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "normalize.css", + "url": "https://necolas.github.io/normalize.css", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "npm-bundled", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "npm-packlist", + "url": "https://www.npmjs.com/package/npm-packlist", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "npm-run-path", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "npmlog", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "nth-check", + "url": "https://github.com/fb55/nth-check", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "num2fraction", + "url": "http://iyunlu.com/view", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "number-is-nan", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "nuxt", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "nuxtent", + "url": "https://github.com/nuxt-community/nuxtent-module#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "nwmatcher", + "url": "http://javascript.nwbox.com/NWMatcher/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "nyc", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache*" + }, + "dependency": { + "name": "oauth-sign", + "url": "http://www.futurealoof.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "oauth-sign", + "url": "http://www.futurealoof.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "object-assign", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "object-copy", + "url": "https://github.com/jonschlinkert/object-copy", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "object-hash", + "url": "https://github.com/puleos/object-hash", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "object-keys", + "url": "http://ljharb.codes", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "object-visit", + "url": "https://github.com/jonschlinkert/object-visit", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "object.getownpropertydescriptors", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "object.omit", + "url": "https://github.com/jonschlinkert/object.omit", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "object.pick", + "url": "https://github.com/jonschlinkert/object.pick", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "object.values", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "on-finished", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "on-headers", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "once", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "onetime", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "(WTFPL OR MIT)" + }, + "dependency": { + "name": "opener", + "url": "https://domenic.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "optimist", + "url": "http://substack.net", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "optimize-css-assets-webpack-plugin", + "url": "http://github.com/NMFR/optimize-css-assets-webpack-plugin", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "optionator", + "url": "https://github.com/gkz/optionator", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "os-browserify", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "os-homedir", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "os-locale", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "os-locale", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "os-tmpdir", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "osenv", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "p-finally", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "p-limit", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "p-limit", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "p-locate", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "p-locate", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "p-try", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "p-try", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "(MIT AND Zlib)" + }, + "dependency": { + "name": "pako", + "url": "https://github.com/nodeca/pako", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "parallel-transform", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "param-case", + "url": "https://github.com/blakeembrey/param-case", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "parse-asn1", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "parse-bmfont-ascii", + "url": "https://github.com/mattdesl/parse-bmfont-ascii", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "parse-bmfont-binary", + "url": "https://github.com/Jam3/parse-bmfont-binary", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "parse-bmfont-xml", + "url": "https://github.com/mattdesl/parse-bmfont-xml", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "parse-glob", + "url": "https://github.com/jonschlinkert/parse-glob", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "parse-headers", + "url": "https://github.com/kesla/parse-headers", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "parse-json", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "parse-json", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "parse5", + "url": "https://github.com/inikulin/parse5", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "parseurl", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pascalcase", + "url": "https://github.com/jonschlinkert/pascalcase", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "path-browserify", + "url": "https://github.com/substack/path-browserify", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "path-dirname", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "path-exists", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "path-exists", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "path-is-absolute", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "(WTFPL OR MIT)" + }, + "dependency": { + "name": "path-is-inside", + "url": "https://domenic.me", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "path-key", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "path-parse", + "url": "https://github.com/jbgutierrez/path-parse#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "path-to-regexp", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "path-to-regexp", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "path-type", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "path-type", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pathval", + "url": "https://github.com/chaijs/pathval", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pbkdf2", + "url": "https://github.com/crypto-browserify/pbkdf2", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "performance-now", + "url": "https://github.com/braveg1rl/performance-now", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "picomatch", + "url": "https://github.com/micromatch/picomatch", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pify", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pify", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pify", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pinkie", + "url": "github.com/floatdrop", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pinkie-promise", + "url": "github.com/floatdrop", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "pixelmatch", + "url": "https://github.com/mapbox/pixelmatch#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pkg-dir", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pkg-dir", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pluralize", + "url": "http://blakeembrey.me", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pn", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pngjs", + "url": "https://github.com/lukeapage/pngjs", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "popper.js", + "url": "https://popper.js.org/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "posix-character-classes", + "url": "https://github.com/jonschlinkert/posix-character-classes", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss", + "url": "http://postcss.org/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss", + "url": "https://postcss.org/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-attribute-case-insensitive", + "url": "https://github.com/Semigradsky/postcss-attribute-case-insensitive#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-calc", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-calc", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "postcss-color-functional-notation", + "url": "https://github.com/jonathantneal/postcss-color-functional-notation#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "postcss-color-gray", + "url": "https://github.com/postcss/postcss-color-gray#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-color-hex-alpha", + "url": "https://github.com/postcss/postcss-color-hex-alpha#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "postcss-color-mod-function", + "url": "https://github.com/jonathantneal/postcss-color-mod-function#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-color-rebeccapurple", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-colormin", + "url": "https://github.com/ben-eb/postcss-colormin", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-colormin", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-convert-values", + "url": "https://github.com/ben-eb/postcss-convert-values", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-convert-values", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-custom-media", + "url": "https://github.com/postcss/postcss-custom-media#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-custom-properties", + "url": "https://github.com/postcss/postcss-custom-properties#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-custom-selectors", + "url": "https://github.com/postcss/postcss-custom-selectors#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "postcss-dir-pseudo-class", + "url": "https://github.com/jonathantneal/postcss-dir-pseudo-class#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-discard-comments", + "url": "https://github.com/ben-eb/postcss-discard-comments", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-discard-comments", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-discard-duplicates", + "url": "https://github.com/ben-eb/postcss-discard-duplicates", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-discard-duplicates", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-discard-empty", + "url": "https://github.com/ben-eb/postcss-discard-empty", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-discard-empty", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-discard-overridden", + "url": "https://github.com/Justineo/postcss-discard-overridden", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-discard-overridden", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-discard-unused", + "url": "https://github.com/ben-eb/postcss-discard-unused", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "postcss-double-position-gradients", + "url": "https://github.com/jonathantneal/postcss-double-position-gradients#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "postcss-env-function", + "url": "https://github.com/jonathantneal/postcss-env-function#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-filter-plugins", + "url": "https://github.com/postcss/postcss-filter-plugins", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "postcss-focus-visible", + "url": "https://github.com/jonathantneal/postcss-focus-visible#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "postcss-focus-within", + "url": "https://github.com/jonathantneal/postcss-focus-within#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-font-variant", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "postcss-gap-properties", + "url": "https://github.com/jonathantneal/postcss-gap-properties#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "postcss-image-set-function", + "url": "https://github.com/jonathantneal/postcss-image-set-function#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-import", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-import-resolver", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-initial", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "postcss-lab-function", + "url": "https://github.com/jonathantneal/postcss-lab-function#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-load-config", + "url": "https://github.com/michael-ciniawsky/postcss-load-config#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-loader", + "url": "https://github.com/postcss/postcss-loader#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "postcss-logical", + "url": "https://github.com/jonathantneal/postcss-logical#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-media-minmax", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-merge-idents", + "url": "https://github.com/ben-eb/postcss-merge-idents", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-merge-longhand", + "url": "https://github.com/ben-eb/postcss-merge-longhand", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-merge-longhand", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-merge-rules", + "url": "https://github.com/ben-eb/postcss-merge-rules", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-merge-rules", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-message-helpers", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-minify-font-values", + "url": "https://github.com/TrySound/postcss-minify-font-values", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-minify-font-values", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-minify-gradients", + "url": "https://github.com/ben-eb/postcss-minify-gradients", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-minify-gradients", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-minify-params", + "url": "https://github.com/ben-eb/postcss-minify-params", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-minify-params", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-minify-selectors", + "url": "https://github.com/ben-eb/postcss-minify-selectors", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-minify-selectors", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "postcss-modules-extract-imports", + "url": "https://github.com/css-modules/postcss-modules-extract-imports", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-modules-local-by-default", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "postcss-modules-scope", + "url": "https://github.com/css-modules/postcss-modules-scope", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "postcss-modules-values", + "url": "https://github.com/css-modules/postcss-modules-values#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "postcss-nesting", + "url": "https://github.com/jonathantneal/postcss-nesting#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-normalize-charset", + "url": "https://github.com/ben-eb/postcss-charset", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-normalize-charset", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-normalize-display-values", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-normalize-positions", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-normalize-repeat-style", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-normalize-string", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-normalize-timing-functions", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-normalize-unicode", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-normalize-url", + "url": "https://github.com/ben-eb/postcss-normalize-url", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-normalize-url", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-normalize-whitespace", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-ordered-values", + "url": "https://github.com/ben-eb/postcss-ordered-values", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-ordered-values", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "postcss-overflow-shorthand", + "url": "https://github.com/jonathantneal/postcss-overflow-shorthand#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-page-break", + "url": "https://github.com/shrpne/postcss-page-break", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "postcss-place", + "url": "https://github.com/jonathantneal/postcss-place#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "postcss-preset-env", + "url": "https://github.com/csstools/postcss-preset-env#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "postcss-pseudo-class-any-link", + "url": "https://github.com/jonathantneal/postcss-pseudo-class-any-link#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-reduce-idents", + "url": "https://github.com/ben-eb/postcss-reduce-idents", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-reduce-initial", + "url": "https://github.com/ben-eb/postcss-reduce-initial", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-reduce-initial", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-reduce-transforms", + "url": "https://github.com/ben-eb/postcss-reduce-transforms", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-reduce-transforms", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-replace-overflow-wrap", + "url": "https://github.com/MattDiMu/postcss-replace-overflow-wrap", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-selector-matches", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-selector-not", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-selector-parser", + "url": "https://github.com/postcss/postcss-selector-parser", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-selector-parser", + "url": "https://github.com/postcss/postcss-selector-parser", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-selector-parser", + "url": "https://github.com/postcss/postcss-selector-parser", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-selector-parser", + "url": "https://github.com/postcss/postcss-selector-parser", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-svgo", + "url": "https://github.com/ben-eb/postcss-svgo", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-svgo", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-unique-selectors", + "url": "https://github.com/ben-eb/postcss-unique-selectors", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-unique-selectors", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-url", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-value-parser", + "url": "https://github.com/TrySound/postcss-value-parser", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-values-parser", + "url": "shellscape", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-zindex", + "url": "https://github.com/ben-eb/postcss-zindex", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "prelude-ls", + "url": "http://preludels.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "prepend-http", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "prepend-http", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "preserve", + "url": "https://github.com/jonschlinkert/preserve", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "prettier", + "url": "https://prettier.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pretty-bytes", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pretty-error", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pretty-time", + "url": "https://github.com/jonschlinkert/pretty-time", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "private", + "url": "http://github.com/benjamn/private", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "process", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "process", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "process-nextick-args", + "url": "https://github.com/calvinmetcalf/process-nextick-args", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "progress", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "promise-inflight", + "url": "https://github.com/iarna/promise-inflight#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "proper-lockfile", + "url": "https://github.com/moxystudio/node-proper-lockfile", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "proxy-addr", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "prr", + "url": "https://github.com/rvagg/prr", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "pseudomap", + "url": "https://github.com/isaacs/pseudomap#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "public-encrypt", + "url": "https://github.com/crypto-browserify/publicEncrypt", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pump", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pump", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pumpify", + "url": "https://github.com/mafintosh/pumpify", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "punycode", + "url": "https://mths.be/punycode", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "punycode", + "url": "https://mths.be/punycode", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "punycode", + "url": "https://mths.be/punycode", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "q", + "url": "https://github.com/kriskowal/q", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "SEE LICENSE IN LICENSE" + }, + "dependency": { + "name": "qs", + "url": "https://github.com/hapijs/qs", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "qs", + "url": "https://github.com/ljharb/qs", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "qs", + "url": "https://github.com/ljharb/qs", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "query-string", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "query-string", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "querystring", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "querystring-es3", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "randomatic", + "url": "https://github.com/jonschlinkert/randomatic", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "randombytes", + "url": "https://github.com/crypto-browserify/randombytes", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "randomfill", + "url": "https://github.com/crypto-browserify/randomfill", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "range-parser", + "url": "http://tjholowaychuk.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "raw-body", + "url": "http://jongleberry.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "raw-loader", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "(BSD-2-Clause OR MIT OR Apache-2.0)" + }, + "dependency": { + "name": "rc", + "url": "dominictarr.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "read-cache", + "url": "https://github.com/TrySound/read-cache#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "read-chunk", + "url": "http://sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "read-pkg", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "read-pkg", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "read-pkg-up", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "read-pkg-up", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "readable-stream", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "readable-stream", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "readable-stream", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "readdirp", + "url": "https://github.com/paulmillr/readdirp", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "readdirp", + "url": "https://github.com/paulmillr/readdirp", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "reduce-css-calc", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "reduce-function-call", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "regenerate", + "url": "https://mths.be/regenerate", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "regenerate-unicode-properties", + "url": "https://github.com/mathiasbynens/regenerate-unicode-properties", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "regenerator-runtime", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "regenerator-runtime", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "regenerator-transform", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "regex-cache", + "url": "https://github.com/jonschlinkert/regex-cache", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "regex-not", + "url": "https://github.com/jonschlinkert/regex-not", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "regexp-tree", + "url": "https://github.com/DmitrySoshnikov/regexp-tree", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "regexpu-core", + "url": "https://mths.be/regexpu", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "regjsgen", + "url": "https://github.com/bnjmnt4n/regjsgen", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "regjsparser", + "url": "https://github.com/jviereck/regjsparser", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "relateurl", + "url": "https://github.com/stevenvachon/relateurl", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "remove-trailing-separator", + "url": "https://github.com/darsain/remove-trailing-separator#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "renderkid", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "repeat-element", + "url": "https://github.com/jonschlinkert/repeat-element", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "repeat-string", + "url": "https://github.com/jonschlinkert/repeat-string", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "repeating", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "request", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "request", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "request-promise-core", + "url": "https://github.com/request/promise-core#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "request-promise-native", + "url": "https://github.com/request/request-promise-native#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "require-directory", + "url": "https://github.com/troygoode/node-require-directory/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "require-from-string", + "url": "github.com/floatdrop", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "require-main-filename", + "url": "https://github.com/yargs/require-main-filename#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "require-uncached", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "requires-port", + "url": "https://github.com/unshiftio/requires-port", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "resolve", + "url": "http://substack.net", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "resolve", + "url": "http://substack.net", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "resolve-from", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "resolve-from", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "resolve-from", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "resolve-url", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "restore-cursor", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "resumer", + "url": "https://github.com/substack/resumer", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ret", + "url": "https://github.com/fent", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "retry", + "url": "https://github.com/tim-kos/node-retry", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "rgb-regex", + "url": "https://github.com/regexps/rgb-regex", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "rgba-regex", + "url": "https://github.com/johnotander/rgba-regex", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "right-align", + "url": "https://github.com/jonschlinkert/right-align", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "rimraf", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "rimraf", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ripemd160", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "run-async", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "run-queue", + "url": "https://npmjs.com/package/run-queue", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "rupture", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "rx-lite", + "url": "https://github.com/Reactive-Extensions/RxJS", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "rx-lite-aggregates", + "url": "https://github.com/Reactive-Extensions/RxJS", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "safe-buffer", + "url": "https://github.com/feross/safe-buffer", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "safe-regex", + "url": "https://github.com/substack/safe-regex", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "safer-buffer", + "url": "https://github.com/ChALkeR", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "BSD", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + }, + "dependency": { + "name": "sax", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "sax", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "schema-utils", + "url": "https://github.com/webpack-contrib/schema-utils", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "semver", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "semver", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "semver", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "semver", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "send", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "serialize-javascript", + "url": "https://github.com/yahoo/serialize-javascript", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "serve-placeholder", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "serve-static", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "server-destroy", + "url": "http://blog.izs.me", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "set-blocking", + "url": "https://github.com/yargs/set-blocking#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "set-value", + "url": "https://github.com/jonschlinkert/set-value", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "set-value", + "url": "https://github.com/jonschlinkert/set-value", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "setimmediate", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "setprototypeof", + "url": "https://github.com/wesleytodd/setprototypeof", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "(MIT AND BSD-3-Clause)" + }, + "dependency": { + "name": "sha.js", + "url": "https://github.com/crypto-browserify/sha.js", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "shebang-command", + "url": "github.com/kevva", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "shebang-regex", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "shell-quote", + "url": "http://substack.net", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "signal-exit", + "url": "https://github.com/tapjs/signal-exit", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "simple-swizzle", + "url": "http://github.com/qix-", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "sitemap", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "slice-ansi", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "slide", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "slideout", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "snapdragon", + "url": "https://github.com/jonschlinkert/snapdragon", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "snapdragon-node", + "url": "https://github.com/jonschlinkert/snapdragon-node", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "snapdragon-util", + "url": "https://github.com/jonschlinkert/snapdragon-util", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "sntp", + "url": "http://hueniverse.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "sntp", + "url": "http://hueniverse.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "sort-keys", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "sort-keys", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "source-list-map", + "url": "https://github.com/webpack/source-list-map", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "source-list-map", + "url": "https://github.com/webpack/source-list-map", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "source-map", + "url": "https://github.com/mozilla/source-map", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "source-map", + "url": "https://github.com/mozilla/source-map", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "source-map", + "url": "https://github.com/mozilla/source-map", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "source-map", + "url": "https://github.com/mozilla/source-map", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "source-map", + "url": "https://github.com/mozilla/source-map", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "source-map-resolve", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "source-map-support", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "source-map-url", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "spawn-wrap", + "url": "https://github.com/isaacs/spawn-wrap#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "spdx-correct", + "url": "https://kemitchell.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "CC-BY-3.0" + }, + "dependency": { + "name": "spdx-exceptions", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "spdx-expression-parse", + "url": "http://kemitchell.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "spdx-license-ids", + "url": "https://github.com/shinnn", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT*" + }, + "dependency": { + "name": "split", + "url": "http://github.com/dominictarr/split", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "split-string", + "url": "https://github.com/jonschlinkert/split-string", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "sprintf-js", + "url": "http://alexei.ro/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "sshpk", + "url": "https://github.com/arekinath/node-sshpk#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "ssri", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "stable", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "stack-trace", + "url": "https://github.com/felixge/node-stack-trace", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "stackframe", + "url": "https://www.stacktracejs.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "static-extend", + "url": "https://github.com/jonschlinkert/static-extend", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "statuses", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "std-env", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "stealthy-require", + "url": "https://github.com/analog-nico/stealthy-require#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "stream-browserify", + "url": "https://github.com/browserify/stream-browserify", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "stream-combiner", + "url": "https://github.com/dominictarr/stream-combiner", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "stream-each", + "url": "https://github.com/mafintosh/stream-each", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "stream-http", + "url": "https://github.com/jhiesey/stream-http#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "stream-shift", + "url": "https://github.com/mafintosh/stream-shift", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "stream-to", + "url": "http://jongleberry.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "stream-to-buffer", + "url": "http://jongleberry.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "strict-uri-encode", + "url": "github.com/kevva", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "string", + "url": "http://stringjs.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "string-width", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "string-width", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "string-width", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "string_decoder", + "url": "https://github.com/rvagg/string_decoder", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "string_decoder", + "url": "https://github.com/nodejs/string_decoder", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "string_decoder", + "url": "https://github.com/nodejs/string_decoder", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "stringstream", + "url": "http://github.com/mhart", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "stringstream", + "url": "http://github.com/mhart", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "strip-ansi", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "strip-ansi", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "strip-ansi", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "strip-bom", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "strip-bom", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "strip-eof", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "strip-indent", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "strip-json-comments", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "style-resources-loader", + "url": "https://github.com/yenshih/style-resources-loader", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "stylehacks", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "stylus", + "url": "https://github.com/stylus/stylus", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "stylus-loader", + "url": "http://dontkry.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "supports-color", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "supports-color", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "supports-color", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "supports-color", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "supports-color", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "svg-tags", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "svgo", + "url": "https://github.com/svg/svgo", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "svgo", + "url": "https://github.com/svg/svgo", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "symbol-tree", + "url": "https://github.com/jsdom/js-symbol-tree#symbol-tree", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "table", + "url": "http://gajus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "tapable", + "url": "https://github.com/webpack/tapable", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "tapable", + "url": "https://github.com/webpack/tapable", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "tape", + "url": "https://github.com/substack/tape", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "tar", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "term-size", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "terser", + "url": "https://github.com/fabiosantoscode/terser", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "terser-webpack-plugin", + "url": "https://github.com/webpack-contrib/terser-webpack-plugin", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "test-exclude", + "url": "https://github.com/istanbuljs/istanbuljs#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "text-table", + "url": "https://github.com/substack/text-table", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "thread-loader", + "url": "https://github.com/webpack-contrib/thread-loader", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "through", + "url": "https://github.com/dominictarr/through", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "through2", + "url": "https://github.com/rvagg", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "time-fix-plugin", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "timers-browserify", + "url": "https://github.com/jryans/timers-browserify", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "timsort", + "url": "https://github.com/mziccard/node-timsort", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "tinycolor2", + "url": "http://briangrinstead.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "tmp", + "url": "http://github.com/raszi/node-tmp", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "to-arraybuffer", + "url": "https://github.com/jhiesey/to-arraybuffer#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "to-fast-properties", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "to-fast-properties", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "to-object-path", + "url": "https://github.com/jonschlinkert/to-object-path", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "to-regex", + "url": "https://github.com/jonschlinkert/to-regex", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "to-regex-range", + "url": "https://github.com/micromatch/to-regex-range", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "to-regex-range", + "url": "https://github.com/micromatch/to-regex-range", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "toidentifier", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "toposort", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "tough-cookie", + "url": "https://github.com/salesforce/tough-cookie", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "tr46", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "trim", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "trim-right", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "tryer", + "url": "https://gitlab.com/philbooth/tryer", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "tslib", + "url": "http://typescriptlang.org/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "tty-browserify", + "url": "https://github.com/substack/tty-browserify", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "tunnel-agent", + "url": "http://www.futurealoof.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "tunnel-agent", + "url": "http://www.futurealoof.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Unlicense" + }, + "dependency": { + "name": "tweetnacl", + "url": "https://tweetnacl.js.org/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "type-check", + "url": "https://github.com/gkz/type-check", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "type-detect", + "url": "http://alogicalparadox.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "(MIT OR CC0-1.0)" + }, + "dependency": { + "name": "type-fest", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "type-is", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "typedarray", + "url": "https://github.com/substack/typedarray", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "(GPL-2.0 OR MIT)" + }, + "dependency": { + "name": "ua-parser-js", + "url": "http://github.com/faisalman/ua-parser-js", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "uc.micro", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "uglify-js", + "url": "http://lisperator.net/uglifyjs", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "uglify-js", + "url": "http://lisperator.net/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "uglify-js", + "url": "http://lisperator.net/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "uglify-to-browserify", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "underscore", + "url": "http://underscorejs.org/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "unfetch", + "url": "https://github.com/developit/unfetch", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "unicode-canonical-property-names-ecmascript", + "url": "https://github.com/mathiasbynens/unicode-canonical-property-names-ecmascript", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "unicode-match-property-ecmascript", + "url": "https://github.com/mathiasbynens/unicode-match-property-ecmascript", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "unicode-match-property-value-ecmascript", + "url": "https://github.com/mathiasbynens/unicode-match-property-value-ecmascript", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "unicode-property-aliases-ecmascript", + "url": "https://github.com/mathiasbynens/unicode-property-aliases-ecmascript", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "union-value", + "url": "https://github.com/jonschlinkert/union-value", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "uniq", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "uniqs", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "unique-filename", + "url": "https://github.com/iarna/unique-filename", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "unique-slug", + "url": "http://re-becca.org", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "universalify", + "url": "https://github.com/RyanZim/universalify#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "unpipe", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "unquote", + "url": "https://github.com/lakenen/node-unquote", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "unset-value", + "url": "https://github.com/jonschlinkert/unset-value", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "upath", + "url": "http://github.com/anodynos/upath/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "upper-case", + "url": "https://github.com/blakeembrey/upper-case", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "uppercamelcase", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "uri-js", + "url": "https://github.com/garycourt/uri-js", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "urix", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "url", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "url-join", + "url": "http://joseoncode.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "url-loader", + "url": "https://github.com/webpack-contrib/url-loader", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "url-regex", + "url": "https://github.com/kevva", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "urlgrey", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "use", + "url": "https://github.com/jonschlinkert/use", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "util", + "url": "https://github.com/defunctzombie/node-util", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "util", + "url": "https://github.com/defunctzombie/node-util", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "util-deprecate", + "url": "https://github.com/TooTallNate/util-deprecate", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "util.promisify", + "url": "https://github.com/ljharb/util.promisify#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "utila", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "utils-merge", + "url": "http://www.jaredhanson.net/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "uuid", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "v-tooltip", + "url": "https://github.com/Akryum/vue-tooltip#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "validate-npm-package-license", + "url": "https://kemitchell.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "vary", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "vendors", + "url": "https://wooorm.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "verror", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "vm-browserify", + "url": "http://substack.net", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "vue", + "url": "https://github.com/vuejs/vue#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "vue-disqus", + "url": "https://github.com/ktquez/vue-disqus#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "vue-hot-reload-api", + "url": "https://github.com/vuejs/vue-hot-reload-api#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "vue-loader", + "url": "https://github.com/vuejs/vue-loader", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "vue-meta", + "url": "https://github.com/declandewet/vue-meta", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "vue-moment", + "url": "https://github.com/brockpetrie/vue-moment#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "vue-no-ssr", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "vue-resize", + "url": "https://github.com/Akryum/vue-resize#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "vue-router", + "url": "https://github.com/vuejs/vue-router#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "vue-scrollto", + "url": "http://igor-randjelovic.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "vue-server-renderer", + "url": "https://github.com/vuejs/vue/tree/dev/packages/vue-server-renderer#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "UNKNOWN" + }, + "dependency": { + "name": "vue-slideout", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "vue-style-loader", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "vue-template-compiler", + "url": "https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "vue-template-es2015-compiler", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "vuex", + "url": "https://github.com/vuejs/vuex#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "w3c-hr-time", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "watchpack", + "url": "https://github.com/webpack/watchpack", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "webidl-conversions", + "url": "https://domenic.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "webpack", + "url": "https://github.com/webpack/webpack", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "webpack-bundle-analyzer", + "url": "https://github.com/webpack-contrib/webpack-bundle-analyzer", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "webpack-dev-middleware", + "url": "https://github.com/webpack/webpack-dev-middleware", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "webpack-hot-middleware", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "webpack-info-plugin", + "url": "https://github.com/zinserjan/webpack-info-plugin#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "webpack-log", + "url": "https://github.com/webpack-contrib/webpack-log#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "webpack-node-externals", + "url": "https://github.com/liady/webpack-node-externals", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "webpack-sources", + "url": "https://github.com/webpack/webpack-sources#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "webpack-sources", + "url": "https://github.com/webpack/webpack-sources#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "webpackbar", + "url": "https://github.com/nuxt/webpackbar", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "whatwg-encoding", + "url": "https://domenic.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "whatwg-url", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "when", + "url": "http://cujojs.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "whet.extend", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "which", + "url": "http://blog.izs.me", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "which", + "url": "http://blog.izs.me", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "which-module", + "url": "https://github.com/nexdrew/which-module#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "which-module", + "url": "https://github.com/nexdrew/which-module#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "wide-align", + "url": "http://re-becca.org/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "widest-line", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "window", + "url": "https://github.com/lukechilds/window#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "window-size", + "url": "https://github.com/jonschlinkert/window-size", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "window-size", + "url": "https://github.com/jonschlinkert/window-size", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "wordwrap", + "url": "http://substack.net", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "wordwrap", + "url": "http://substack.net", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "wordwrap", + "url": "http://substack.net", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "workbox-build", + "url": "https://github.com/GoogleChrome/workbox/tree/master/packages/workbox-build", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "workbox-sw", + "url": "https://github.com/GoogleChrome/workbox/tree/master/packages/workbox-sw", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "worker-farm", + "url": "https://github.com/rvagg/node-worker-farm", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "wrap-ansi", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "wrap-ansi", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "wrappy", + "url": "https://github.com/npm/wrappy", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "write", + "url": "https://github.com/jonschlinkert/write", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "write-file-atomic", + "url": "https://github.com/iarna/write-file-atomic", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "write-file-atomic", + "url": "https://github.com/iarna/write-file-atomic", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "write-json-file", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ws", + "url": "https://github.com/websockets/ws", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ws", + "url": "https://github.com/websockets/ws", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ws", + "url": "https://github.com/websockets/ws", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "xhr", + "url": "https://github.com/naugtur/xhr", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "xml-name-validator", + "url": "https://domenic.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "xml-parse-from-string", + "url": "https://github.com/Jam3/xml-parse-from-string", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "xml2js", + "url": "https://github.com/Leonidas-from-XIV/node-xml2js", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "xmlbuilder", + "url": "http://github.com/oozcitak/xmlbuilder-js", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "xtend", + "url": "https://github.com/Raynos/xtend", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "xxhashjs", + "url": "https://github.com/pierrec/js-xxhash", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "y18n", + "url": "https://github.com/yargs/y18n", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "y18n", + "url": "https://github.com/yargs/y18n", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "yallist", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "yallist", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "yargs", + "url": "http://yargs.js.org/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "yargs", + "url": "http://CodeTunnel.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "yargs", + "url": "http://yargs.js.org/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "yargs-parser", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "yargs-parser", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + } + ] +} diff --git a/spec/fixtures/expected/js/yarn/v1.1.json b/spec/fixtures/expected/js/yarn/v1.1.json new file mode 100644 index 0000000..41885a4 --- /dev/null +++ b/spec/fixtures/expected/js/yarn/v1.1.json @@ -0,0 +1,29025 @@ +{ + "version": "1.1", + "licenses": [ + { + "count": 1176, + "name": "MIT" + }, + { + "count": 121, + "name": "ISC" + }, + { + "count": 39, + "name": "New BSD" + }, + { + "count": 34, + "name": "Simplified BSD" + }, + { + "count": 23, + "name": "Apache 2.0" + }, + { + "count": 22, + "name": "CC0-1.0" + }, + { + "count": 4, + "name": "MIT*" + }, + { + "count": 3, + "name": "Apache*" + }, + { + "count": 2, + "name": "(WTFPL OR MIT)" + }, + { + "count": 2, + "name": "BSD" + }, + { + "count": 2, + "name": "CC-BY-4.0" + }, + { + "count": 2, + "name": "SEE LICENSE IN LICENSE" + }, + { + "count": 2, + "name": "Unlicense" + }, + { + "count": 2, + "name": "unknown" + }, + { + "count": 1, + "name": "(BSD-2-Clause OR MIT OR Apache-2.0)" + }, + { + "count": 1, + "name": "(GPL-2.0 OR MIT)" + }, + { + "count": 1, + "name": "(MIT AND BSD-3-Clause)" + }, + { + "count": 1, + "name": "(MIT AND Zlib)" + }, + { + "count": 1, + "name": "(MIT OR Apache-2.0)" + }, + { + "count": 1, + "name": "(MIT OR CC0-1.0)" + }, + { + "count": 1, + "name": "BSD*" + }, + { + "count": 1, + "name": "BSD-3-Clause OR MIT" + }, + { + "count": 1, + "name": "CC-BY-3.0" + }, + { + "count": 1, + "name": "LIL" + }, + { + "count": 1, + "name": "Mozilla Public License 2.0" + }, + { + "count": 1, + "name": "Public Domain" + }, + { + "count": 1, + "name": "UNKNOWN" + }, + { + "count": 1, + "name": "WTFPL" + } + ], + "dependencies": [ + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/code-frame", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/core", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/generator", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/helper-annotate-as-pure", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/helper-builder-binary-assignment-operator-visitor", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/helper-call-delegate", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/helper-create-class-features-plugin", + "url": "https://babeljs.io/team", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/helper-define-map", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/helper-explode-assignable-expression", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/helper-function-name", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/helper-get-function-arity", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/helper-hoist-variables", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/helper-member-expression-to-functions", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/helper-module-imports", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/helper-module-transforms", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/helper-optimise-call-expression", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/helper-plugin-utils", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/helper-regex", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/helper-remap-async-to-generator", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/helper-replace-supers", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/helper-simple-access", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/helper-split-export-declaration", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/helper-wrap-function", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/helpers", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/highlight", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/parser", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-proposal-async-generator-functions", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-proposal-class-properties", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-proposal-decorators", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-proposal-json-strings", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-proposal-object-rest-spread", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-proposal-optional-catch-binding", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-proposal-unicode-property-regex", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-syntax-async-generators", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-syntax-decorators", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-syntax-dynamic-import", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-syntax-json-strings", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-syntax-jsx", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-syntax-object-rest-spread", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-syntax-optional-catch-binding", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-arrow-functions", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-async-to-generator", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-block-scoped-functions", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-block-scoping", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-classes", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-computed-properties", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-destructuring", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-dotall-regex", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-duplicate-keys", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-exponentiation-operator", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-for-of", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-function-name", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-literals", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-member-expression-literals", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-modules-amd", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-modules-commonjs", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-modules-systemjs", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-modules-umd", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-named-capturing-groups-regex", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-new-target", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-object-super", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-parameters", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-property-literals", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-regenerator", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-regenerator", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-reserved-words", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-runtime", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-shorthand-properties", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-spread", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-sticky-regex", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-template-literals", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-typeof-symbol", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/plugin-transform-unicode-regex", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/preset-env", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/runtime", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/template", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/traverse", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@babel/types", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "CC0-1.0", + "url": "" + } + ], + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "@csstools/convert-colors", + "url": "https://github.com/jonathantneal/convert-colors#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxt/babel-preset-app", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxt/builder", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxt/cli", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxt/config", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxt/core", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "LIL", + "url": "" + } + ], + "license": { + "name": "LIL" + }, + "dependency": { + "name": "@nuxt/devalue", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxt/friendly-errors-webpack-plugin", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxt/generator", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxt/loading-screen", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxt/opencollective", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxt/server", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxt/utils", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxt/vue-app", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxt/vue-renderer", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxt/webpack", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxtjs/axios", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxtjs/browserconfig", + "url": "https://github.com/nuxt/modules/tree/master/modules/browserconfig", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxtjs/cssnano", + "url": "https://github.com/nuxt/modules/tree/master/modules/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxtjs/icon", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxtjs/manifest", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxtjs/markdownit", + "url": "https://github.com/nuxt/modules/tree/master/modules/markdownit", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxtjs/markdownit-loader", + "url": "https://github.com/nuxt-community/markdownit-loader#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxtjs/optimize", + "url": "https://github.com/nuxt/modules/tree/master/modules/optimize", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxtjs/proxy", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxtjs/sitemap", + "url": "https://github.com/nuxt/modules/tree/master/modules/sitemap", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxtjs/workbox", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@nuxtjs/youch", + "url": "https://github.com/poppinss/nuxt#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@types/q", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@vue/babel-helper-vue-jsx-merge-props", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@vue/babel-plugin-transform-vue-jsx", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@vue/babel-preset-jsx", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@vue/babel-sugar-functional-vue", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@vue/babel-sugar-inject-h", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@vue/babel-sugar-v-model", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@vue/babel-sugar-v-on", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@vue/component-compiler-utils", + "url": "https://github.com/vuejs/component-compiler-utils#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@webassemblyjs/ast", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@webassemblyjs/floating-point-hex-parser", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@webassemblyjs/helper-api-error", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@webassemblyjs/helper-buffer", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@webassemblyjs/helper-code-frame", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "@webassemblyjs/helper-fsm", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@webassemblyjs/helper-module-context", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@webassemblyjs/helper-wasm-bytecode", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@webassemblyjs/helper-wasm-section", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@webassemblyjs/ieee754", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@webassemblyjs/leb128", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@webassemblyjs/utf8", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@webassemblyjs/wasm-edit", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@webassemblyjs/wasm-gen", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@webassemblyjs/wasm-opt", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@webassemblyjs/wasm-parser", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@webassemblyjs/wast-parser", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "@webassemblyjs/wast-printer", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "@xtuc/ieee754", + "url": "http://feross.org", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "@xtuc/long", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "abab", + "url": "https://github.com/jsdom/abab#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "abbrev", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "accepts", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "acorn", + "url": "https://github.com/ternjs/acorn", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "acorn", + "url": "https://github.com/acornjs/acorn", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "acorn", + "url": "https://github.com/acornjs/acorn", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "acorn", + "url": "https://github.com/acornjs/acorn", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "acorn-dynamic-import", + "url": "https://github.com/kesne/acorn-dynamic-import", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "acorn-globals", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "acorn-jsx", + "url": "https://github.com/RReverser/acorn-jsx", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "acorn-walk", + "url": "https://github.com/acornjs/acorn", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ajv", + "url": "https://github.com/epoberezkin/ajv", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ajv", + "url": "https://github.com/epoberezkin/ajv", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ajv-errors", + "url": "https://github.com/epoberezkin/ajv-errors#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ajv-keywords", + "url": "https://github.com/epoberezkin/ajv-keywords#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ajv-keywords", + "url": "https://github.com/epoberezkin/ajv-keywords#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "align-text", + "url": "https://github.com/jonschlinkert/align-text", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "alphanum-sort", + "url": "https://github.com/TrySound/alphanum-sort", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "BSD-3-Clause OR MIT", + "url": "" + } + ], + "license": { + "name": "BSD-3-Clause OR MIT" + }, + "dependency": { + "name": "amdefine", + "url": "http://github.com/jrburke/amdefine", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "ansi-align", + "url": "https://github.com/nexdrew/ansi-align#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ansi-colors", + "url": "https://github.com/doowb/ansi-colors", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ansi-escapes", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ansi-escapes", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "ansi-html", + "url": "https://github.com/Tjatse/ansi-html", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ansi-regex", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ansi-regex", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ansi-regex", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ansi-styles", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ansi-styles", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "anymatch", + "url": "https://github.com/es128/anymatch", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "anymatch", + "url": "https://github.com/micromatch/anymatch", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "anymatch", + "url": "https://github.com/micromatch/anymatch", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "append-transform", + "url": "github.com/jamestalmage", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "aproba", + "url": "https://github.com/iarna/aproba", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "archy", + "url": "http://substack.net", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "are-we-there-yet", + "url": "https://github.com/iarna/are-we-there-yet", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "argparse", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "arr-diff", + "url": "https://github.com/jonschlinkert/arr-diff", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "arr-diff", + "url": "https://github.com/jonschlinkert/arr-diff", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "arr-flatten", + "url": "https://github.com/jonschlinkert/arr-flatten", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "arr-union", + "url": "https://github.com/jonschlinkert/arr-union", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "array-equal", + "url": "http://jongleberry.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "array-filter", + "url": "https://github.com/juliangruber/array-filter", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "array-flatten", + "url": "https://github.com/blakeembrey/array-flatten", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "array-map", + "url": "https://github.com/substack/array-map", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "array-reduce", + "url": "https://github.com/substack/array-reduce", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "array-union", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "array-uniq", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "array-unique", + "url": "https://github.com/jonschlinkert/array-unique", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "array-unique", + "url": "https://github.com/jonschlinkert/array-unique", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "arrify", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "asn1", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "asn1", + "url": "joyent.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "asn1.js", + "url": "https://github.com/indutny/asn1.js", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "assert", + "url": "https://github.com/browserify/commonjs-assert", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT*", + "url": "" + } + ], + "license": { + "name": "MIT*" + }, + "dependency": { + "name": "assert-plus", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "assert-plus", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "assertion-error", + "url": "http://qualiancy.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "assign-symbols", + "url": "https://github.com/jonschlinkert/assign-symbols", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "async", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "async", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "async", + "url": "https://caolan.github.io/async/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "async-cache", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "async-each", + "url": "https://github.com/paulmillr/async-each/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "async-limiter", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "asynckit", + "url": "https://github.com/alexindigo/asynckit#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "(MIT OR Apache-2.0)", + "url": "" + } + ], + "license": { + "name": "(MIT OR Apache-2.0)" + }, + "dependency": { + "name": "atob", + "url": "https://git.coolaj86.com/coolaj86/atob.js.git", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "autoprefixer", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "autoprefixer", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache*", + "url": "" + } + ], + "license": { + "name": "Apache*" + }, + "dependency": { + "name": "aws-sign2", + "url": "http://www.futurealoof.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "aws-sign2", + "url": "http://www.futurealoof.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "aws4", + "url": "http://github.com/mhart", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "axios", + "url": "https://github.com/axios/axios", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "axios-retry", + "url": "https://github.com/softonic/axios-retry", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "babel-code-frame", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "babel-eslint", + "url": "https://github.com/babel/babel-eslint", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "babel-generator", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "babel-loader", + "url": "https://github.com/babel/babel-loader", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "babel-messages", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "babel-runtime", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "babel-template", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "babel-traverse", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "babel-types", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "babylon", + "url": "https://babeljs.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "balanced-match", + "url": "https://github.com/juliangruber/balanced-match", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "balanced-match", + "url": "https://github.com/juliangruber/balanced-match", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "base", + "url": "https://github.com/node-base/base", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "base64-js", + "url": "https://github.com/beatgammit/base64-js", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "bcrypt-pbkdf", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "bezier-easing", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "bfj", + "url": "https://gitlab.com/philbooth/bfj", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "big.js", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "big.js", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "bignumber.js", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "binary-extensions", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "binary-extensions", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "bl", + "url": "https://github.com/rvagg/bl", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "bluebird", + "url": "https://github.com/petkaantonov/bluebird", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "bmp-js", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "bn.js", + "url": "https://github.com/indutny/bn.js", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "body-parser", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "boolbase", + "url": "https://github.com/fb55/boolbase", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "boom", + "url": "http://hueniverse.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "boom", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "boom", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "boxen", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "brace-expansion", + "url": "https://github.com/juliangruber/brace-expansion", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "braces", + "url": "https://github.com/jonschlinkert/braces", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "braces", + "url": "https://github.com/micromatch/braces", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "braces", + "url": "https://github.com/micromatch/braces", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "brorand", + "url": "https://github.com/indutny/brorand", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "browser-env", + "url": "https://github.com/lukechilds/browser-env#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + } + ], + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "browser-process-hrtime", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "browser-stdout", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "browserify-aes", + "url": "https://github.com/crypto-browserify/browserify-aes", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "browserify-cipher", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "browserify-des", + "url": "https://github.com/crypto-browserify/browserify-des#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "browserify-rsa", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "browserify-sign", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "browserify-zlib", + "url": "https://github.com/devongovett/browserify-zlib", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "browserslist", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "browserslist", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "buffer", + "url": "https://github.com/feross/buffer", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "buffer-equal", + "url": "http://substack.net", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "buffer-from", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "buffer-json", + "url": "https://github.com/jprichardson/buffer-json#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "buffer-xor", + "url": "https://github.com/crypto-browserify/buffer-xor", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "builtin-modules", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "builtin-status-codes", + "url": "bendrucker.me", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "bytes", + "url": "http://tjholowaychuk.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "bytes", + "url": "http://tjholowaychuk.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "cacache", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cache-base", + "url": "https://github.com/jonschlinkert/cache-base", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cache-loader", + "url": "https://github.com/webpack-contrib/cache-loader", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "caching-transform", + "url": "github.com/jamestalmage", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "caller-callsite", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "caller-path", + "url": "http://sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "caller-path", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "callsites", + "url": "http://sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "callsites", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "camel-case", + "url": "https://github.com/blakeembrey/camel-case", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "camelcase", + "url": "http://sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "camelcase", + "url": "http://sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "camelcase", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "camelcase", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "caniuse-api", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "caniuse-api", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "CC-BY-4.0", + "url": "" + } + ], + "license": { + "name": "CC-BY-4.0" + }, + "dependency": { + "name": "caniuse-db", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "CC-BY-4.0", + "url": "" + } + ], + "license": { + "name": "CC-BY-4.0" + }, + "dependency": { + "name": "caniuse-lite", + "url": "http://beneb.info", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "caseless", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "BSD", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + } + ], + "license": { + "name": "BSD", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + }, + "dependency": { + "name": "caseless", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "center-align", + "url": "https://github.com/jonschlinkert/center-align", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "chai", + "url": "http://chaijs.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "chalk", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "chalk", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "chalk", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "chardet", + "url": "https://github.com/runk/node-chardet", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "check-error", + "url": "http://alogicalparadox.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "check-types", + "url": "https://gitlab.com/philbooth/check-types.js", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "chokidar", + "url": "https://github.com/paulmillr/chokidar", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "chokidar", + "url": "https://github.com/paulmillr/chokidar", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "chownr", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "chrome-trace-event", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ci-info", + "url": "https://github.com/watson/ci-info", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ci-info", + "url": "https://github.com/watson/ci-info", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cipher-base", + "url": "https://github.com/crypto-browserify/cipher-base#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "circular-json", + "url": "https://github.com/WebReflection/circular-json", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "clap", + "url": "https://github.com/lahmatiy/clap", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "class-utils", + "url": "https://github.com/jonschlinkert/class-utils", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "clean-css", + "url": "https://github.com/jakubpawlowicz/clean-css", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cli-boxes", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cli-cursor", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "cli-width", + "url": "https://github.com/knownasilya/cli-width", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "cliui", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "cliui", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "cliui", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "clone", + "url": "http://paul.vorba.ch/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "co", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "coa", + "url": "http://github.com/veged/coa", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "coa", + "url": "http://github.com/veged/coa", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "code-point-at", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "codecov.io", + "url": "https://github.com/cainus/codecov.io", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "collection-visit", + "url": "https://github.com/jonschlinkert/collection-visit", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "color", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "color", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "color-convert", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "color-name", + "url": "https://github.com/dfcreative/color-name", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "color-name", + "url": "https://github.com/colorjs/color-name", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "color-string", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "color-string", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "colormin", + "url": "https://github.com/ben-eb/colormin", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "colors", + "url": "https://github.com/Marak/colors.js", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "combined-stream", + "url": "https://github.com/felixge/node-combined-stream", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "combined-stream", + "url": "https://github.com/felixge/node-combined-stream", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "commander", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "commander", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "commander", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "commander", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "commondir", + "url": "http://substack.net", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "component-emitter", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "compressible", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "compression", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "concat-map", + "url": "http://substack.net", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "concat-stream", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "concat-stream", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "connect", + "url": "http://tjholowaychuk.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "consola", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "console-browserify", + "url": "https://github.com/Raynos/console-browserify", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "console-control-strings", + "url": "http://re-becca.org/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "consolidate", + "url": "https://github.com/tj/consolidate.js", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "constants-browserify", + "url": "https://github.com/juliangruber/constants-browserify", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "contains-path", + "url": "https://github.com/jonschlinkert/contains-path", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "content-disposition", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "content-type", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "content-type-parser", + "url": "https://domenic.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "convert-source-map", + "url": "https://github.com/thlorenz/convert-source-map", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "convert-source-map", + "url": "https://github.com/thlorenz/convert-source-map", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cookie", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cookie", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cookie-signature", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "copy-concurrently", + "url": "https://www.npmjs.com/package/copy-concurrently", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "copy-descriptor", + "url": "https://github.com/jonschlinkert/copy-descriptor", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "core-js", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "core-js-compat", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "core-js-pure", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "core-util-is", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cosmiconfig", + "url": "https://github.com/davidtheclark/cosmiconfig#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cosmiconfig", + "url": "https://github.com/davidtheclark/cosmiconfig#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + } + ], + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "coveralls", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "create-ecdh", + "url": "https://github.com/crypto-browserify/createECDH", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "create-hash", + "url": "https://github.com/crypto-browserify/createHash", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "create-hmac", + "url": "https://github.com/crypto-browserify/createHmac", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cross-spawn", + "url": "http://indigounited.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cross-spawn", + "url": "http://indigounited.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cross-spawn", + "url": "https://github.com/moxystudio/node-cross-spawn", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "cryptiles", + "url": "http://hueniverse.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "cryptiles", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "crypto-browserify", + "url": "https://github.com/crypto-browserify/crypto-browserify", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "CC0-1.0", + "url": "" + } + ], + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "css-blank-pseudo", + "url": "https://github.com/csstools/css-blank-pseudo#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "css-color-names", + "url": "http://www.daveeddy.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "css-declaration-sorter", + "url": "https://selwyn.cc/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "CC0-1.0", + "url": "" + } + ], + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "css-has-pseudo", + "url": "https://github.com/csstools/css-has-pseudo#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "css-loader", + "url": "https://github.com/webpack-contrib/css-loader", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "css-parse", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "CC0-1.0", + "url": "" + } + ], + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "css-prefers-color-scheme", + "url": "https://github.com/csstools/css-prefers-color-scheme#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + } + ], + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "css-select", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + } + ], + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "css-select", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "css-select-base-adapter", + "url": "https://github.com/nrkn/css-select-base-adapter#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "css-tree", + "url": "https://github.com/csstree/csstree", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "css-tree", + "url": "https://github.com/csstree/csstree", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "css-unit-converter", + "url": "https://github.com/andyjansson/css-unit-converter", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "css-url-regex", + "url": "https://github.com/johnotander/css-url-regex", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + } + ], + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "css-what", + "url": "http://feedic.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "CC0-1.0", + "url": "" + } + ], + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "cssdb", + "url": "https://github.com/csstools/cssdb#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cssesc", + "url": "https://mths.be/cssesc", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cssesc", + "url": "https://mths.be/cssesc", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cssnano", + "url": "https://github.com/ben-eb/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cssnano", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cssnano-preset-default", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cssnano-util-get-arguments", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cssnano-util-get-match", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cssnano-util-raw-cache", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cssnano-util-same-parent", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "csso", + "url": "https://github.com/css/csso", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "csso", + "url": "https://github.com/css/csso", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cssom", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cssstyle", + "url": "https://github.com/chad3814/CSSStyleDeclaration", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ctype", + "url": "https://github.com/rmustacc/node-ctype", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "cuint", + "url": "https://github.com/pierrec/js-cuint", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT*", + "url": "" + } + ], + "license": { + "name": "MIT*" + }, + "dependency": { + "name": "cyclist", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "dashdash", + "url": "http://trentm.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "data2xml", + "url": "https://github.com/chilts/data2xml", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "date-fns", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "date-now", + "url": "https://github.com/Colingo/date-now", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "de-indent", + "url": "https://github.com/yyx990803/de-indent#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "debug", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "debug", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "debug", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "debug", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "debug", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "debug-log", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "decamelize", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "decode-uri-component", + "url": "github.com/SamVerschueren", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "decouple", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "deep-eql", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "deep-equal", + "url": "http://substack.net", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "deep-extend", + "url": "https://github.com/unclechu/node-deep-extend", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "deep-is", + "url": "http://thlorenz.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "deepmerge", + "url": "https://github.com/TehShrike/deepmerge", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "default-require-extensions", + "url": "github.com/jamestalmage", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "define-properties", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "define-property", + "url": "https://github.com/jonschlinkert/define-property", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "define-property", + "url": "https://github.com/jonschlinkert/define-property", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "define-property", + "url": "https://github.com/jonschlinkert/define-property", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "defined", + "url": "https://github.com/substack/defined", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "defined", + "url": "https://github.com/substack/defined", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "defu", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "del", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "delayed-stream", + "url": "https://github.com/felixge/node-delayed-stream", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "delayed-stream", + "url": "https://github.com/felixge/node-delayed-stream", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "delegates", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "depd", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "des.js", + "url": "https://github.com/indutny/des.js#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "destroy", + "url": "http://jongleberry.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "detect-indent", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "detect-indent", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "detect-libc", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "diff", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "diffie-hellman", + "url": "https://github.com/crypto-browserify/diffie-hellman", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + } + ], + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "doctrine", + "url": "https://github.com/eslint/doctrine", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "doctrine", + "url": "https://github.com/eslint/doctrine", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "dom-converter", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "dom-serializer", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "dom-walk", + "url": "https://github.com/Raynos/dom-walk", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "domain-browser", + "url": "https://github.com/bevry/domain-browser", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + } + ], + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "domelementtype", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + } + ], + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "domelementtype", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "domexception", + "url": "https://domenic.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + } + ], + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "domhandler", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + } + ], + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "domutils", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + } + ], + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "domutils", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "dot-prop", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "duplexer", + "url": "https://github.com/Raynos/duplexer", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "duplexify", + "url": "https://github.com/mafintosh/duplexify", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ecc-jsbn", + "url": "https://github.com/quartzjer/ecc-jsbn", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ee-first", + "url": "http://jongleberry.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "ejs", + "url": "https://github.com/mde/ejs", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "electron-to-chromium", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "elliptic", + "url": "https://github.com/indutny/elliptic", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "emitter", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "emoji-regex", + "url": "https://mths.be/emoji-regex", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "emojis-list", + "url": "https://github.com/Kikobeats/emojis-list", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "encodeurl", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "end-of-stream", + "url": "https://github.com/mafintosh/end-of-stream", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "enhanced-resolve", + "url": "http://github.com/webpack/enhanced-resolve", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "enhanced-resolve", + "url": "http://github.com/webpack/enhanced-resolve", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + } + ], + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "entities", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + } + ], + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "entities", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "errno", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "error-ex", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "error-stack-parser", + "url": "https://www.stacktracejs.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "es-abstract", + "url": "http://ljharb.codes", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "es-to-primitive", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "es6-promise", + "url": "Conversion to ES6 API by Jake Archibald", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "escape-html", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "escape-string-regexp", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + } + ], + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "escodegen", + "url": "http://github.com/estools/escodegen", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "eslint", + "url": "https://eslint.org/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "eslint-config-standard", + "url": "https://github.com/feross/eslint-config-standard", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "eslint-import-resolver-node", + "url": "https://github.com/benmosher/eslint-plugin-import", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "eslint-loader", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "eslint-module-utils", + "url": "https://github.com/benmosher/eslint-plugin-import#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "eslint-plugin-html", + "url": "https://github.com/BenoitZugmeyer/eslint-plugin-html", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "eslint-plugin-import", + "url": "https://github.com/benmosher/eslint-plugin-import", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "eslint-plugin-node", + "url": "https://github.com/mysticatea/eslint-plugin-node#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "eslint-plugin-promise", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "eslint-plugin-standard", + "url": "https://github.com/xjamundx/eslint-plugin-standard#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + } + ], + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "eslint-scope", + "url": "http://github.com/eslint/eslint-scope", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + } + ], + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "eslint-scope", + "url": "http://github.com/eslint/eslint-scope", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "eslint-visitor-keys", + "url": "https://github.com/eslint/eslint-visitor-keys#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "esm", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + } + ], + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "espree", + "url": "https://github.com/eslint/espree", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + } + ], + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "esprima", + "url": "http://esprima.org/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + } + ], + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "esprima", + "url": "http://esprima.org/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + } + ], + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "esprima", + "url": "http://esprima.org/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "esquery", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + } + ], + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "esrecurse", + "url": "https://github.com/estools/esrecurse", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + } + ], + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "estraverse", + "url": "https://github.com/estools/estraverse", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + } + ], + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "esutils", + "url": "https://github.com/estools/esutils", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "etag", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "eventemitter3", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "events", + "url": "http://jeditoolkit.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "eventsource-polyfill", + "url": "https://github.com/amvtek/EventSource", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "evp_bytestokey", + "url": "https://github.com/crypto-browserify/EVP_BytesToKey", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "execa", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "execa", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "exif-parser", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "exit", + "url": "https://github.com/cowboy/node-exit", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "expand-brackets", + "url": "https://github.com/jonschlinkert/expand-brackets", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "expand-brackets", + "url": "https://github.com/jonschlinkert/expand-brackets", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "expand-range", + "url": "https://github.com/jonschlinkert/expand-range", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "express", + "url": "http://expressjs.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "extend", + "url": "http://www.justmoon.net", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "extend-shallow", + "url": "https://github.com/jonschlinkert/extend-shallow", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "extend-shallow", + "url": "https://github.com/jonschlinkert/extend-shallow", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "external-editor", + "url": "https://github.com/mrkmg/node-external-editor#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "extglob", + "url": "https://github.com/jonschlinkert/extglob", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "extglob", + "url": "https://github.com/micromatch/extglob", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "extract-css-chunks-webpack-plugin", + "url": "http://github.com/faceyspacey/extract-css-chunks-webpack-plugin", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "extsprintf", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "extsprintf", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "fast-deep-equal", + "url": "https://github.com/epoberezkin/fast-deep-equal#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "fast-deep-equal", + "url": "https://github.com/epoberezkin/fast-deep-equal#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "fast-json-stable-stringify", + "url": "https://github.com/epoberezkin/fast-json-stable-stringify", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "fast-levenshtein", + "url": "http://www.hiddentao.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "figgy-pudding", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "figures", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "figures", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "file-entry-cache", + "url": "http://royriojas.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "file-loader", + "url": "https://github.com/webpack-contrib/file-loader", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "file-type", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "filename-regex", + "url": "https://github.com/regexhq/filename-regex", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "filesize", + "url": "https://filesizejs.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "fill-range", + "url": "https://github.com/jonschlinkert/fill-range", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "fill-range", + "url": "https://github.com/jonschlinkert/fill-range", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "fill-range", + "url": "https://github.com/jonschlinkert/fill-range", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "finalhandler", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "find-cache-dir", + "url": "github.com/jamestalmage", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "find-cache-dir", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "find-up", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "find-up", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "find-up", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "flat-cache", + "url": "http://royriojas.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "flatten", + "url": "http://jesusabdullah.net", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "flush-write-stream", + "url": "https://github.com/mafintosh/flush-write-stream", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "follow-redirects", + "url": "https://github.com/olalonde/follow-redirects", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "for-each", + "url": "https://github.com/Raynos/for-each", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "for-in", + "url": "https://github.com/jonschlinkert/for-in", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "for-own", + "url": "https://github.com/jonschlinkert/for-own", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "foreground-child", + "url": "https://github.com/tapjs/foreground-child#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache*", + "url": "" + } + ], + "license": { + "name": "Apache*" + }, + "dependency": { + "name": "forever-agent", + "url": "http://www.futurealoof.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "forever-agent", + "url": "http://www.futurealoof.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "form-data", + "url": "http://debuggable.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "form-data", + "url": "http://debuggable.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "forwarded", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "fragment-cache", + "url": "https://github.com/jonschlinkert/fragment-cache", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "fresh", + "url": "http://tjholowaychuk.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "from2", + "url": "https://github.com/hughsk/from2", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "front-matter", + "url": "https://github.com/jxson/front-matter", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "fs-extra", + "url": "https://github.com/jprichardson/node-fs-extra", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "fs-extra", + "url": "https://github.com/jprichardson/node-fs-extra", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "fs-extra", + "url": "https://github.com/jprichardson/node-fs-extra", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "fs-extra", + "url": "https://github.com/jprichardson/node-fs-extra", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "fs-extra", + "url": "https://github.com/jprichardson/node-fs-extra", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "fs-minipass", + "url": "https://github.com/npm/fs-minipass#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "fs-write-stream-atomic", + "url": "https://github.com/npm/fs-write-stream-atomic", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "fs.realpath", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "unknown", + "url": "" + } + ], + "license": { + "name": "unknown" + }, + "dependency": { + "name": "fsevents", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "unknown", + "url": "" + } + ], + "license": { + "name": "unknown" + }, + "dependency": { + "name": "fsevents", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "function-bind", + "url": "https://github.com/Raynos/function-bind", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "functional-red-black-tree", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "gauge", + "url": "https://github.com/iarna/gauge", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "get-caller-file", + "url": "https://github.com/stefanpenner/get-caller-file#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "get-func-name", + "url": "http://alogicalparadox.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "get-stream", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "get-stream", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "get-value", + "url": "https://github.com/jonschlinkert/get-value", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "getpass", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "glob", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "glob", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "glob", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "glob", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "glob-base", + "url": "https://github.com/jonschlinkert/glob-base", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "glob-parent", + "url": "https://github.com/es128/glob-parent", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "glob-parent", + "url": "https://github.com/es128/glob-parent", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "glob-parent", + "url": "https://gulpjs.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "global", + "url": "https://github.com/Raynos/global", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "globals", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "globals", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "globals", + "url": "http://sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "globby", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "graceful-fs", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "graceful-fs", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "graceful-readlink", + "url": "https://github.com/zhiyelee/graceful-readlink", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "growl", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "gzip-size", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "handlebars", + "url": "http://www.handlebarsjs.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "har-schema", + "url": "https://github.com/ahmadnassri/har-schema", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "har-validator", + "url": "https://github.com/ahmadnassri/har-validator", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "hard-source-webpack-plugin", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "has", + "url": "https://github.com/tarruda/has", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "has-ansi", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "has-flag", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "has-flag", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "has-symbols", + "url": "http://ljharb.codes", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "has-unicode", + "url": "https://github.com/iarna/has-unicode", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "has-value", + "url": "https://github.com/jonschlinkert/has-value", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "has-value", + "url": "https://github.com/jonschlinkert/has-value", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "has-values", + "url": "https://github.com/jonschlinkert/has-values", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "has-values", + "url": "https://github.com/jonschlinkert/has-values", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "hash-base", + "url": "https://github.com/crypto-browserify/hash-base", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "hash-sum", + "url": "https://github.com/bevacqua/hash-sum", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "hash.js", + "url": "https://github.com/indutny/hash.js", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "hawk", + "url": "http://hueniverse.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "hawk", + "url": "http://hueniverse.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "he", + "url": "https://mths.be/he", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "he", + "url": "https://mths.be/he", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "hex-color-regex", + "url": "http://www.tunnckocore.tk", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "highlight.js", + "url": "https://highlightjs.org/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "hmac-drbg", + "url": "https://github.com/indutny/hmac-drbg#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "SEE LICENSE IN LICENSE", + "url": "" + } + ], + "license": { + "name": "SEE LICENSE IN LICENSE" + }, + "dependency": { + "name": "hoek", + "url": "http://hueniverse.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "hoek", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "hoopy", + "url": "https://gitlab.com/philbooth/hoopy#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "hosted-git-info", + "url": "https://github.com/npm/hosted-git-info", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "hsl-regex", + "url": "https://github.com/regexps/hsl-regex", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "hsla-regex", + "url": "https://github.com/regexps/hsla-regex", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "html-comment-regex", + "url": "https://github.com/stevemao/html-comment-regex", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "html-encoding-sniffer", + "url": "https://domenic.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "html-entities", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "html-minifier", + "url": "https://kangax.github.io/html-minifier/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "html-minifier", + "url": "https://kangax.github.io/html-minifier/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "html-tags", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "html-webpack-plugin", + "url": "https://github.com/jantimon/html-webpack-plugin", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "htmlparser2", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "htmlparser2", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "http-errors", + "url": "http://jongleberry.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "http-proxy", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "http-proxy-middleware", + "url": "https://github.com/chimurai/http-proxy-middleware", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "http-signature", + "url": "https://github.com/joyent/node-http-signature/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "http-signature", + "url": "https://github.com/joyent/node-http-signature/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "https-browserify", + "url": "https://github.com/substack/https-browserify", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "husky", + "url": "https://github.com/typicode/husky", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "iconv-lite", + "url": "https://github.com/ashtuchkin/iconv-lite", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "iconv-lite", + "url": "https://github.com/ashtuchkin/iconv-lite", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "icss-replace-symbols", + "url": "https://github.com/css-modules/icss-replace-symbols#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "icss-utils", + "url": "https://github.com/css-modules/icss-utils#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "ieee754", + "url": "http://feross.org", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "iferr", + "url": "https://github.com/shesek/iferr", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ignore", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ignore", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "ignore-walk", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "import-cwd", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "import-fresh", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "import-from", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "imurmurhash", + "url": "https://github.com/jensyt/imurmurhash-js", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "indexes-of", + "url": "https://github.com/dominictarr/indexes-of", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT*", + "url": "" + } + ], + "license": { + "name": "MIT*" + }, + "dependency": { + "name": "indexof", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "inflight", + "url": "https://github.com/isaacs/inflight", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "inherits", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "inherits", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "ini", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "inquirer", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "interpret", + "url": "https://github.com/tkellen/node-interpret", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "invariant", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "invariant", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "invert-kv", + "url": "http://sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ip", + "url": "https://github.com/indutny/node-ip", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ip-regex", + "url": "http://sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ipaddr.js", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-absolute-url", + "url": "http://sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-accessor-descriptor", + "url": "https://github.com/jonschlinkert/is-accessor-descriptor", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-accessor-descriptor", + "url": "https://github.com/jonschlinkert/is-accessor-descriptor", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-arrayish", + "url": "http://github.com/qix-", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-arrayish", + "url": "http://github.com/qix-", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-binary-path", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-binary-path", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-buffer", + "url": "http://feross.org/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-callable", + "url": "http://ljharb.codes", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-ci", + "url": "https://github.com/watson/is-ci", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-color-stop", + "url": "https://github.com/pigcan/is-color-stop#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-data-descriptor", + "url": "https://github.com/jonschlinkert/is-data-descriptor", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-data-descriptor", + "url": "https://github.com/jonschlinkert/is-data-descriptor", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-date-object", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-descriptor", + "url": "https://github.com/jonschlinkert/is-descriptor", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-descriptor", + "url": "https://github.com/jonschlinkert/is-descriptor", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-directory", + "url": "https://github.com/jonschlinkert/is-directory", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-dotfile", + "url": "https://github.com/jonschlinkert/is-dotfile", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-equal-shallow", + "url": "https://github.com/jonschlinkert/is-equal-shallow", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-extendable", + "url": "https://github.com/jonschlinkert/is-extendable", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-extendable", + "url": "https://github.com/jonschlinkert/is-extendable", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-extglob", + "url": "https://github.com/jonschlinkert/is-extglob", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-extglob", + "url": "https://github.com/jonschlinkert/is-extglob", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-finite", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-fullwidth-code-point", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-fullwidth-code-point", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-function", + "url": "https://github.com/grncdr/js-is-function", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-glob", + "url": "https://github.com/jonschlinkert/is-glob", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-glob", + "url": "https://github.com/jonschlinkert/is-glob", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-glob", + "url": "https://github.com/micromatch/is-glob", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-https", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-number", + "url": "https://github.com/jonschlinkert/is-number", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-number", + "url": "https://github.com/jonschlinkert/is-number", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-number", + "url": "https://github.com/jonschlinkert/is-number", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-number", + "url": "https://github.com/jonschlinkert/is-number", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-obj", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-path-cwd", + "url": "http://sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-path-in-cwd", + "url": "http://sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-path-inside", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-plain-obj", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-plain-object", + "url": "https://github.com/jonschlinkert/is-plain-object", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-posix-bracket", + "url": "https://github.com/jonschlinkert/is-posix-bracket", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-primitive", + "url": "https://github.com/jonschlinkert/is-primitive", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-promise", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-regex", + "url": "https://github.com/ljharb/is-regex", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "is-resolvable", + "url": "https://github.com/shinnn", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-retry-allowed", + "url": "github.com/floatdrop", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-stream", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-svg", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-svg", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-symbol", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-typedarray", + "url": "https://github.com/hughsk/is-typedarray", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-utf8", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-windows", + "url": "https://github.com/jonschlinkert/is-windows", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "is-wsl", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "isarray", + "url": "https://github.com/juliangruber/isarray", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "isarray", + "url": "https://github.com/juliangruber/isarray", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "isexe", + "url": "https://github.com/isaacs/isexe#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "isobject", + "url": "https://github.com/jonschlinkert/isobject", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "isobject", + "url": "https://github.com/jonschlinkert/isobject", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "isstream", + "url": "https://github.com/rvagg/isstream", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "istanbul-lib-coverage", + "url": "https://github.com/istanbuljs/istanbuljs", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "istanbul-lib-hook", + "url": "https://github.com/istanbuljs/istanbuljs#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "istanbul-lib-instrument", + "url": "https://github.com/istanbuljs/istanbuljs", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "istanbul-lib-report", + "url": "https://github.com/istanbuljs/istanbuljs", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "istanbul-lib-source-maps", + "url": "https://github.com/istanbuljs/istanbuljs#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "istanbul-reports", + "url": "https://github.com/istanbuljs/istanbuljs", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "jimp", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "jpeg-js", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "js-base64", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "js-levenshtein", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "js-tokens", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "js-tokens", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "js-yaml", + "url": "https://github.com/nodeca/js-yaml", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "js-yaml", + "url": "https://github.com/nodeca/js-yaml", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "js-yaml", + "url": "https://github.com/nodeca/js-yaml", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "jsbn", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "jsdom", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "jsesc", + "url": "http://mths.be/jsesc", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "jsesc", + "url": "https://mths.be/jsesc", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "jsesc", + "url": "https://mths.be/jsesc", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "json-parse-better-errors", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "BSD*", + "url": "" + } + ], + "license": { + "name": "BSD*" + }, + "dependency": { + "name": "json-schema", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "json-schema-traverse", + "url": "https://github.com/epoberezkin/json-schema-traverse#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "json-schema-traverse", + "url": "https://github.com/epoberezkin/json-schema-traverse#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "json-stable-stringify-without-jsonify", + "url": "https://github.com/samn/json-stable-stringify", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "json-stringify-safe", + "url": "https://github.com/isaacs/json-stringify-safe", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "json3", + "url": "http://bestiejs.github.io/json3", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "json5", + "url": "http://json5.org/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "json5", + "url": "http://json5.org/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "json5", + "url": "http://json5.org/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "jsonfile", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "jsonfile", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "jsonfile", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Public Domain", + "url": "" + } + ], + "license": { + "name": "Public Domain" + }, + "dependency": { + "name": "jsonify", + "url": "http://crockford.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "jsprim", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "kind-of", + "url": "https://github.com/jonschlinkert/kind-of", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "kind-of", + "url": "https://github.com/jonschlinkert/kind-of", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "kind-of", + "url": "https://github.com/jonschlinkert/kind-of", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "kind-of", + "url": "https://github.com/jonschlinkert/kind-of", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "klaw", + "url": "https://github.com/jprichardson/node-klaw#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "last-call-webpack-plugin", + "url": "http://github.com/NMFR/last-call-webpack-plugin", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "launch-editor", + "url": "https://github.com/yyx990803/launch-editor#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "launch-editor-middleware", + "url": "https://github.com/yyx990803/launch-editor#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lazy-cache", + "url": "https://github.com/jonschlinkert/lazy-cache", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lcid", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "lcov-parse", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "WTFPL", + "url": "" + } + ], + "license": { + "name": "WTFPL" + }, + "dependency": { + "name": "left-pad", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "levn", + "url": "https://github.com/gkz/levn", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "linkify-it", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "load-bmfont", + "url": "https://github.com/Jam3/load-bmfont", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "load-json-file", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "load-json-file", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "loader-fs-cache", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "loader-runner", + "url": "https://github.com/webpack/loader-runner#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "loader-utils", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "loader-utils", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "locate-path", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "locate-path", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash._baseassign", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash._basecopy", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash._basecreate", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash._getnative", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash._isiterateecall", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash._reinterpolate", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash.assign", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash.clonedeep", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash.cond", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash.create", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash.isarguments", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash.isarray", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash.isplainobject", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash.kebabcase", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash.keys", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash.memoize", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash.merge", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash.sortby", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash.template", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash.templatesettings", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash.uniq", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lodash.uniqueid", + "url": "https://lodash.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "log-driver", + "url": "https://github.com/cainus/logdriver", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "longest", + "url": "https://github.com/jonschlinkert/longest", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "loose-envify", + "url": "https://github.com/zertosh/loose-envify", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "lower-case", + "url": "https://github.com/blakeembrey/lower-case", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "lru-cache", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "lru-cache", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "lru-cache", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "make-dir", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "make-dir", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mamacro", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "map-cache", + "url": "https://github.com/jonschlinkert/map-cache", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "map-visit", + "url": "https://github.com/jonschlinkert/map-visit", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "markdown-it", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Unlicense", + "url": "" + } + ], + "license": { + "name": "Unlicense" + }, + "dependency": { + "name": "markdown-it-anchor", + "url": "https://github.com/valeriangalliat/markdown-it-anchor", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "math-expression-evaluator", + "url": "https://github.com/redhivesoftware/math-expression-evaluator#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "math-random", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "md5-hex", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "md5-o-matic", + "url": "https://github.com/trentmillar/md5-o-matic", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "md5.js", + "url": "https://github.com/crypto-browserify/md5.js", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Mozilla Public License 2.0", + "url": "https://www.mozilla.org/media/MPL/2.0/index.815ca599c9df.txt" + } + ], + "license": { + "name": "Mozilla Public License 2.0", + "url": "https://www.mozilla.org/media/MPL/2.0/index.815ca599c9df.txt" + }, + "dependency": { + "name": "mdn-data", + "url": "https://developer.mozilla.org/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mdurl", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "media-typer", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mem", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "memory-fs", + "url": "https://github.com/webpack/memory-fs", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "merge-descriptors", + "url": "http://jongleberry.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "merge-source-map", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "methods", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "micromatch", + "url": "https://github.com/jonschlinkert/micromatch", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "micromatch", + "url": "https://github.com/micromatch/micromatch", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "miller-rabin", + "url": "https://github.com/indutny/miller-rabin", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mime", + "url": "http://github.com/broofa", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mime", + "url": "http://github.com/broofa", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mime", + "url": "http://github.com/broofa", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mime-db", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mime-db", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mime-types", + "url": "http://jongleberry.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mime-types", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mime-types", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mimic-fn", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "min-document", + "url": "https://github.com/Raynos/min-document", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "minimalistic-assert", + "url": "https://github.com/calvinmetcalf/minimalistic-assert", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "minimalistic-crypto-utils", + "url": "https://github.com/indutny/minimalistic-crypto-utils#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "minimatch", + "url": "http://blog.izs.me", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "minimist", + "url": "https://github.com/substack/minimist", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "minimist", + "url": "https://github.com/substack/minimist", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "minimist", + "url": "https://github.com/substack/minimist", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "minipass", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "minizlib", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + } + ], + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "mississippi", + "url": "https://github.com/maxogden/mississippi#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mixin-deep", + "url": "https://github.com/jonschlinkert/mixin-deep", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mkdirp", + "url": "http://substack.net", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mocha", + "url": "https://mochajs.org/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mocha-webpack", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "moment", + "url": "http://momentjs.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "move-concurrently", + "url": "https://www.npmjs.com/package/move-concurrently", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ms", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ms", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mustache", + "url": "https://github.com/janl/mustache.js", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "mute-stream", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "nan", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "nanomatch", + "url": "https://github.com/micromatch/nanomatch", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "natural-compare", + "url": "https://github.com/litejs/natural-compare-lite", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "needle", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "negotiator", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "neo-async", + "url": "https://github.com/suguru03/neo-async", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "nice-try", + "url": "https://github.com/electerious/nice-try", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "no-case", + "url": "https://github.com/blakeembrey/no-case", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "node-fetch", + "url": "https://github.com/bitinn/node-fetch", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "node-libs-browser", + "url": "http://github.com/webpack/node-libs-browser", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "node-object-hash", + "url": "https://github.com/SkeLLLa/node-object-hash", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "node-pre-gyp", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "node-releases", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "node-uuid", + "url": "https://github.com/broofa/node-uuid", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "nopt", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + } + ], + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "normalize-package-data", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "normalize-path", + "url": "https://github.com/jonschlinkert/normalize-path", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "normalize-path", + "url": "https://github.com/jonschlinkert/normalize-path", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "normalize-path", + "url": "https://github.com/jonschlinkert/normalize-path", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "normalize-range", + "url": "github.com/jamestalmage", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "normalize-url", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "normalize-url", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "normalize-url", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "normalize.css", + "url": "https://necolas.github.io/normalize.css", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "npm-bundled", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "npm-packlist", + "url": "https://www.npmjs.com/package/npm-packlist", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "npm-run-path", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "npmlog", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + } + ], + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "nth-check", + "url": "https://github.com/fb55/nth-check", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "num2fraction", + "url": "http://iyunlu.com/view", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "number-is-nan", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "nuxt", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "nuxtent", + "url": "https://github.com/nuxt-community/nuxtent-module#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "nwmatcher", + "url": "http://javascript.nwbox.com/NWMatcher/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "nyc", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache*", + "url": "" + } + ], + "license": { + "name": "Apache*" + }, + "dependency": { + "name": "oauth-sign", + "url": "http://www.futurealoof.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "oauth-sign", + "url": "http://www.futurealoof.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "object-assign", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "object-copy", + "url": "https://github.com/jonschlinkert/object-copy", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "object-hash", + "url": "https://github.com/puleos/object-hash", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "object-keys", + "url": "http://ljharb.codes", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "object-visit", + "url": "https://github.com/jonschlinkert/object-visit", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "object.getownpropertydescriptors", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "object.omit", + "url": "https://github.com/jonschlinkert/object.omit", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "object.pick", + "url": "https://github.com/jonschlinkert/object.pick", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "object.values", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "on-finished", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "on-headers", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "once", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "onetime", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "(WTFPL OR MIT)", + "url": "" + } + ], + "license": { + "name": "(WTFPL OR MIT)" + }, + "dependency": { + "name": "opener", + "url": "https://domenic.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "optimist", + "url": "http://substack.net", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "optimize-css-assets-webpack-plugin", + "url": "http://github.com/NMFR/optimize-css-assets-webpack-plugin", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "optionator", + "url": "https://github.com/gkz/optionator", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "os-browserify", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "os-homedir", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "os-locale", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "os-locale", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "os-tmpdir", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "osenv", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "p-finally", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "p-limit", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "p-limit", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "p-locate", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "p-locate", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "p-try", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "p-try", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "(MIT AND Zlib)", + "url": "" + } + ], + "license": { + "name": "(MIT AND Zlib)" + }, + "dependency": { + "name": "pako", + "url": "https://github.com/nodeca/pako", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "parallel-transform", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "param-case", + "url": "https://github.com/blakeembrey/param-case", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "parse-asn1", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "parse-bmfont-ascii", + "url": "https://github.com/mattdesl/parse-bmfont-ascii", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "parse-bmfont-binary", + "url": "https://github.com/Jam3/parse-bmfont-binary", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "parse-bmfont-xml", + "url": "https://github.com/mattdesl/parse-bmfont-xml", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "parse-glob", + "url": "https://github.com/jonschlinkert/parse-glob", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "parse-headers", + "url": "https://github.com/kesla/parse-headers", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "parse-json", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "parse-json", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "parse5", + "url": "https://github.com/inikulin/parse5", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "parseurl", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pascalcase", + "url": "https://github.com/jonschlinkert/pascalcase", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "path-browserify", + "url": "https://github.com/substack/path-browserify", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "path-dirname", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "path-exists", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "path-exists", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "path-is-absolute", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "(WTFPL OR MIT)", + "url": "" + } + ], + "license": { + "name": "(WTFPL OR MIT)" + }, + "dependency": { + "name": "path-is-inside", + "url": "https://domenic.me", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "path-key", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "path-parse", + "url": "https://github.com/jbgutierrez/path-parse#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "path-to-regexp", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "path-to-regexp", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "path-type", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "path-type", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pathval", + "url": "https://github.com/chaijs/pathval", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pbkdf2", + "url": "https://github.com/crypto-browserify/pbkdf2", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "performance-now", + "url": "https://github.com/braveg1rl/performance-now", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "picomatch", + "url": "https://github.com/micromatch/picomatch", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pify", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pify", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pify", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pinkie", + "url": "github.com/floatdrop", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pinkie-promise", + "url": "github.com/floatdrop", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "pixelmatch", + "url": "https://github.com/mapbox/pixelmatch#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pkg-dir", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pkg-dir", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pluralize", + "url": "http://blakeembrey.me", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pn", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pngjs", + "url": "https://github.com/lukeapage/pngjs", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "popper.js", + "url": "https://popper.js.org/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "posix-character-classes", + "url": "https://github.com/jonschlinkert/posix-character-classes", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss", + "url": "http://postcss.org/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss", + "url": "https://postcss.org/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-attribute-case-insensitive", + "url": "https://github.com/Semigradsky/postcss-attribute-case-insensitive#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-calc", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-calc", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "CC0-1.0", + "url": "" + } + ], + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "postcss-color-functional-notation", + "url": "https://github.com/jonathantneal/postcss-color-functional-notation#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "postcss-color-gray", + "url": "https://github.com/postcss/postcss-color-gray#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-color-hex-alpha", + "url": "https://github.com/postcss/postcss-color-hex-alpha#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "CC0-1.0", + "url": "" + } + ], + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "postcss-color-mod-function", + "url": "https://github.com/jonathantneal/postcss-color-mod-function#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-color-rebeccapurple", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-colormin", + "url": "https://github.com/ben-eb/postcss-colormin", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-colormin", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-convert-values", + "url": "https://github.com/ben-eb/postcss-convert-values", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-convert-values", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-custom-media", + "url": "https://github.com/postcss/postcss-custom-media#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-custom-properties", + "url": "https://github.com/postcss/postcss-custom-properties#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-custom-selectors", + "url": "https://github.com/postcss/postcss-custom-selectors#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "CC0-1.0", + "url": "" + } + ], + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "postcss-dir-pseudo-class", + "url": "https://github.com/jonathantneal/postcss-dir-pseudo-class#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-discard-comments", + "url": "https://github.com/ben-eb/postcss-discard-comments", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-discard-comments", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-discard-duplicates", + "url": "https://github.com/ben-eb/postcss-discard-duplicates", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-discard-duplicates", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-discard-empty", + "url": "https://github.com/ben-eb/postcss-discard-empty", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-discard-empty", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-discard-overridden", + "url": "https://github.com/Justineo/postcss-discard-overridden", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-discard-overridden", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-discard-unused", + "url": "https://github.com/ben-eb/postcss-discard-unused", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "CC0-1.0", + "url": "" + } + ], + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "postcss-double-position-gradients", + "url": "https://github.com/jonathantneal/postcss-double-position-gradients#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "CC0-1.0", + "url": "" + } + ], + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "postcss-env-function", + "url": "https://github.com/jonathantneal/postcss-env-function#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-filter-plugins", + "url": "https://github.com/postcss/postcss-filter-plugins", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "CC0-1.0", + "url": "" + } + ], + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "postcss-focus-visible", + "url": "https://github.com/jonathantneal/postcss-focus-visible#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "CC0-1.0", + "url": "" + } + ], + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "postcss-focus-within", + "url": "https://github.com/jonathantneal/postcss-focus-within#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-font-variant", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "CC0-1.0", + "url": "" + } + ], + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "postcss-gap-properties", + "url": "https://github.com/jonathantneal/postcss-gap-properties#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "CC0-1.0", + "url": "" + } + ], + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "postcss-image-set-function", + "url": "https://github.com/jonathantneal/postcss-image-set-function#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-import", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-import-resolver", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-initial", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "CC0-1.0", + "url": "" + } + ], + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "postcss-lab-function", + "url": "https://github.com/jonathantneal/postcss-lab-function#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-load-config", + "url": "https://github.com/michael-ciniawsky/postcss-load-config#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-loader", + "url": "https://github.com/postcss/postcss-loader#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "CC0-1.0", + "url": "" + } + ], + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "postcss-logical", + "url": "https://github.com/jonathantneal/postcss-logical#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-media-minmax", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-merge-idents", + "url": "https://github.com/ben-eb/postcss-merge-idents", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-merge-longhand", + "url": "https://github.com/ben-eb/postcss-merge-longhand", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-merge-longhand", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-merge-rules", + "url": "https://github.com/ben-eb/postcss-merge-rules", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-merge-rules", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-message-helpers", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-minify-font-values", + "url": "https://github.com/TrySound/postcss-minify-font-values", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-minify-font-values", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-minify-gradients", + "url": "https://github.com/ben-eb/postcss-minify-gradients", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-minify-gradients", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-minify-params", + "url": "https://github.com/ben-eb/postcss-minify-params", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-minify-params", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-minify-selectors", + "url": "https://github.com/ben-eb/postcss-minify-selectors", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-minify-selectors", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "postcss-modules-extract-imports", + "url": "https://github.com/css-modules/postcss-modules-extract-imports", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-modules-local-by-default", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "postcss-modules-scope", + "url": "https://github.com/css-modules/postcss-modules-scope", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "postcss-modules-values", + "url": "https://github.com/css-modules/postcss-modules-values#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "CC0-1.0", + "url": "" + } + ], + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "postcss-nesting", + "url": "https://github.com/jonathantneal/postcss-nesting#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-normalize-charset", + "url": "https://github.com/ben-eb/postcss-charset", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-normalize-charset", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-normalize-display-values", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-normalize-positions", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-normalize-repeat-style", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-normalize-string", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-normalize-timing-functions", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-normalize-unicode", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-normalize-url", + "url": "https://github.com/ben-eb/postcss-normalize-url", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-normalize-url", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-normalize-whitespace", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-ordered-values", + "url": "https://github.com/ben-eb/postcss-ordered-values", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-ordered-values", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "CC0-1.0", + "url": "" + } + ], + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "postcss-overflow-shorthand", + "url": "https://github.com/jonathantneal/postcss-overflow-shorthand#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-page-break", + "url": "https://github.com/shrpne/postcss-page-break", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "CC0-1.0", + "url": "" + } + ], + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "postcss-place", + "url": "https://github.com/jonathantneal/postcss-place#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "CC0-1.0", + "url": "" + } + ], + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "postcss-preset-env", + "url": "https://github.com/csstools/postcss-preset-env#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "CC0-1.0", + "url": "" + } + ], + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "postcss-pseudo-class-any-link", + "url": "https://github.com/jonathantneal/postcss-pseudo-class-any-link#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-reduce-idents", + "url": "https://github.com/ben-eb/postcss-reduce-idents", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-reduce-initial", + "url": "https://github.com/ben-eb/postcss-reduce-initial", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-reduce-initial", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-reduce-transforms", + "url": "https://github.com/ben-eb/postcss-reduce-transforms", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-reduce-transforms", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-replace-overflow-wrap", + "url": "https://github.com/MattDiMu/postcss-replace-overflow-wrap", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-selector-matches", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-selector-not", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-selector-parser", + "url": "https://github.com/postcss/postcss-selector-parser", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-selector-parser", + "url": "https://github.com/postcss/postcss-selector-parser", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-selector-parser", + "url": "https://github.com/postcss/postcss-selector-parser", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-selector-parser", + "url": "https://github.com/postcss/postcss-selector-parser", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-svgo", + "url": "https://github.com/ben-eb/postcss-svgo", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-svgo", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-unique-selectors", + "url": "https://github.com/ben-eb/postcss-unique-selectors", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-unique-selectors", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-url", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-value-parser", + "url": "https://github.com/TrySound/postcss-value-parser", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-values-parser", + "url": "shellscape", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "postcss-zindex", + "url": "https://github.com/ben-eb/postcss-zindex", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "prelude-ls", + "url": "http://preludels.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "prepend-http", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "prepend-http", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "preserve", + "url": "https://github.com/jonschlinkert/preserve", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "prettier", + "url": "https://prettier.io/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pretty-bytes", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pretty-error", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pretty-time", + "url": "https://github.com/jonschlinkert/pretty-time", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "private", + "url": "http://github.com/benjamn/private", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "process", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "process", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "process-nextick-args", + "url": "https://github.com/calvinmetcalf/process-nextick-args", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "progress", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "promise-inflight", + "url": "https://github.com/iarna/promise-inflight#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "proper-lockfile", + "url": "https://github.com/moxystudio/node-proper-lockfile", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "proxy-addr", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "prr", + "url": "https://github.com/rvagg/prr", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "pseudomap", + "url": "https://github.com/isaacs/pseudomap#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "public-encrypt", + "url": "https://github.com/crypto-browserify/publicEncrypt", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pump", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pump", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pumpify", + "url": "https://github.com/mafintosh/pumpify", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "punycode", + "url": "https://mths.be/punycode", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "punycode", + "url": "https://mths.be/punycode", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "punycode", + "url": "https://mths.be/punycode", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "q", + "url": "https://github.com/kriskowal/q", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "SEE LICENSE IN LICENSE", + "url": "" + } + ], + "license": { + "name": "SEE LICENSE IN LICENSE" + }, + "dependency": { + "name": "qs", + "url": "https://github.com/hapijs/qs", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "qs", + "url": "https://github.com/ljharb/qs", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "qs", + "url": "https://github.com/ljharb/qs", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "query-string", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "query-string", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "querystring", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "querystring-es3", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "randomatic", + "url": "https://github.com/jonschlinkert/randomatic", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "randombytes", + "url": "https://github.com/crypto-browserify/randombytes", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "randomfill", + "url": "https://github.com/crypto-browserify/randomfill", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "range-parser", + "url": "http://tjholowaychuk.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "raw-body", + "url": "http://jongleberry.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "raw-loader", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "(BSD-2-Clause OR MIT OR Apache-2.0)", + "url": "" + } + ], + "license": { + "name": "(BSD-2-Clause OR MIT OR Apache-2.0)" + }, + "dependency": { + "name": "rc", + "url": "dominictarr.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "read-cache", + "url": "https://github.com/TrySound/read-cache#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "read-chunk", + "url": "http://sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "read-pkg", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "read-pkg", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "read-pkg-up", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "read-pkg-up", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "readable-stream", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "readable-stream", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "readable-stream", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "readdirp", + "url": "https://github.com/paulmillr/readdirp", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "readdirp", + "url": "https://github.com/paulmillr/readdirp", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "reduce-css-calc", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "reduce-function-call", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "regenerate", + "url": "https://mths.be/regenerate", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "regenerate-unicode-properties", + "url": "https://github.com/mathiasbynens/regenerate-unicode-properties", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "regenerator-runtime", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "regenerator-runtime", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "regenerator-transform", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "regex-cache", + "url": "https://github.com/jonschlinkert/regex-cache", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "regex-not", + "url": "https://github.com/jonschlinkert/regex-not", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "regexp-tree", + "url": "https://github.com/DmitrySoshnikov/regexp-tree", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "regexpu-core", + "url": "https://mths.be/regexpu", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "regjsgen", + "url": "https://github.com/bnjmnt4n/regjsgen", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + } + ], + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "regjsparser", + "url": "https://github.com/jviereck/regjsparser", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "relateurl", + "url": "https://github.com/stevenvachon/relateurl", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "remove-trailing-separator", + "url": "https://github.com/darsain/remove-trailing-separator#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "renderkid", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "repeat-element", + "url": "https://github.com/jonschlinkert/repeat-element", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "repeat-string", + "url": "https://github.com/jonschlinkert/repeat-string", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "repeating", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "request", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "request", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "request-promise-core", + "url": "https://github.com/request/promise-core#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "request-promise-native", + "url": "https://github.com/request/request-promise-native#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "require-directory", + "url": "https://github.com/troygoode/node-require-directory/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "require-from-string", + "url": "github.com/floatdrop", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "require-main-filename", + "url": "https://github.com/yargs/require-main-filename#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "require-uncached", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "requires-port", + "url": "https://github.com/unshiftio/requires-port", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "resolve", + "url": "http://substack.net", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "resolve", + "url": "http://substack.net", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "resolve-from", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "resolve-from", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "resolve-from", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "resolve-url", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "restore-cursor", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "resumer", + "url": "https://github.com/substack/resumer", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ret", + "url": "https://github.com/fent", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "retry", + "url": "https://github.com/tim-kos/node-retry", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "rgb-regex", + "url": "https://github.com/regexps/rgb-regex", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "rgba-regex", + "url": "https://github.com/johnotander/rgba-regex", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "right-align", + "url": "https://github.com/jonschlinkert/right-align", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "rimraf", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "rimraf", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ripemd160", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "run-async", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "run-queue", + "url": "https://npmjs.com/package/run-queue", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "rupture", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "rx-lite", + "url": "https://github.com/Reactive-Extensions/RxJS", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "rx-lite-aggregates", + "url": "https://github.com/Reactive-Extensions/RxJS", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "safe-buffer", + "url": "https://github.com/feross/safe-buffer", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "safe-regex", + "url": "https://github.com/substack/safe-regex", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "safer-buffer", + "url": "https://github.com/ChALkeR", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "BSD", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + } + ], + "license": { + "name": "BSD", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + }, + "dependency": { + "name": "sax", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "sax", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "schema-utils", + "url": "https://github.com/webpack-contrib/schema-utils", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "semver", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "semver", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "semver", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "semver", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "send", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "serialize-javascript", + "url": "https://github.com/yahoo/serialize-javascript", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "serve-placeholder", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "serve-static", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "server-destroy", + "url": "http://blog.izs.me", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "set-blocking", + "url": "https://github.com/yargs/set-blocking#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "set-value", + "url": "https://github.com/jonschlinkert/set-value", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "set-value", + "url": "https://github.com/jonschlinkert/set-value", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "setimmediate", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "setprototypeof", + "url": "https://github.com/wesleytodd/setprototypeof", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "(MIT AND BSD-3-Clause)", + "url": "" + } + ], + "license": { + "name": "(MIT AND BSD-3-Clause)" + }, + "dependency": { + "name": "sha.js", + "url": "https://github.com/crypto-browserify/sha.js", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "shebang-command", + "url": "github.com/kevva", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "shebang-regex", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "shell-quote", + "url": "http://substack.net", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "signal-exit", + "url": "https://github.com/tapjs/signal-exit", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "simple-swizzle", + "url": "http://github.com/qix-", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "sitemap", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "slice-ansi", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "slide", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "slideout", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "snapdragon", + "url": "https://github.com/jonschlinkert/snapdragon", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "snapdragon-node", + "url": "https://github.com/jonschlinkert/snapdragon-node", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "snapdragon-util", + "url": "https://github.com/jonschlinkert/snapdragon-util", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "sntp", + "url": "http://hueniverse.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "sntp", + "url": "http://hueniverse.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "sort-keys", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "sort-keys", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "source-list-map", + "url": "https://github.com/webpack/source-list-map", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "source-list-map", + "url": "https://github.com/webpack/source-list-map", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "source-map", + "url": "https://github.com/mozilla/source-map", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "source-map", + "url": "https://github.com/mozilla/source-map", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "source-map", + "url": "https://github.com/mozilla/source-map", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "source-map", + "url": "https://github.com/mozilla/source-map", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "source-map", + "url": "https://github.com/mozilla/source-map", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "source-map-resolve", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "source-map-support", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "source-map-url", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "spawn-wrap", + "url": "https://github.com/isaacs/spawn-wrap#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "spdx-correct", + "url": "https://kemitchell.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "CC-BY-3.0", + "url": "" + } + ], + "license": { + "name": "CC-BY-3.0" + }, + "dependency": { + "name": "spdx-exceptions", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "spdx-expression-parse", + "url": "http://kemitchell.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "CC0-1.0", + "url": "" + } + ], + "license": { + "name": "CC0-1.0" + }, + "dependency": { + "name": "spdx-license-ids", + "url": "https://github.com/shinnn", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT*", + "url": "" + } + ], + "license": { + "name": "MIT*" + }, + "dependency": { + "name": "split", + "url": "http://github.com/dominictarr/split", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "split-string", + "url": "https://github.com/jonschlinkert/split-string", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "sprintf-js", + "url": "http://alexei.ro/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "sshpk", + "url": "https://github.com/arekinath/node-sshpk#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "ssri", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "stable", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "stack-trace", + "url": "https://github.com/felixge/node-stack-trace", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "stackframe", + "url": "https://www.stacktracejs.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "static-extend", + "url": "https://github.com/jonschlinkert/static-extend", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "statuses", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "std-env", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "stealthy-require", + "url": "https://github.com/analog-nico/stealthy-require#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "stream-browserify", + "url": "https://github.com/browserify/stream-browserify", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "stream-combiner", + "url": "https://github.com/dominictarr/stream-combiner", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "stream-each", + "url": "https://github.com/mafintosh/stream-each", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "stream-http", + "url": "https://github.com/jhiesey/stream-http#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "stream-shift", + "url": "https://github.com/mafintosh/stream-shift", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "stream-to", + "url": "http://jongleberry.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "stream-to-buffer", + "url": "http://jongleberry.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "strict-uri-encode", + "url": "github.com/kevva", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "string", + "url": "http://stringjs.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "string-width", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "string-width", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "string-width", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "string_decoder", + "url": "https://github.com/rvagg/string_decoder", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "string_decoder", + "url": "https://github.com/nodejs/string_decoder", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "string_decoder", + "url": "https://github.com/nodejs/string_decoder", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "stringstream", + "url": "http://github.com/mhart", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "stringstream", + "url": "http://github.com/mhart", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "strip-ansi", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "strip-ansi", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "strip-ansi", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "strip-bom", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "strip-bom", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "strip-eof", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "strip-indent", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "strip-json-comments", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "style-resources-loader", + "url": "https://github.com/yenshih/style-resources-loader", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "stylehacks", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "stylus", + "url": "https://github.com/stylus/stylus", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "stylus-loader", + "url": "http://dontkry.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "supports-color", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "supports-color", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "supports-color", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "supports-color", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "supports-color", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "svg-tags", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "svgo", + "url": "https://github.com/svg/svgo", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "svgo", + "url": "https://github.com/svg/svgo", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "symbol-tree", + "url": "https://github.com/jsdom/js-symbol-tree#symbol-tree", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "table", + "url": "http://gajus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "tapable", + "url": "https://github.com/webpack/tapable", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "tapable", + "url": "https://github.com/webpack/tapable", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "tape", + "url": "https://github.com/substack/tape", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "tar", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "term-size", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + } + ], + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "terser", + "url": "https://github.com/fabiosantoscode/terser", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "terser-webpack-plugin", + "url": "https://github.com/webpack-contrib/terser-webpack-plugin", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "test-exclude", + "url": "https://github.com/istanbuljs/istanbuljs#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "text-table", + "url": "https://github.com/substack/text-table", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "thread-loader", + "url": "https://github.com/webpack-contrib/thread-loader", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "through", + "url": "https://github.com/dominictarr/through", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "through2", + "url": "https://github.com/rvagg", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "time-fix-plugin", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "timers-browserify", + "url": "https://github.com/jryans/timers-browserify", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "timsort", + "url": "https://github.com/mziccard/node-timsort", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "tinycolor2", + "url": "http://briangrinstead.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "tmp", + "url": "http://github.com/raszi/node-tmp", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "to-arraybuffer", + "url": "https://github.com/jhiesey/to-arraybuffer#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "to-fast-properties", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "to-fast-properties", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "to-object-path", + "url": "https://github.com/jonschlinkert/to-object-path", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "to-regex", + "url": "https://github.com/jonschlinkert/to-regex", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "to-regex-range", + "url": "https://github.com/micromatch/to-regex-range", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "to-regex-range", + "url": "https://github.com/micromatch/to-regex-range", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "toidentifier", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "toposort", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "tough-cookie", + "url": "https://github.com/salesforce/tough-cookie", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "tr46", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "trim", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "trim-right", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "tryer", + "url": "https://gitlab.com/philbooth/tryer", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "tslib", + "url": "http://typescriptlang.org/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "tty-browserify", + "url": "https://github.com/substack/tty-browserify", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "tunnel-agent", + "url": "http://www.futurealoof.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "tunnel-agent", + "url": "http://www.futurealoof.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Unlicense", + "url": "" + } + ], + "license": { + "name": "Unlicense" + }, + "dependency": { + "name": "tweetnacl", + "url": "https://tweetnacl.js.org/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "type-check", + "url": "https://github.com/gkz/type-check", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "type-detect", + "url": "http://alogicalparadox.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "(MIT OR CC0-1.0)", + "url": "" + } + ], + "license": { + "name": "(MIT OR CC0-1.0)" + }, + "dependency": { + "name": "type-fest", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "type-is", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "typedarray", + "url": "https://github.com/substack/typedarray", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "(GPL-2.0 OR MIT)", + "url": "" + } + ], + "license": { + "name": "(GPL-2.0 OR MIT)" + }, + "dependency": { + "name": "ua-parser-js", + "url": "http://github.com/faisalman/ua-parser-js", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "uc.micro", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + } + ], + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "uglify-js", + "url": "http://lisperator.net/uglifyjs", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + } + ], + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "uglify-js", + "url": "http://lisperator.net/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + } + ], + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "uglify-js", + "url": "http://lisperator.net/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "uglify-to-browserify", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "underscore", + "url": "http://underscorejs.org/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "unfetch", + "url": "https://github.com/developit/unfetch", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "unicode-canonical-property-names-ecmascript", + "url": "https://github.com/mathiasbynens/unicode-canonical-property-names-ecmascript", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "unicode-match-property-ecmascript", + "url": "https://github.com/mathiasbynens/unicode-match-property-ecmascript", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "unicode-match-property-value-ecmascript", + "url": "https://github.com/mathiasbynens/unicode-match-property-value-ecmascript", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "unicode-property-aliases-ecmascript", + "url": "https://github.com/mathiasbynens/unicode-property-aliases-ecmascript", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "union-value", + "url": "https://github.com/jonschlinkert/union-value", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "uniq", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "uniqs", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "unique-filename", + "url": "https://github.com/iarna/unique-filename", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "unique-slug", + "url": "http://re-becca.org", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "universalify", + "url": "https://github.com/RyanZim/universalify#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "unpipe", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "unquote", + "url": "https://github.com/lakenen/node-unquote", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "unset-value", + "url": "https://github.com/jonschlinkert/unset-value", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "upath", + "url": "http://github.com/anodynos/upath/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "upper-case", + "url": "https://github.com/blakeembrey/upper-case", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "uppercamelcase", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + } + ], + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "uri-js", + "url": "https://github.com/garycourt/uri-js", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "urix", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "url", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "url-join", + "url": "http://joseoncode.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "url-loader", + "url": "https://github.com/webpack-contrib/url-loader", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "url-regex", + "url": "https://github.com/kevva", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + } + ], + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "urlgrey", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "use", + "url": "https://github.com/jonschlinkert/use", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "util", + "url": "https://github.com/defunctzombie/node-util", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "util", + "url": "https://github.com/defunctzombie/node-util", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "util-deprecate", + "url": "https://github.com/TooTallNate/util-deprecate", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "util.promisify", + "url": "https://github.com/ljharb/util.promisify#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "utila", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "utils-merge", + "url": "http://www.jaredhanson.net/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "uuid", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "v-tooltip", + "url": "https://github.com/Akryum/vue-tooltip#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "validate-npm-package-license", + "url": "https://kemitchell.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "vary", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "vendors", + "url": "https://wooorm.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "verror", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "vm-browserify", + "url": "http://substack.net", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "vue", + "url": "https://github.com/vuejs/vue#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "vue-disqus", + "url": "https://github.com/ktquez/vue-disqus#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "vue-hot-reload-api", + "url": "https://github.com/vuejs/vue-hot-reload-api#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "vue-loader", + "url": "https://github.com/vuejs/vue-loader", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "vue-meta", + "url": "https://github.com/declandewet/vue-meta", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "vue-moment", + "url": "https://github.com/brockpetrie/vue-moment#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "vue-no-ssr", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "vue-resize", + "url": "https://github.com/Akryum/vue-resize#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "vue-router", + "url": "https://github.com/vuejs/vue-router#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "vue-scrollto", + "url": "http://igor-randjelovic.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "vue-server-renderer", + "url": "https://github.com/vuejs/vue/tree/dev/packages/vue-server-renderer#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "UNKNOWN", + "url": "" + } + ], + "license": { + "name": "UNKNOWN" + }, + "dependency": { + "name": "vue-slideout", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "vue-style-loader", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "vue-template-compiler", + "url": "https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "vue-template-es2015-compiler", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "vuex", + "url": "https://github.com/vuejs/vuex#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "w3c-hr-time", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "watchpack", + "url": "https://github.com/webpack/watchpack", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + } + ], + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "webidl-conversions", + "url": "https://domenic.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "webpack", + "url": "https://github.com/webpack/webpack", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "webpack-bundle-analyzer", + "url": "https://github.com/webpack-contrib/webpack-bundle-analyzer", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "webpack-dev-middleware", + "url": "https://github.com/webpack/webpack-dev-middleware", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "webpack-hot-middleware", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "webpack-info-plugin", + "url": "https://github.com/zinserjan/webpack-info-plugin#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "webpack-log", + "url": "https://github.com/webpack-contrib/webpack-log#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "webpack-node-externals", + "url": "https://github.com/liady/webpack-node-externals", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "webpack-sources", + "url": "https://github.com/webpack/webpack-sources#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "webpack-sources", + "url": "https://github.com/webpack/webpack-sources#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "webpackbar", + "url": "https://github.com/nuxt/webpackbar", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "whatwg-encoding", + "url": "https://domenic.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "whatwg-url", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "when", + "url": "http://cujojs.com/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "whet.extend", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "which", + "url": "http://blog.izs.me", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "which", + "url": "http://blog.izs.me", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "which-module", + "url": "https://github.com/nexdrew/which-module#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "which-module", + "url": "https://github.com/nexdrew/which-module#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "wide-align", + "url": "http://re-becca.org/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "widest-line", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "window", + "url": "https://github.com/lukechilds/window#readme", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "window-size", + "url": "https://github.com/jonschlinkert/window-size", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "window-size", + "url": "https://github.com/jonschlinkert/window-size", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "wordwrap", + "url": "http://substack.net", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "wordwrap", + "url": "http://substack.net", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "wordwrap", + "url": "http://substack.net", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "workbox-build", + "url": "https://github.com/GoogleChrome/workbox/tree/master/packages/workbox-build", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "workbox-sw", + "url": "https://github.com/GoogleChrome/workbox/tree/master/packages/workbox-sw", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "worker-farm", + "url": "https://github.com/rvagg/node-worker-farm", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "wrap-ansi", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "wrap-ansi", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "wrappy", + "url": "https://github.com/npm/wrappy", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "write", + "url": "https://github.com/jonschlinkert/write", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "write-file-atomic", + "url": "https://github.com/iarna/write-file-atomic", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "write-file-atomic", + "url": "https://github.com/iarna/write-file-atomic", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "write-json-file", + "url": "sindresorhus.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ws", + "url": "https://github.com/websockets/ws", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ws", + "url": "https://github.com/websockets/ws", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ws", + "url": "https://github.com/websockets/ws", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "xhr", + "url": "https://github.com/naugtur/xhr", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "xml-name-validator", + "url": "https://domenic.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "xml-parse-from-string", + "url": "https://github.com/Jam3/xml-parse-from-string", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "xml2js", + "url": "https://github.com/Leonidas-from-XIV/node-xml2js", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "xmlbuilder", + "url": "http://github.com/oozcitak/xmlbuilder-js", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "xtend", + "url": "https://github.com/Raynos/xtend", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "xxhashjs", + "url": "https://github.com/pierrec/js-xxhash", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "y18n", + "url": "https://github.com/yargs/y18n", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "y18n", + "url": "https://github.com/yargs/y18n", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "yallist", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "yallist", + "url": "http://blog.izs.me/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "yargs", + "url": "http://yargs.js.org/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "yargs", + "url": "http://CodeTunnel.com", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "yargs", + "url": "http://yargs.js.org/", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "yargs-parser", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + } + ], + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" + }, + "dependency": { + "name": "yargs-parser", + "url": "Unknown", + "description": "", + "pathes": [ + "." + ] + } + } + ] +} diff --git a/spec/fixtures/expected/js/yarn/v2.0.json b/spec/fixtures/expected/js/yarn/v2.0.json new file mode 100644 index 0000000..1881dcf --- /dev/null +++ b/spec/fixtures/expected/js/yarn/v2.0.json @@ -0,0 +1,16103 @@ +{ + "version": "2.0", + "licenses": [ + { + "id": "MIT", + "name": "MIT License", + "url": "https://opensource.org/licenses/MIT", + "count": 1176 + }, + { + "id": "ISC", + "name": "ISC License", + "url": "https://opensource.org/licenses/ISC", + "count": 121 + }, + { + "id": "BSD-3-Clause", + "name": "BSD 3-Clause \"New\" or \"Revised\" License", + "url": "https://opensource.org/licenses/BSD-3-Clause", + "count": 39 + }, + { + "id": "BSD-2-Clause", + "name": "BSD 2-Clause \"Simplified\" License", + "url": "https://opensource.org/licenses/BSD-2-Clause", + "count": 34 + }, + { + "id": "Apache-2.0", + "name": "Apache License 2.0", + "url": "https://opensource.org/licenses/Apache-2.0", + "count": 23 + }, + { + "id": "CC0-1.0", + "name": "Creative Commons Zero v1.0 Universal", + "url": "https://creativecommons.org/publicdomain/zero/1.0/legalcode", + "count": 22 + }, + { + "id": "mit*", + "name": "MIT*", + "url": "", + "count": 4 + }, + { + "id": "apache*", + "name": "Apache*", + "url": "", + "count": 3 + }, + { + "id": "(wtfpl or mit)", + "name": "(WTFPL OR MIT)", + "url": "", + "count": 2 + }, + { + "id": "BSD-4-Clause", + "name": "BSD 4-Clause \"Original\" or \"Old\" License", + "url": "http://directory.fsf.org/wiki/License:BSD_4Clause", + "count": 2 + }, + { + "id": "CC-BY-4.0", + "name": "Creative Commons Attribution 4.0 International", + "url": "https://creativecommons.org/licenses/by/4.0/legalcode", + "count": 2 + }, + { + "id": "see license in license", + "name": "SEE LICENSE IN LICENSE", + "url": "", + "count": 2 + }, + { + "id": "Unlicense", + "name": "The Unlicense", + "url": "https://unlicense.org/", + "count": 2 + }, + { + "id": "unknown", + "name": "unknown", + "url": "", + "count": 2 + }, + { + "id": "(bsd-2-clause or mit or apache-2.0)", + "name": "(BSD-2-Clause OR MIT OR Apache-2.0)", + "url": "", + "count": 1 + }, + { + "id": "(gpl-2.0 or mit)", + "name": "(GPL-2.0 OR MIT)", + "url": "", + "count": 1 + }, + { + "id": "(mit and bsd-3-clause)", + "name": "(MIT AND BSD-3-Clause)", + "url": "", + "count": 1 + }, + { + "id": "(mit and zlib)", + "name": "(MIT AND Zlib)", + "url": "", + "count": 1 + }, + { + "id": "(mit or apache-2.0)", + "name": "(MIT OR Apache-2.0)", + "url": "", + "count": 1 + }, + { + "id": "(mit or cc0-1.0)", + "name": "(MIT OR CC0-1.0)", + "url": "", + "count": 1 + }, + { + "id": "bsd*", + "name": "BSD*", + "url": "", + "count": 1 + }, + { + "id": "bsd-3-clause or mit", + "name": "BSD-3-Clause OR MIT", + "url": "", + "count": 1 + }, + { + "id": "CC-BY-3.0", + "name": "Creative Commons Attribution 3.0 Unported", + "url": "https://creativecommons.org/licenses/by/3.0/legalcode", + "count": 1 + }, + { + "id": "WTFPL", + "name": "Do What The F*ck You Want To Public License", + "url": "http://sam.zoy.org/wtfpl/COPYING", + "count": 1 + }, + { + "id": "lil", + "name": "LIL", + "url": "", + "count": 1 + }, + { + "id": "MPL-2.0", + "name": "Mozilla Public License 2.0", + "url": "https://opensource.org/licenses/MPL-2.0", + "count": 1 + }, + { + "id": "public domain", + "name": "Public Domain", + "url": "", + "count": 1 + }, + { + "id": "unknown", + "name": "UNKNOWN", + "url": "", + "count": 1 + } + ], + "dependencies": [ + { + "name": "@babel/code-frame", + "url": "https://babeljs.io/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/core", + "url": "https://babeljs.io/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/generator", + "url": "https://babeljs.io/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/helper-annotate-as-pure", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/helper-builder-binary-assignment-operator-visitor", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/helper-call-delegate", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/helper-create-class-features-plugin", + "url": "https://babeljs.io/team", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/helper-define-map", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/helper-explode-assignable-expression", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/helper-function-name", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/helper-get-function-arity", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/helper-hoist-variables", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/helper-member-expression-to-functions", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/helper-module-imports", + "url": "https://babeljs.io/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/helper-module-transforms", + "url": "https://babeljs.io/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/helper-optimise-call-expression", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/helper-plugin-utils", + "url": "https://babeljs.io/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/helper-regex", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/helper-remap-async-to-generator", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/helper-replace-supers", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/helper-simple-access", + "url": "https://babeljs.io/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/helper-split-export-declaration", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/helper-wrap-function", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/helpers", + "url": "https://babeljs.io/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/highlight", + "url": "https://babeljs.io/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/parser", + "url": "https://babeljs.io/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-proposal-async-generator-functions", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-proposal-class-properties", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-proposal-decorators", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-proposal-json-strings", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-proposal-object-rest-spread", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-proposal-optional-catch-binding", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-proposal-unicode-property-regex", + "url": "https://babeljs.io/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-syntax-async-generators", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-syntax-decorators", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-syntax-dynamic-import", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-syntax-json-strings", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-syntax-jsx", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-syntax-object-rest-spread", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-syntax-optional-catch-binding", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-transform-arrow-functions", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-transform-async-to-generator", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-transform-block-scoped-functions", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-transform-block-scoping", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-transform-classes", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-transform-computed-properties", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-transform-destructuring", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-transform-dotall-regex", + "url": "https://babeljs.io/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-transform-duplicate-keys", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-transform-exponentiation-operator", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-transform-for-of", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-transform-function-name", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-transform-literals", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-transform-member-expression-literals", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-transform-modules-amd", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-transform-modules-commonjs", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-transform-modules-systemjs", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-transform-modules-umd", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-transform-named-capturing-groups-regex", + "url": "https://babeljs.io/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-transform-new-target", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-transform-object-super", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-transform-parameters", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-transform-property-literals", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-transform-regenerator", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-regenerator", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-transform-reserved-words", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-transform-runtime", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-transform-shorthand-properties", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-transform-spread", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-transform-sticky-regex", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-transform-template-literals", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-transform-typeof-symbol", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/plugin-transform-unicode-regex", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/preset-env", + "url": "https://babeljs.io/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/runtime", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/template", + "url": "https://babeljs.io/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/traverse", + "url": "https://babeljs.io/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@babel/types", + "url": "https://babeljs.io/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@csstools/convert-colors", + "url": "https://github.com/jonathantneal/convert-colors#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "CC0-1.0" + ] + }, + { + "name": "@nuxt/babel-preset-app", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@nuxt/builder", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@nuxt/cli", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@nuxt/config", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@nuxt/core", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@nuxt/devalue", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "lil" + ] + }, + { + "name": "@nuxt/friendly-errors-webpack-plugin", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@nuxt/generator", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@nuxt/loading-screen", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@nuxt/opencollective", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@nuxt/server", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@nuxt/utils", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@nuxt/vue-app", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@nuxt/vue-renderer", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@nuxt/webpack", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@nuxtjs/axios", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@nuxtjs/browserconfig", + "url": "https://github.com/nuxt/modules/tree/master/modules/browserconfig", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@nuxtjs/cssnano", + "url": "https://github.com/nuxt/modules/tree/master/modules/cssnano", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@nuxtjs/icon", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@nuxtjs/manifest", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@nuxtjs/markdownit", + "url": "https://github.com/nuxt/modules/tree/master/modules/markdownit", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@nuxtjs/markdownit-loader", + "url": "https://github.com/nuxt-community/markdownit-loader#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@nuxtjs/optimize", + "url": "https://github.com/nuxt/modules/tree/master/modules/optimize", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@nuxtjs/proxy", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@nuxtjs/sitemap", + "url": "https://github.com/nuxt/modules/tree/master/modules/sitemap", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@nuxtjs/workbox", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@nuxtjs/youch", + "url": "https://github.com/poppinss/nuxt#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@types/q", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@vue/babel-helper-vue-jsx-merge-props", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@vue/babel-plugin-transform-vue-jsx", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@vue/babel-preset-jsx", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@vue/babel-sugar-functional-vue", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@vue/babel-sugar-inject-h", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@vue/babel-sugar-v-model", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@vue/babel-sugar-v-on", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@vue/component-compiler-utils", + "url": "https://github.com/vuejs/component-compiler-utils#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@webassemblyjs/ast", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@webassemblyjs/floating-point-hex-parser", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@webassemblyjs/helper-api-error", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@webassemblyjs/helper-buffer", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@webassemblyjs/helper-code-frame", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@webassemblyjs/helper-fsm", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "@webassemblyjs/helper-module-context", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@webassemblyjs/helper-wasm-bytecode", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@webassemblyjs/helper-wasm-section", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@webassemblyjs/ieee754", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@webassemblyjs/leb128", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@webassemblyjs/utf8", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@webassemblyjs/wasm-edit", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@webassemblyjs/wasm-gen", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@webassemblyjs/wasm-opt", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@webassemblyjs/wasm-parser", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@webassemblyjs/wast-parser", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@webassemblyjs/wast-printer", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "@xtuc/ieee754", + "url": "http://feross.org", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "@xtuc/long", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "abab", + "url": "https://github.com/jsdom/abab#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "abbrev", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "accepts", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "acorn", + "url": "https://github.com/ternjs/acorn", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "acorn", + "url": "https://github.com/acornjs/acorn", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "acorn", + "url": "https://github.com/acornjs/acorn", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "acorn", + "url": "https://github.com/acornjs/acorn", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "acorn-dynamic-import", + "url": "https://github.com/kesne/acorn-dynamic-import", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "acorn-globals", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "acorn-jsx", + "url": "https://github.com/RReverser/acorn-jsx", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "acorn-walk", + "url": "https://github.com/acornjs/acorn", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "ajv", + "url": "https://github.com/epoberezkin/ajv", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "ajv", + "url": "https://github.com/epoberezkin/ajv", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "ajv-errors", + "url": "https://github.com/epoberezkin/ajv-errors#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "ajv-keywords", + "url": "https://github.com/epoberezkin/ajv-keywords#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "ajv-keywords", + "url": "https://github.com/epoberezkin/ajv-keywords#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "align-text", + "url": "https://github.com/jonschlinkert/align-text", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "alphanum-sort", + "url": "https://github.com/TrySound/alphanum-sort", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "amdefine", + "url": "http://github.com/jrburke/amdefine", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "bsd-3-clause or mit" + ] + }, + { + "name": "ansi-align", + "url": "https://github.com/nexdrew/ansi-align#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "ansi-colors", + "url": "https://github.com/doowb/ansi-colors", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "ansi-escapes", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "ansi-escapes", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "ansi-html", + "url": "https://github.com/Tjatse/ansi-html", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "ansi-regex", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "ansi-regex", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "ansi-regex", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "ansi-styles", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "ansi-styles", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "anymatch", + "url": "https://github.com/es128/anymatch", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "anymatch", + "url": "https://github.com/micromatch/anymatch", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "anymatch", + "url": "https://github.com/micromatch/anymatch", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "append-transform", + "url": "github.com/jamestalmage", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "aproba", + "url": "https://github.com/iarna/aproba", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "archy", + "url": "http://substack.net", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "are-we-there-yet", + "url": "https://github.com/iarna/are-we-there-yet", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "argparse", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "arr-diff", + "url": "https://github.com/jonschlinkert/arr-diff", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "arr-diff", + "url": "https://github.com/jonschlinkert/arr-diff", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "arr-flatten", + "url": "https://github.com/jonschlinkert/arr-flatten", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "arr-union", + "url": "https://github.com/jonschlinkert/arr-union", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "array-equal", + "url": "http://jongleberry.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "array-filter", + "url": "https://github.com/juliangruber/array-filter", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "array-flatten", + "url": "https://github.com/blakeembrey/array-flatten", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "array-map", + "url": "https://github.com/substack/array-map", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "array-reduce", + "url": "https://github.com/substack/array-reduce", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "array-union", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "array-uniq", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "array-unique", + "url": "https://github.com/jonschlinkert/array-unique", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "array-unique", + "url": "https://github.com/jonschlinkert/array-unique", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "arrify", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "asn1", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "asn1", + "url": "joyent.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "asn1.js", + "url": "https://github.com/indutny/asn1.js", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "assert", + "url": "https://github.com/browserify/commonjs-assert", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "assert-plus", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "mit*" + ] + }, + { + "name": "assert-plus", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "assertion-error", + "url": "http://qualiancy.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "assign-symbols", + "url": "https://github.com/jonschlinkert/assign-symbols", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "async", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "async", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "async", + "url": "https://caolan.github.io/async/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "async-cache", + "url": "http://blog.izs.me/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "async-each", + "url": "https://github.com/paulmillr/async-each/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "async-limiter", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "asynckit", + "url": "https://github.com/alexindigo/asynckit#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "atob", + "url": "https://git.coolaj86.com/coolaj86/atob.js.git", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "(mit or apache-2.0)" + ] + }, + { + "name": "autoprefixer", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "autoprefixer", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "aws-sign2", + "url": "http://www.futurealoof.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "apache*" + ] + }, + { + "name": "aws-sign2", + "url": "http://www.futurealoof.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "aws4", + "url": "http://github.com/mhart", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "axios", + "url": "https://github.com/axios/axios", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "axios-retry", + "url": "https://github.com/softonic/axios-retry", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "babel-code-frame", + "url": "https://babeljs.io/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "babel-eslint", + "url": "https://github.com/babel/babel-eslint", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "babel-generator", + "url": "https://babeljs.io/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "babel-loader", + "url": "https://github.com/babel/babel-loader", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "babel-messages", + "url": "https://babeljs.io/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "babel-runtime", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "babel-template", + "url": "https://babeljs.io/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "babel-traverse", + "url": "https://babeljs.io/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "babel-types", + "url": "https://babeljs.io/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "babylon", + "url": "https://babeljs.io/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "balanced-match", + "url": "https://github.com/juliangruber/balanced-match", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "balanced-match", + "url": "https://github.com/juliangruber/balanced-match", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "base", + "url": "https://github.com/node-base/base", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "base64-js", + "url": "https://github.com/beatgammit/base64-js", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "bcrypt-pbkdf", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "bezier-easing", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "bfj", + "url": "https://gitlab.com/philbooth/bfj", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "big.js", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "big.js", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "bignumber.js", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "binary-extensions", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "binary-extensions", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "bl", + "url": "https://github.com/rvagg/bl", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "bluebird", + "url": "https://github.com/petkaantonov/bluebird", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "bmp-js", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "bn.js", + "url": "https://github.com/indutny/bn.js", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "body-parser", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "boolbase", + "url": "https://github.com/fb55/boolbase", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "boom", + "url": "http://hueniverse.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "boom", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "boom", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "boxen", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "brace-expansion", + "url": "https://github.com/juliangruber/brace-expansion", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "braces", + "url": "https://github.com/jonschlinkert/braces", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "braces", + "url": "https://github.com/micromatch/braces", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "braces", + "url": "https://github.com/micromatch/braces", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "brorand", + "url": "https://github.com/indutny/brorand", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "browser-env", + "url": "https://github.com/lukechilds/browser-env#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "browser-process-hrtime", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "name": "browser-stdout", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "browserify-aes", + "url": "https://github.com/crypto-browserify/browserify-aes", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "browserify-cipher", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "browserify-des", + "url": "https://github.com/crypto-browserify/browserify-des#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "browserify-rsa", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "browserify-sign", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "browserify-zlib", + "url": "https://github.com/devongovett/browserify-zlib", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "browserslist", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "browserslist", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "buffer", + "url": "https://github.com/feross/buffer", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "buffer-equal", + "url": "http://substack.net", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "buffer-from", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "buffer-json", + "url": "https://github.com/jprichardson/buffer-json#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "buffer-xor", + "url": "https://github.com/crypto-browserify/buffer-xor", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "builtin-modules", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "builtin-status-codes", + "url": "bendrucker.me", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "bytes", + "url": "http://tjholowaychuk.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "bytes", + "url": "http://tjholowaychuk.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "cacache", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "cache-base", + "url": "https://github.com/jonschlinkert/cache-base", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "cache-loader", + "url": "https://github.com/webpack-contrib/cache-loader", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "caching-transform", + "url": "github.com/jamestalmage", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "caller-callsite", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "caller-path", + "url": "http://sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "caller-path", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "callsites", + "url": "http://sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "callsites", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "camel-case", + "url": "https://github.com/blakeembrey/camel-case", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "camelcase", + "url": "http://sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "camelcase", + "url": "http://sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "camelcase", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "camelcase", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "caniuse-api", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "caniuse-api", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "caniuse-db", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "CC-BY-4.0" + ] + }, + { + "name": "caniuse-lite", + "url": "http://beneb.info", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "CC-BY-4.0" + ] + }, + { + "name": "caseless", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "caseless", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-4-Clause" + ] + }, + { + "name": "center-align", + "url": "https://github.com/jonschlinkert/center-align", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "chai", + "url": "http://chaijs.com/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "chalk", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "chalk", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "chalk", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "chardet", + "url": "https://github.com/runk/node-chardet", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "check-error", + "url": "http://alogicalparadox.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "check-types", + "url": "https://gitlab.com/philbooth/check-types.js", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "chokidar", + "url": "https://github.com/paulmillr/chokidar", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "chokidar", + "url": "https://github.com/paulmillr/chokidar", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "chownr", + "url": "http://blog.izs.me/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "chrome-trace-event", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "ci-info", + "url": "https://github.com/watson/ci-info", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "ci-info", + "url": "https://github.com/watson/ci-info", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "cipher-base", + "url": "https://github.com/crypto-browserify/cipher-base#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "circular-json", + "url": "https://github.com/WebReflection/circular-json", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "clap", + "url": "https://github.com/lahmatiy/clap", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "class-utils", + "url": "https://github.com/jonschlinkert/class-utils", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "clean-css", + "url": "https://github.com/jakubpawlowicz/clean-css", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "cli-boxes", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "cli-cursor", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "cli-width", + "url": "https://github.com/knownasilya/cli-width", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "cliui", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "cliui", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "cliui", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "clone", + "url": "http://paul.vorba.ch/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "co", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "coa", + "url": "http://github.com/veged/coa", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "coa", + "url": "http://github.com/veged/coa", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "code-point-at", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "codecov.io", + "url": "https://github.com/cainus/codecov.io", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "collection-visit", + "url": "https://github.com/jonschlinkert/collection-visit", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "color", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "color", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "color-convert", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "color-name", + "url": "https://github.com/dfcreative/color-name", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "color-name", + "url": "https://github.com/colorjs/color-name", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "color-string", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "color-string", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "colormin", + "url": "https://github.com/ben-eb/colormin", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "colors", + "url": "https://github.com/Marak/colors.js", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "combined-stream", + "url": "https://github.com/felixge/node-combined-stream", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "combined-stream", + "url": "https://github.com/felixge/node-combined-stream", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "commander", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "commander", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "commander", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "commander", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "commondir", + "url": "http://substack.net", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "component-emitter", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "compressible", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "compression", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "concat-map", + "url": "http://substack.net", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "concat-stream", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "concat-stream", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "connect", + "url": "http://tjholowaychuk.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "consola", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "console-browserify", + "url": "https://github.com/Raynos/console-browserify", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "console-control-strings", + "url": "http://re-becca.org/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "consolidate", + "url": "https://github.com/tj/consolidate.js", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "constants-browserify", + "url": "https://github.com/juliangruber/constants-browserify", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "contains-path", + "url": "https://github.com/jonschlinkert/contains-path", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "content-disposition", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "content-type", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "content-type-parser", + "url": "https://domenic.me/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "convert-source-map", + "url": "https://github.com/thlorenz/convert-source-map", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "convert-source-map", + "url": "https://github.com/thlorenz/convert-source-map", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "cookie", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "cookie", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "cookie-signature", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "copy-concurrently", + "url": "https://www.npmjs.com/package/copy-concurrently", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "copy-descriptor", + "url": "https://github.com/jonschlinkert/copy-descriptor", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "core-js", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "core-js-compat", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "core-js-pure", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "core-util-is", + "url": "http://blog.izs.me/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "cosmiconfig", + "url": "https://github.com/davidtheclark/cosmiconfig#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "cosmiconfig", + "url": "https://github.com/davidtheclark/cosmiconfig#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "coveralls", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "name": "create-ecdh", + "url": "https://github.com/crypto-browserify/createECDH", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "create-hash", + "url": "https://github.com/crypto-browserify/createHash", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "create-hmac", + "url": "https://github.com/crypto-browserify/createHmac", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "cross-spawn", + "url": "http://indigounited.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "cross-spawn", + "url": "http://indigounited.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "cross-spawn", + "url": "https://github.com/moxystudio/node-cross-spawn", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "cryptiles", + "url": "http://hueniverse.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "cryptiles", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "crypto-browserify", + "url": "https://github.com/crypto-browserify/crypto-browserify", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "css-blank-pseudo", + "url": "https://github.com/csstools/css-blank-pseudo#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "CC0-1.0" + ] + }, + { + "name": "css-color-names", + "url": "http://www.daveeddy.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "css-declaration-sorter", + "url": "https://selwyn.cc/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "css-has-pseudo", + "url": "https://github.com/csstools/css-has-pseudo#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "CC0-1.0" + ] + }, + { + "name": "css-loader", + "url": "https://github.com/webpack-contrib/css-loader", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "css-parse", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "css-prefers-color-scheme", + "url": "https://github.com/csstools/css-prefers-color-scheme#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "CC0-1.0" + ] + }, + { + "name": "css-select", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "name": "css-select", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "name": "css-select-base-adapter", + "url": "https://github.com/nrkn/css-select-base-adapter#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "css-tree", + "url": "https://github.com/csstree/csstree", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "css-tree", + "url": "https://github.com/csstree/csstree", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "css-unit-converter", + "url": "https://github.com/andyjansson/css-unit-converter", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "css-url-regex", + "url": "https://github.com/johnotander/css-url-regex", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "css-what", + "url": "http://feedic.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "name": "cssdb", + "url": "https://github.com/csstools/cssdb#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "CC0-1.0" + ] + }, + { + "name": "cssesc", + "url": "https://mths.be/cssesc", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "cssesc", + "url": "https://mths.be/cssesc", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "cssnano", + "url": "https://github.com/ben-eb/cssnano", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "cssnano", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "cssnano-preset-default", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "cssnano-util-get-arguments", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "cssnano-util-get-match", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "cssnano-util-raw-cache", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "cssnano-util-same-parent", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "csso", + "url": "https://github.com/css/csso", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "csso", + "url": "https://github.com/css/csso", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "cssom", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "cssstyle", + "url": "https://github.com/chad3814/CSSStyleDeclaration", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "ctype", + "url": "https://github.com/rmustacc/node-ctype", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "cuint", + "url": "https://github.com/pierrec/js-cuint", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "cyclist", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "mit*" + ] + }, + { + "name": "dashdash", + "url": "http://trentm.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "data2xml", + "url": "https://github.com/chilts/data2xml", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "date-fns", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "date-now", + "url": "https://github.com/Colingo/date-now", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "de-indent", + "url": "https://github.com/yyx990803/de-indent#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "debug", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "debug", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "debug", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "debug", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "debug", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "debug-log", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "decamelize", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "decode-uri-component", + "url": "github.com/SamVerschueren", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "decouple", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "deep-eql", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "deep-equal", + "url": "http://substack.net", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "deep-extend", + "url": "https://github.com/unclechu/node-deep-extend", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "deep-is", + "url": "http://thlorenz.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "deepmerge", + "url": "https://github.com/TehShrike/deepmerge", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "default-require-extensions", + "url": "github.com/jamestalmage", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "define-properties", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "define-property", + "url": "https://github.com/jonschlinkert/define-property", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "define-property", + "url": "https://github.com/jonschlinkert/define-property", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "define-property", + "url": "https://github.com/jonschlinkert/define-property", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "defined", + "url": "https://github.com/substack/defined", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "defined", + "url": "https://github.com/substack/defined", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "defu", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "del", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "delayed-stream", + "url": "https://github.com/felixge/node-delayed-stream", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "delayed-stream", + "url": "https://github.com/felixge/node-delayed-stream", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "delegates", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "depd", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "des.js", + "url": "https://github.com/indutny/des.js#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "destroy", + "url": "http://jongleberry.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "detect-indent", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "detect-indent", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "detect-libc", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "diff", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "diffie-hellman", + "url": "https://github.com/crypto-browserify/diffie-hellman", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "doctrine", + "url": "https://github.com/eslint/doctrine", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "name": "doctrine", + "url": "https://github.com/eslint/doctrine", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "dom-converter", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "dom-serializer", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "dom-walk", + "url": "https://github.com/Raynos/dom-walk", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "domain-browser", + "url": "https://github.com/bevry/domain-browser", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "domelementtype", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "name": "domelementtype", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "name": "domexception", + "url": "https://domenic.me/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "domhandler", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "name": "domutils", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "name": "domutils", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "name": "dot-prop", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "duplexer", + "url": "https://github.com/Raynos/duplexer", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "duplexify", + "url": "https://github.com/mafintosh/duplexify", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "ecc-jsbn", + "url": "https://github.com/quartzjer/ecc-jsbn", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "ee-first", + "url": "http://jongleberry.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "ejs", + "url": "https://github.com/mde/ejs", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "electron-to-chromium", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "elliptic", + "url": "https://github.com/indutny/elliptic", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "emitter", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "emoji-regex", + "url": "https://mths.be/emoji-regex", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "emojis-list", + "url": "https://github.com/Kikobeats/emojis-list", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "encodeurl", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "end-of-stream", + "url": "https://github.com/mafintosh/end-of-stream", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "enhanced-resolve", + "url": "http://github.com/webpack/enhanced-resolve", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "enhanced-resolve", + "url": "http://github.com/webpack/enhanced-resolve", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "entities", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "name": "entities", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "name": "errno", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "error-ex", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "error-stack-parser", + "url": "https://www.stacktracejs.com/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "es-abstract", + "url": "http://ljharb.codes", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "es-to-primitive", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "es6-promise", + "url": "Conversion to ES6 API by Jake Archibald", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "escape-html", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "escape-string-regexp", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "escodegen", + "url": "http://github.com/estools/escodegen", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "name": "eslint", + "url": "https://eslint.org/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "eslint-config-standard", + "url": "https://github.com/feross/eslint-config-standard", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "eslint-import-resolver-node", + "url": "https://github.com/benmosher/eslint-plugin-import", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "eslint-loader", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "eslint-module-utils", + "url": "https://github.com/benmosher/eslint-plugin-import#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "eslint-plugin-html", + "url": "https://github.com/BenoitZugmeyer/eslint-plugin-html", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "eslint-plugin-import", + "url": "https://github.com/benmosher/eslint-plugin-import", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "eslint-plugin-node", + "url": "https://github.com/mysticatea/eslint-plugin-node#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "eslint-plugin-promise", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "eslint-plugin-standard", + "url": "https://github.com/xjamundx/eslint-plugin-standard#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "eslint-scope", + "url": "http://github.com/eslint/eslint-scope", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "name": "eslint-scope", + "url": "http://github.com/eslint/eslint-scope", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "name": "eslint-visitor-keys", + "url": "https://github.com/eslint/eslint-visitor-keys#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "esm", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "espree", + "url": "https://github.com/eslint/espree", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "name": "esprima", + "url": "http://esprima.org/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "name": "esprima", + "url": "http://esprima.org/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "name": "esprima", + "url": "http://esprima.org/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "name": "esquery", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "esrecurse", + "url": "https://github.com/estools/esrecurse", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "name": "estraverse", + "url": "https://github.com/estools/estraverse", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "name": "esutils", + "url": "https://github.com/estools/esutils", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "name": "etag", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "eventemitter3", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "events", + "url": "http://jeditoolkit.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "eventsource-polyfill", + "url": "https://github.com/amvtek/EventSource", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "evp_bytestokey", + "url": "https://github.com/crypto-browserify/EVP_BytesToKey", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "execa", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "execa", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "exif-parser", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "exit", + "url": "https://github.com/cowboy/node-exit", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "expand-brackets", + "url": "https://github.com/jonschlinkert/expand-brackets", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "expand-brackets", + "url": "https://github.com/jonschlinkert/expand-brackets", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "expand-range", + "url": "https://github.com/jonschlinkert/expand-range", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "express", + "url": "http://expressjs.com/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "extend", + "url": "http://www.justmoon.net", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "extend-shallow", + "url": "https://github.com/jonschlinkert/extend-shallow", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "extend-shallow", + "url": "https://github.com/jonschlinkert/extend-shallow", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "external-editor", + "url": "https://github.com/mrkmg/node-external-editor#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "extglob", + "url": "https://github.com/jonschlinkert/extglob", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "extglob", + "url": "https://github.com/micromatch/extglob", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "extract-css-chunks-webpack-plugin", + "url": "http://github.com/faceyspacey/extract-css-chunks-webpack-plugin", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "extsprintf", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "extsprintf", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "fast-deep-equal", + "url": "https://github.com/epoberezkin/fast-deep-equal#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "fast-deep-equal", + "url": "https://github.com/epoberezkin/fast-deep-equal#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "fast-json-stable-stringify", + "url": "https://github.com/epoberezkin/fast-json-stable-stringify", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "fast-levenshtein", + "url": "http://www.hiddentao.com/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "figgy-pudding", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "figures", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "figures", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "file-entry-cache", + "url": "http://royriojas.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "file-loader", + "url": "https://github.com/webpack-contrib/file-loader", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "file-type", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "filename-regex", + "url": "https://github.com/regexhq/filename-regex", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "filesize", + "url": "https://filesizejs.com/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "fill-range", + "url": "https://github.com/jonschlinkert/fill-range", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "fill-range", + "url": "https://github.com/jonschlinkert/fill-range", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "fill-range", + "url": "https://github.com/jonschlinkert/fill-range", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "finalhandler", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "find-cache-dir", + "url": "github.com/jamestalmage", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "find-cache-dir", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "find-up", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "find-up", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "find-up", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "flat-cache", + "url": "http://royriojas.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "flatten", + "url": "http://jesusabdullah.net", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "flush-write-stream", + "url": "https://github.com/mafintosh/flush-write-stream", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "follow-redirects", + "url": "https://github.com/olalonde/follow-redirects", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "for-each", + "url": "https://github.com/Raynos/for-each", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "for-in", + "url": "https://github.com/jonschlinkert/for-in", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "for-own", + "url": "https://github.com/jonschlinkert/for-own", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "foreground-child", + "url": "https://github.com/tapjs/foreground-child#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "forever-agent", + "url": "http://www.futurealoof.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "apache*" + ] + }, + { + "name": "forever-agent", + "url": "http://www.futurealoof.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "form-data", + "url": "http://debuggable.com/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "form-data", + "url": "http://debuggable.com/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "forwarded", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "fragment-cache", + "url": "https://github.com/jonschlinkert/fragment-cache", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "fresh", + "url": "http://tjholowaychuk.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "from2", + "url": "https://github.com/hughsk/from2", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "front-matter", + "url": "https://github.com/jxson/front-matter", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "fs-extra", + "url": "https://github.com/jprichardson/node-fs-extra", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "fs-extra", + "url": "https://github.com/jprichardson/node-fs-extra", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "fs-extra", + "url": "https://github.com/jprichardson/node-fs-extra", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "fs-extra", + "url": "https://github.com/jprichardson/node-fs-extra", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "fs-extra", + "url": "https://github.com/jprichardson/node-fs-extra", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "fs-minipass", + "url": "https://github.com/npm/fs-minipass#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "fs-write-stream-atomic", + "url": "https://github.com/npm/fs-write-stream-atomic", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "fs.realpath", + "url": "http://blog.izs.me/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "fsevents", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "unknown" + ] + }, + { + "name": "fsevents", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "unknown" + ] + }, + { + "name": "function-bind", + "url": "https://github.com/Raynos/function-bind", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "functional-red-black-tree", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "gauge", + "url": "https://github.com/iarna/gauge", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "get-caller-file", + "url": "https://github.com/stefanpenner/get-caller-file#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "get-func-name", + "url": "http://alogicalparadox.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "get-stream", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "get-stream", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "get-value", + "url": "https://github.com/jonschlinkert/get-value", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "getpass", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "glob", + "url": "http://blog.izs.me/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "glob", + "url": "http://blog.izs.me/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "glob", + "url": "http://blog.izs.me/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "glob", + "url": "http://blog.izs.me/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "glob-base", + "url": "https://github.com/jonschlinkert/glob-base", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "glob-parent", + "url": "https://github.com/es128/glob-parent", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "glob-parent", + "url": "https://github.com/es128/glob-parent", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "glob-parent", + "url": "https://gulpjs.com/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "global", + "url": "https://github.com/Raynos/global", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "globals", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "globals", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "globals", + "url": "http://sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "globby", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "graceful-fs", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "graceful-fs", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "graceful-readlink", + "url": "https://github.com/zhiyelee/graceful-readlink", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "growl", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "gzip-size", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "handlebars", + "url": "http://www.handlebarsjs.com/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "har-schema", + "url": "https://github.com/ahmadnassri/har-schema", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "har-validator", + "url": "https://github.com/ahmadnassri/har-validator", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "hard-source-webpack-plugin", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "has", + "url": "https://github.com/tarruda/has", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "has-ansi", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "has-flag", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "has-flag", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "has-symbols", + "url": "http://ljharb.codes", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "has-unicode", + "url": "https://github.com/iarna/has-unicode", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "has-value", + "url": "https://github.com/jonschlinkert/has-value", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "has-value", + "url": "https://github.com/jonschlinkert/has-value", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "has-values", + "url": "https://github.com/jonschlinkert/has-values", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "has-values", + "url": "https://github.com/jonschlinkert/has-values", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "hash-base", + "url": "https://github.com/crypto-browserify/hash-base", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "hash-sum", + "url": "https://github.com/bevacqua/hash-sum", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "hash.js", + "url": "https://github.com/indutny/hash.js", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "hawk", + "url": "http://hueniverse.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "hawk", + "url": "http://hueniverse.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "he", + "url": "https://mths.be/he", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "he", + "url": "https://mths.be/he", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "hex-color-regex", + "url": "http://www.tunnckocore.tk", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "highlight.js", + "url": "https://highlightjs.org/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "hmac-drbg", + "url": "https://github.com/indutny/hmac-drbg#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "hoek", + "url": "http://hueniverse.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "see license in license" + ] + }, + { + "name": "hoek", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "hoopy", + "url": "https://gitlab.com/philbooth/hoopy#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "hosted-git-info", + "url": "https://github.com/npm/hosted-git-info", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "hsl-regex", + "url": "https://github.com/regexps/hsl-regex", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "hsla-regex", + "url": "https://github.com/regexps/hsla-regex", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "html-comment-regex", + "url": "https://github.com/stevemao/html-comment-regex", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "html-encoding-sniffer", + "url": "https://domenic.me/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "html-entities", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "html-minifier", + "url": "https://kangax.github.io/html-minifier/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "html-minifier", + "url": "https://kangax.github.io/html-minifier/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "html-tags", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "html-webpack-plugin", + "url": "https://github.com/jantimon/html-webpack-plugin", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "htmlparser2", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "htmlparser2", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "http-errors", + "url": "http://jongleberry.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "http-proxy", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "http-proxy-middleware", + "url": "https://github.com/chimurai/http-proxy-middleware", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "http-signature", + "url": "https://github.com/joyent/node-http-signature/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "http-signature", + "url": "https://github.com/joyent/node-http-signature/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "https-browserify", + "url": "https://github.com/substack/https-browserify", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "husky", + "url": "https://github.com/typicode/husky", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "iconv-lite", + "url": "https://github.com/ashtuchkin/iconv-lite", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "iconv-lite", + "url": "https://github.com/ashtuchkin/iconv-lite", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "icss-replace-symbols", + "url": "https://github.com/css-modules/icss-replace-symbols#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "icss-utils", + "url": "https://github.com/css-modules/icss-utils#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "ieee754", + "url": "http://feross.org", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "iferr", + "url": "https://github.com/shesek/iferr", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "ignore", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "ignore", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "ignore-walk", + "url": "http://blog.izs.me/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "import-cwd", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "import-fresh", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "import-from", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "imurmurhash", + "url": "https://github.com/jensyt/imurmurhash-js", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "indexes-of", + "url": "https://github.com/dominictarr/indexes-of", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "indexof", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "mit*" + ] + }, + { + "name": "inflight", + "url": "https://github.com/isaacs/inflight", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "inherits", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "inherits", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "ini", + "url": "http://blog.izs.me/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "inquirer", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "interpret", + "url": "https://github.com/tkellen/node-interpret", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "invariant", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "invariant", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "invert-kv", + "url": "http://sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "ip", + "url": "https://github.com/indutny/node-ip", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "ip-regex", + "url": "http://sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "ipaddr.js", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-absolute-url", + "url": "http://sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-accessor-descriptor", + "url": "https://github.com/jonschlinkert/is-accessor-descriptor", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-accessor-descriptor", + "url": "https://github.com/jonschlinkert/is-accessor-descriptor", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-arrayish", + "url": "http://github.com/qix-", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-arrayish", + "url": "http://github.com/qix-", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-binary-path", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-binary-path", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-buffer", + "url": "http://feross.org/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-callable", + "url": "http://ljharb.codes", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-ci", + "url": "https://github.com/watson/is-ci", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-color-stop", + "url": "https://github.com/pigcan/is-color-stop#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-data-descriptor", + "url": "https://github.com/jonschlinkert/is-data-descriptor", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-data-descriptor", + "url": "https://github.com/jonschlinkert/is-data-descriptor", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-date-object", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-descriptor", + "url": "https://github.com/jonschlinkert/is-descriptor", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-descriptor", + "url": "https://github.com/jonschlinkert/is-descriptor", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-directory", + "url": "https://github.com/jonschlinkert/is-directory", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-dotfile", + "url": "https://github.com/jonschlinkert/is-dotfile", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-equal-shallow", + "url": "https://github.com/jonschlinkert/is-equal-shallow", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-extendable", + "url": "https://github.com/jonschlinkert/is-extendable", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-extendable", + "url": "https://github.com/jonschlinkert/is-extendable", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-extglob", + "url": "https://github.com/jonschlinkert/is-extglob", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-extglob", + "url": "https://github.com/jonschlinkert/is-extglob", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-finite", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-fullwidth-code-point", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-fullwidth-code-point", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-function", + "url": "https://github.com/grncdr/js-is-function", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-glob", + "url": "https://github.com/jonschlinkert/is-glob", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-glob", + "url": "https://github.com/jonschlinkert/is-glob", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-glob", + "url": "https://github.com/micromatch/is-glob", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-https", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-number", + "url": "https://github.com/jonschlinkert/is-number", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-number", + "url": "https://github.com/jonschlinkert/is-number", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-number", + "url": "https://github.com/jonschlinkert/is-number", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-number", + "url": "https://github.com/jonschlinkert/is-number", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-obj", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-path-cwd", + "url": "http://sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-path-in-cwd", + "url": "http://sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-path-inside", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-plain-obj", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-plain-object", + "url": "https://github.com/jonschlinkert/is-plain-object", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-posix-bracket", + "url": "https://github.com/jonschlinkert/is-posix-bracket", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-primitive", + "url": "https://github.com/jonschlinkert/is-primitive", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-promise", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-regex", + "url": "https://github.com/ljharb/is-regex", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-resolvable", + "url": "https://github.com/shinnn", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "is-retry-allowed", + "url": "github.com/floatdrop", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-stream", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-svg", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-svg", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-symbol", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-typedarray", + "url": "https://github.com/hughsk/is-typedarray", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-utf8", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-windows", + "url": "https://github.com/jonschlinkert/is-windows", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "is-wsl", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "isarray", + "url": "https://github.com/juliangruber/isarray", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "isarray", + "url": "https://github.com/juliangruber/isarray", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "isexe", + "url": "https://github.com/isaacs/isexe#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "isobject", + "url": "https://github.com/jonschlinkert/isobject", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "isobject", + "url": "https://github.com/jonschlinkert/isobject", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "isstream", + "url": "https://github.com/rvagg/isstream", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "istanbul-lib-coverage", + "url": "https://github.com/istanbuljs/istanbuljs", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "istanbul-lib-hook", + "url": "https://github.com/istanbuljs/istanbuljs#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "istanbul-lib-instrument", + "url": "https://github.com/istanbuljs/istanbuljs", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "istanbul-lib-report", + "url": "https://github.com/istanbuljs/istanbuljs", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "istanbul-lib-source-maps", + "url": "https://github.com/istanbuljs/istanbuljs#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "istanbul-reports", + "url": "https://github.com/istanbuljs/istanbuljs", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "jimp", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "jpeg-js", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "js-base64", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "js-levenshtein", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "js-tokens", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "js-tokens", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "js-yaml", + "url": "https://github.com/nodeca/js-yaml", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "js-yaml", + "url": "https://github.com/nodeca/js-yaml", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "js-yaml", + "url": "https://github.com/nodeca/js-yaml", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "jsbn", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "jsdom", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "jsesc", + "url": "http://mths.be/jsesc", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "jsesc", + "url": "https://mths.be/jsesc", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "jsesc", + "url": "https://mths.be/jsesc", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "json-parse-better-errors", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "json-schema", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "bsd*" + ] + }, + { + "name": "json-schema-traverse", + "url": "https://github.com/epoberezkin/json-schema-traverse#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "json-schema-traverse", + "url": "https://github.com/epoberezkin/json-schema-traverse#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "json-stable-stringify-without-jsonify", + "url": "https://github.com/samn/json-stable-stringify", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "json-stringify-safe", + "url": "https://github.com/isaacs/json-stringify-safe", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "json3", + "url": "http://bestiejs.github.io/json3", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "json5", + "url": "http://json5.org/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "json5", + "url": "http://json5.org/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "json5", + "url": "http://json5.org/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "jsonfile", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "jsonfile", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "jsonfile", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "jsonify", + "url": "http://crockford.com/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "public domain" + ] + }, + { + "name": "jsprim", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "kind-of", + "url": "https://github.com/jonschlinkert/kind-of", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "kind-of", + "url": "https://github.com/jonschlinkert/kind-of", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "kind-of", + "url": "https://github.com/jonschlinkert/kind-of", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "kind-of", + "url": "https://github.com/jonschlinkert/kind-of", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "klaw", + "url": "https://github.com/jprichardson/node-klaw#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "last-call-webpack-plugin", + "url": "http://github.com/NMFR/last-call-webpack-plugin", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "launch-editor", + "url": "https://github.com/yyx990803/launch-editor#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "launch-editor-middleware", + "url": "https://github.com/yyx990803/launch-editor#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "lazy-cache", + "url": "https://github.com/jonschlinkert/lazy-cache", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "lcid", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "lcov-parse", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "left-pad", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "WTFPL" + ] + }, + { + "name": "levn", + "url": "https://github.com/gkz/levn", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "linkify-it", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "load-bmfont", + "url": "https://github.com/Jam3/load-bmfont", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "load-json-file", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "load-json-file", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "loader-fs-cache", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "loader-runner", + "url": "https://github.com/webpack/loader-runner#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "loader-utils", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "loader-utils", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "locate-path", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "locate-path", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "lodash", + "url": "https://lodash.com/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "lodash", + "url": "https://lodash.com/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "lodash._baseassign", + "url": "https://lodash.com/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "lodash._basecopy", + "url": "https://lodash.com/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "lodash._basecreate", + "url": "https://lodash.com/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "lodash._getnative", + "url": "https://lodash.com/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "lodash._isiterateecall", + "url": "https://lodash.com/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "lodash._reinterpolate", + "url": "https://lodash.com/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "lodash.assign", + "url": "https://lodash.com/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "lodash.clonedeep", + "url": "https://lodash.com/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "lodash.cond", + "url": "https://lodash.com/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "lodash.create", + "url": "https://lodash.com/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "lodash.isarguments", + "url": "https://lodash.com/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "lodash.isarray", + "url": "https://lodash.com/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "lodash.isplainobject", + "url": "https://lodash.com/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "lodash.kebabcase", + "url": "https://lodash.com/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "lodash.keys", + "url": "https://lodash.com/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "lodash.memoize", + "url": "https://lodash.com/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "lodash.merge", + "url": "https://lodash.com/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "lodash.sortby", + "url": "https://lodash.com/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "lodash.template", + "url": "https://lodash.com/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "lodash.templatesettings", + "url": "https://lodash.com/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "lodash.uniq", + "url": "https://lodash.com/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "lodash.uniqueid", + "url": "https://lodash.com/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "log-driver", + "url": "https://github.com/cainus/logdriver", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "longest", + "url": "https://github.com/jonschlinkert/longest", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "loose-envify", + "url": "https://github.com/zertosh/loose-envify", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "lower-case", + "url": "https://github.com/blakeembrey/lower-case", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "lru-cache", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "lru-cache", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "lru-cache", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "make-dir", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "make-dir", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "mamacro", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "map-cache", + "url": "https://github.com/jonschlinkert/map-cache", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "map-visit", + "url": "https://github.com/jonschlinkert/map-visit", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "markdown-it", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "markdown-it-anchor", + "url": "https://github.com/valeriangalliat/markdown-it-anchor", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Unlicense" + ] + }, + { + "name": "math-expression-evaluator", + "url": "https://github.com/redhivesoftware/math-expression-evaluator#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "math-random", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "md5-hex", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "md5-o-matic", + "url": "https://github.com/trentmillar/md5-o-matic", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "md5.js", + "url": "https://github.com/crypto-browserify/md5.js", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "mdn-data", + "url": "https://developer.mozilla.org/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MPL-2.0" + ] + }, + { + "name": "mdurl", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "media-typer", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "mem", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "memory-fs", + "url": "https://github.com/webpack/memory-fs", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "merge-descriptors", + "url": "http://jongleberry.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "merge-source-map", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "methods", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "micromatch", + "url": "https://github.com/jonschlinkert/micromatch", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "micromatch", + "url": "https://github.com/micromatch/micromatch", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "miller-rabin", + "url": "https://github.com/indutny/miller-rabin", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "mime", + "url": "http://github.com/broofa", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "mime", + "url": "http://github.com/broofa", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "mime", + "url": "http://github.com/broofa", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "mime-db", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "mime-db", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "mime-types", + "url": "http://jongleberry.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "mime-types", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "mime-types", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "mimic-fn", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "min-document", + "url": "https://github.com/Raynos/min-document", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "minimalistic-assert", + "url": "https://github.com/calvinmetcalf/minimalistic-assert", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "minimalistic-crypto-utils", + "url": "https://github.com/indutny/minimalistic-crypto-utils#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "minimatch", + "url": "http://blog.izs.me", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "minimist", + "url": "https://github.com/substack/minimist", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "minimist", + "url": "https://github.com/substack/minimist", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "minimist", + "url": "https://github.com/substack/minimist", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "minipass", + "url": "http://blog.izs.me/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "minizlib", + "url": "http://blog.izs.me/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "mississippi", + "url": "https://github.com/maxogden/mississippi#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "name": "mixin-deep", + "url": "https://github.com/jonschlinkert/mixin-deep", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "mkdirp", + "url": "http://substack.net", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "mocha", + "url": "https://mochajs.org/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "mocha-webpack", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "moment", + "url": "http://momentjs.com/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "move-concurrently", + "url": "https://www.npmjs.com/package/move-concurrently", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "ms", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "ms", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "mustache", + "url": "https://github.com/janl/mustache.js", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "mute-stream", + "url": "http://blog.izs.me/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "nan", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "nanomatch", + "url": "https://github.com/micromatch/nanomatch", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "natural-compare", + "url": "https://github.com/litejs/natural-compare-lite", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "needle", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "negotiator", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "neo-async", + "url": "https://github.com/suguru03/neo-async", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "nice-try", + "url": "https://github.com/electerious/nice-try", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "no-case", + "url": "https://github.com/blakeembrey/no-case", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "node-fetch", + "url": "https://github.com/bitinn/node-fetch", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "node-libs-browser", + "url": "http://github.com/webpack/node-libs-browser", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "node-object-hash", + "url": "https://github.com/SkeLLLa/node-object-hash", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "node-pre-gyp", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "node-releases", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "node-uuid", + "url": "https://github.com/broofa/node-uuid", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "nopt", + "url": "http://blog.izs.me/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "normalize-package-data", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "name": "normalize-path", + "url": "https://github.com/jonschlinkert/normalize-path", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "normalize-path", + "url": "https://github.com/jonschlinkert/normalize-path", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "normalize-path", + "url": "https://github.com/jonschlinkert/normalize-path", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "normalize-range", + "url": "github.com/jamestalmage", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "normalize-url", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "normalize-url", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "normalize-url", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "normalize.css", + "url": "https://necolas.github.io/normalize.css", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "npm-bundled", + "url": "http://blog.izs.me/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "npm-packlist", + "url": "https://www.npmjs.com/package/npm-packlist", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "npm-run-path", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "npmlog", + "url": "http://blog.izs.me/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "nth-check", + "url": "https://github.com/fb55/nth-check", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "name": "num2fraction", + "url": "http://iyunlu.com/view", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "number-is-nan", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "nuxt", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "nuxtent", + "url": "https://github.com/nuxt-community/nuxtent-module#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "nwmatcher", + "url": "http://javascript.nwbox.com/NWMatcher/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "nyc", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "oauth-sign", + "url": "http://www.futurealoof.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "apache*" + ] + }, + { + "name": "oauth-sign", + "url": "http://www.futurealoof.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "object-assign", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "object-copy", + "url": "https://github.com/jonschlinkert/object-copy", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "object-hash", + "url": "https://github.com/puleos/object-hash", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "object-keys", + "url": "http://ljharb.codes", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "object-visit", + "url": "https://github.com/jonschlinkert/object-visit", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "object.getownpropertydescriptors", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "object.omit", + "url": "https://github.com/jonschlinkert/object.omit", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "object.pick", + "url": "https://github.com/jonschlinkert/object.pick", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "object.values", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "on-finished", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "on-headers", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "once", + "url": "http://blog.izs.me/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "onetime", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "opener", + "url": "https://domenic.me/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "(wtfpl or mit)" + ] + }, + { + "name": "optimist", + "url": "http://substack.net", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "optimize-css-assets-webpack-plugin", + "url": "http://github.com/NMFR/optimize-css-assets-webpack-plugin", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "optionator", + "url": "https://github.com/gkz/optionator", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "os-browserify", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "os-homedir", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "os-locale", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "os-locale", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "os-tmpdir", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "osenv", + "url": "http://blog.izs.me/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "p-finally", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "p-limit", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "p-limit", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "p-locate", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "p-locate", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "p-try", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "p-try", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "pako", + "url": "https://github.com/nodeca/pako", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "(mit and zlib)" + ] + }, + { + "name": "parallel-transform", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "param-case", + "url": "https://github.com/blakeembrey/param-case", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "parse-asn1", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "parse-bmfont-ascii", + "url": "https://github.com/mattdesl/parse-bmfont-ascii", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "parse-bmfont-binary", + "url": "https://github.com/Jam3/parse-bmfont-binary", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "parse-bmfont-xml", + "url": "https://github.com/mattdesl/parse-bmfont-xml", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "parse-glob", + "url": "https://github.com/jonschlinkert/parse-glob", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "parse-headers", + "url": "https://github.com/kesla/parse-headers", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "parse-json", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "parse-json", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "parse5", + "url": "https://github.com/inikulin/parse5", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "parseurl", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "pascalcase", + "url": "https://github.com/jonschlinkert/pascalcase", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "path-browserify", + "url": "https://github.com/substack/path-browserify", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "path-dirname", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "path-exists", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "path-exists", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "path-is-absolute", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "path-is-inside", + "url": "https://domenic.me", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "(wtfpl or mit)" + ] + }, + { + "name": "path-key", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "path-parse", + "url": "https://github.com/jbgutierrez/path-parse#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "path-to-regexp", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "path-to-regexp", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "path-type", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "path-type", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "pathval", + "url": "https://github.com/chaijs/pathval", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "pbkdf2", + "url": "https://github.com/crypto-browserify/pbkdf2", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "performance-now", + "url": "https://github.com/braveg1rl/performance-now", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "picomatch", + "url": "https://github.com/micromatch/picomatch", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "pify", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "pify", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "pify", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "pinkie", + "url": "github.com/floatdrop", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "pinkie-promise", + "url": "github.com/floatdrop", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "pixelmatch", + "url": "https://github.com/mapbox/pixelmatch#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "pkg-dir", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "pkg-dir", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "pluralize", + "url": "http://blakeembrey.me", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "pn", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "pngjs", + "url": "https://github.com/lukeapage/pngjs", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "popper.js", + "url": "https://popper.js.org/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "posix-character-classes", + "url": "https://github.com/jonschlinkert/posix-character-classes", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss", + "url": "http://postcss.org/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss", + "url": "https://postcss.org/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-attribute-case-insensitive", + "url": "https://github.com/Semigradsky/postcss-attribute-case-insensitive#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-calc", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-calc", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-color-functional-notation", + "url": "https://github.com/jonathantneal/postcss-color-functional-notation#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "CC0-1.0" + ] + }, + { + "name": "postcss-color-gray", + "url": "https://github.com/postcss/postcss-color-gray#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "postcss-color-hex-alpha", + "url": "https://github.com/postcss/postcss-color-hex-alpha#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-color-mod-function", + "url": "https://github.com/jonathantneal/postcss-color-mod-function#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "CC0-1.0" + ] + }, + { + "name": "postcss-color-rebeccapurple", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-colormin", + "url": "https://github.com/ben-eb/postcss-colormin", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-colormin", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-convert-values", + "url": "https://github.com/ben-eb/postcss-convert-values", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-convert-values", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-custom-media", + "url": "https://github.com/postcss/postcss-custom-media#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-custom-properties", + "url": "https://github.com/postcss/postcss-custom-properties#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-custom-selectors", + "url": "https://github.com/postcss/postcss-custom-selectors#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-dir-pseudo-class", + "url": "https://github.com/jonathantneal/postcss-dir-pseudo-class#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "CC0-1.0" + ] + }, + { + "name": "postcss-discard-comments", + "url": "https://github.com/ben-eb/postcss-discard-comments", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-discard-comments", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-discard-duplicates", + "url": "https://github.com/ben-eb/postcss-discard-duplicates", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-discard-duplicates", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-discard-empty", + "url": "https://github.com/ben-eb/postcss-discard-empty", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-discard-empty", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-discard-overridden", + "url": "https://github.com/Justineo/postcss-discard-overridden", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-discard-overridden", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-discard-unused", + "url": "https://github.com/ben-eb/postcss-discard-unused", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-double-position-gradients", + "url": "https://github.com/jonathantneal/postcss-double-position-gradients#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "CC0-1.0" + ] + }, + { + "name": "postcss-env-function", + "url": "https://github.com/jonathantneal/postcss-env-function#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "CC0-1.0" + ] + }, + { + "name": "postcss-filter-plugins", + "url": "https://github.com/postcss/postcss-filter-plugins", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-focus-visible", + "url": "https://github.com/jonathantneal/postcss-focus-visible#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "CC0-1.0" + ] + }, + { + "name": "postcss-focus-within", + "url": "https://github.com/jonathantneal/postcss-focus-within#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "CC0-1.0" + ] + }, + { + "name": "postcss-font-variant", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-gap-properties", + "url": "https://github.com/jonathantneal/postcss-gap-properties#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "CC0-1.0" + ] + }, + { + "name": "postcss-image-set-function", + "url": "https://github.com/jonathantneal/postcss-image-set-function#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "CC0-1.0" + ] + }, + { + "name": "postcss-import", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-import-resolver", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-initial", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-lab-function", + "url": "https://github.com/jonathantneal/postcss-lab-function#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "CC0-1.0" + ] + }, + { + "name": "postcss-load-config", + "url": "https://github.com/michael-ciniawsky/postcss-load-config#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-loader", + "url": "https://github.com/postcss/postcss-loader#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-logical", + "url": "https://github.com/jonathantneal/postcss-logical#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "CC0-1.0" + ] + }, + { + "name": "postcss-media-minmax", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-merge-idents", + "url": "https://github.com/ben-eb/postcss-merge-idents", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-merge-longhand", + "url": "https://github.com/ben-eb/postcss-merge-longhand", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-merge-longhand", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-merge-rules", + "url": "https://github.com/ben-eb/postcss-merge-rules", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-merge-rules", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-message-helpers", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-minify-font-values", + "url": "https://github.com/TrySound/postcss-minify-font-values", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-minify-font-values", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-minify-gradients", + "url": "https://github.com/ben-eb/postcss-minify-gradients", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-minify-gradients", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-minify-params", + "url": "https://github.com/ben-eb/postcss-minify-params", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-minify-params", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-minify-selectors", + "url": "https://github.com/ben-eb/postcss-minify-selectors", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-minify-selectors", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-modules-extract-imports", + "url": "https://github.com/css-modules/postcss-modules-extract-imports", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "postcss-modules-local-by-default", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-modules-scope", + "url": "https://github.com/css-modules/postcss-modules-scope", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "postcss-modules-values", + "url": "https://github.com/css-modules/postcss-modules-values#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "postcss-nesting", + "url": "https://github.com/jonathantneal/postcss-nesting#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "CC0-1.0" + ] + }, + { + "name": "postcss-normalize-charset", + "url": "https://github.com/ben-eb/postcss-charset", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-normalize-charset", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-normalize-display-values", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-normalize-positions", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-normalize-repeat-style", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-normalize-string", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-normalize-timing-functions", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-normalize-unicode", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-normalize-url", + "url": "https://github.com/ben-eb/postcss-normalize-url", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-normalize-url", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-normalize-whitespace", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-ordered-values", + "url": "https://github.com/ben-eb/postcss-ordered-values", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-ordered-values", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-overflow-shorthand", + "url": "https://github.com/jonathantneal/postcss-overflow-shorthand#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "CC0-1.0" + ] + }, + { + "name": "postcss-page-break", + "url": "https://github.com/shrpne/postcss-page-break", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-place", + "url": "https://github.com/jonathantneal/postcss-place#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "CC0-1.0" + ] + }, + { + "name": "postcss-preset-env", + "url": "https://github.com/csstools/postcss-preset-env#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "CC0-1.0" + ] + }, + { + "name": "postcss-pseudo-class-any-link", + "url": "https://github.com/jonathantneal/postcss-pseudo-class-any-link#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "CC0-1.0" + ] + }, + { + "name": "postcss-reduce-idents", + "url": "https://github.com/ben-eb/postcss-reduce-idents", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-reduce-initial", + "url": "https://github.com/ben-eb/postcss-reduce-initial", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-reduce-initial", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-reduce-transforms", + "url": "https://github.com/ben-eb/postcss-reduce-transforms", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-reduce-transforms", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-replace-overflow-wrap", + "url": "https://github.com/MattDiMu/postcss-replace-overflow-wrap", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-selector-matches", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-selector-not", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-selector-parser", + "url": "https://github.com/postcss/postcss-selector-parser", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-selector-parser", + "url": "https://github.com/postcss/postcss-selector-parser", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-selector-parser", + "url": "https://github.com/postcss/postcss-selector-parser", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-selector-parser", + "url": "https://github.com/postcss/postcss-selector-parser", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-svgo", + "url": "https://github.com/ben-eb/postcss-svgo", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-svgo", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-unique-selectors", + "url": "https://github.com/ben-eb/postcss-unique-selectors", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-unique-selectors", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-url", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-value-parser", + "url": "https://github.com/TrySound/postcss-value-parser", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-values-parser", + "url": "shellscape", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "postcss-zindex", + "url": "https://github.com/ben-eb/postcss-zindex", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "prelude-ls", + "url": "http://preludels.com/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "prepend-http", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "prepend-http", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "preserve", + "url": "https://github.com/jonschlinkert/preserve", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "prettier", + "url": "https://prettier.io/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "pretty-bytes", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "pretty-error", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "pretty-time", + "url": "https://github.com/jonschlinkert/pretty-time", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "private", + "url": "http://github.com/benjamn/private", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "process", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "process", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "process-nextick-args", + "url": "https://github.com/calvinmetcalf/process-nextick-args", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "progress", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "promise-inflight", + "url": "https://github.com/iarna/promise-inflight#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "proper-lockfile", + "url": "https://github.com/moxystudio/node-proper-lockfile", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "proxy-addr", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "prr", + "url": "https://github.com/rvagg/prr", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "pseudomap", + "url": "https://github.com/isaacs/pseudomap#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "public-encrypt", + "url": "https://github.com/crypto-browserify/publicEncrypt", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "pump", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "pump", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "pumpify", + "url": "https://github.com/mafintosh/pumpify", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "punycode", + "url": "https://mths.be/punycode", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "punycode", + "url": "https://mths.be/punycode", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "punycode", + "url": "https://mths.be/punycode", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "q", + "url": "https://github.com/kriskowal/q", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "qs", + "url": "https://github.com/hapijs/qs", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "see license in license" + ] + }, + { + "name": "qs", + "url": "https://github.com/ljharb/qs", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "qs", + "url": "https://github.com/ljharb/qs", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "query-string", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "query-string", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "querystring", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "querystring-es3", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "randomatic", + "url": "https://github.com/jonschlinkert/randomatic", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "randombytes", + "url": "https://github.com/crypto-browserify/randombytes", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "randomfill", + "url": "https://github.com/crypto-browserify/randomfill", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "range-parser", + "url": "http://tjholowaychuk.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "raw-body", + "url": "http://jongleberry.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "raw-loader", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "rc", + "url": "dominictarr.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "(bsd-2-clause or mit or apache-2.0)" + ] + }, + { + "name": "read-cache", + "url": "https://github.com/TrySound/read-cache#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "read-chunk", + "url": "http://sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "read-pkg", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "read-pkg", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "read-pkg-up", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "read-pkg-up", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "readable-stream", + "url": "http://blog.izs.me/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "readable-stream", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "readable-stream", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "readdirp", + "url": "https://github.com/paulmillr/readdirp", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "readdirp", + "url": "https://github.com/paulmillr/readdirp", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "reduce-css-calc", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "reduce-function-call", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "regenerate", + "url": "https://mths.be/regenerate", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "regenerate-unicode-properties", + "url": "https://github.com/mathiasbynens/regenerate-unicode-properties", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "regenerator-runtime", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "regenerator-runtime", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "regenerator-transform", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "regex-cache", + "url": "https://github.com/jonschlinkert/regex-cache", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "regex-not", + "url": "https://github.com/jonschlinkert/regex-not", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "regexp-tree", + "url": "https://github.com/DmitrySoshnikov/regexp-tree", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "regexpu-core", + "url": "https://mths.be/regexpu", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "regjsgen", + "url": "https://github.com/bnjmnt4n/regjsgen", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "regjsparser", + "url": "https://github.com/jviereck/regjsparser", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "name": "relateurl", + "url": "https://github.com/stevenvachon/relateurl", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "remove-trailing-separator", + "url": "https://github.com/darsain/remove-trailing-separator#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "renderkid", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "repeat-element", + "url": "https://github.com/jonschlinkert/repeat-element", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "repeat-string", + "url": "https://github.com/jonschlinkert/repeat-string", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "repeating", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "request", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "request", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "request-promise-core", + "url": "https://github.com/request/promise-core#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "request-promise-native", + "url": "https://github.com/request/request-promise-native#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "require-directory", + "url": "https://github.com/troygoode/node-require-directory/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "require-from-string", + "url": "github.com/floatdrop", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "require-main-filename", + "url": "https://github.com/yargs/require-main-filename#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "require-uncached", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "requires-port", + "url": "https://github.com/unshiftio/requires-port", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "resolve", + "url": "http://substack.net", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "resolve", + "url": "http://substack.net", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "resolve-from", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "resolve-from", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "resolve-from", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "resolve-url", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "restore-cursor", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "resumer", + "url": "https://github.com/substack/resumer", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "ret", + "url": "https://github.com/fent", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "retry", + "url": "https://github.com/tim-kos/node-retry", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "rgb-regex", + "url": "https://github.com/regexps/rgb-regex", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "rgba-regex", + "url": "https://github.com/johnotander/rgba-regex", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "right-align", + "url": "https://github.com/jonschlinkert/right-align", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "rimraf", + "url": "http://blog.izs.me/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "rimraf", + "url": "http://blog.izs.me/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "ripemd160", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "run-async", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "run-queue", + "url": "https://npmjs.com/package/run-queue", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "rupture", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "rx-lite", + "url": "https://github.com/Reactive-Extensions/RxJS", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "rx-lite-aggregates", + "url": "https://github.com/Reactive-Extensions/RxJS", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "safe-buffer", + "url": "https://github.com/feross/safe-buffer", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "safe-regex", + "url": "https://github.com/substack/safe-regex", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "safer-buffer", + "url": "https://github.com/ChALkeR", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "sax", + "url": "http://blog.izs.me/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-4-Clause" + ] + }, + { + "name": "sax", + "url": "http://blog.izs.me/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "schema-utils", + "url": "https://github.com/webpack-contrib/schema-utils", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "semver", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "semver", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "semver", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "semver", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "send", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "serialize-javascript", + "url": "https://github.com/yahoo/serialize-javascript", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "serve-placeholder", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "serve-static", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "server-destroy", + "url": "http://blog.izs.me", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "set-blocking", + "url": "https://github.com/yargs/set-blocking#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "set-value", + "url": "https://github.com/jonschlinkert/set-value", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "set-value", + "url": "https://github.com/jonschlinkert/set-value", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "setimmediate", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "setprototypeof", + "url": "https://github.com/wesleytodd/setprototypeof", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "sha.js", + "url": "https://github.com/crypto-browserify/sha.js", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "(mit and bsd-3-clause)" + ] + }, + { + "name": "shebang-command", + "url": "github.com/kevva", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "shebang-regex", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "shell-quote", + "url": "http://substack.net", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "signal-exit", + "url": "https://github.com/tapjs/signal-exit", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "simple-swizzle", + "url": "http://github.com/qix-", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "sitemap", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "slice-ansi", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "slide", + "url": "http://blog.izs.me/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "slideout", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "snapdragon", + "url": "https://github.com/jonschlinkert/snapdragon", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "snapdragon-node", + "url": "https://github.com/jonschlinkert/snapdragon-node", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "snapdragon-util", + "url": "https://github.com/jonschlinkert/snapdragon-util", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "sntp", + "url": "http://hueniverse.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "sntp", + "url": "http://hueniverse.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "sort-keys", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "sort-keys", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "source-list-map", + "url": "https://github.com/webpack/source-list-map", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "source-list-map", + "url": "https://github.com/webpack/source-list-map", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "source-map", + "url": "https://github.com/mozilla/source-map", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "source-map", + "url": "https://github.com/mozilla/source-map", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "source-map", + "url": "https://github.com/mozilla/source-map", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "source-map", + "url": "https://github.com/mozilla/source-map", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "source-map", + "url": "https://github.com/mozilla/source-map", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "source-map-resolve", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "source-map-support", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "source-map-url", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "spawn-wrap", + "url": "https://github.com/isaacs/spawn-wrap#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "spdx-correct", + "url": "https://kemitchell.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "spdx-exceptions", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "CC-BY-3.0" + ] + }, + { + "name": "spdx-expression-parse", + "url": "http://kemitchell.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "spdx-license-ids", + "url": "https://github.com/shinnn", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "CC0-1.0" + ] + }, + { + "name": "split", + "url": "http://github.com/dominictarr/split", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "mit*" + ] + }, + { + "name": "split-string", + "url": "https://github.com/jonschlinkert/split-string", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "sprintf-js", + "url": "http://alexei.ro/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "sshpk", + "url": "https://github.com/arekinath/node-sshpk#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "ssri", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "stable", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "stack-trace", + "url": "https://github.com/felixge/node-stack-trace", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "stackframe", + "url": "https://www.stacktracejs.com/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "static-extend", + "url": "https://github.com/jonschlinkert/static-extend", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "statuses", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "std-env", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "stealthy-require", + "url": "https://github.com/analog-nico/stealthy-require#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "stream-browserify", + "url": "https://github.com/browserify/stream-browserify", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "stream-combiner", + "url": "https://github.com/dominictarr/stream-combiner", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "stream-each", + "url": "https://github.com/mafintosh/stream-each", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "stream-http", + "url": "https://github.com/jhiesey/stream-http#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "stream-shift", + "url": "https://github.com/mafintosh/stream-shift", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "stream-to", + "url": "http://jongleberry.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "stream-to-buffer", + "url": "http://jongleberry.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "strict-uri-encode", + "url": "github.com/kevva", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "string", + "url": "http://stringjs.com/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "string-width", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "string-width", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "string-width", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "string_decoder", + "url": "https://github.com/rvagg/string_decoder", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "string_decoder", + "url": "https://github.com/nodejs/string_decoder", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "string_decoder", + "url": "https://github.com/nodejs/string_decoder", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "stringstream", + "url": "http://github.com/mhart", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "stringstream", + "url": "http://github.com/mhart", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "strip-ansi", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "strip-ansi", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "strip-ansi", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "strip-bom", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "strip-bom", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "strip-eof", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "strip-indent", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "strip-json-comments", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "style-resources-loader", + "url": "https://github.com/yenshih/style-resources-loader", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "stylehacks", + "url": "https://github.com/cssnano/cssnano", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "stylus", + "url": "https://github.com/stylus/stylus", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "stylus-loader", + "url": "http://dontkry.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "supports-color", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "supports-color", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "supports-color", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "supports-color", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "supports-color", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "svg-tags", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "svgo", + "url": "https://github.com/svg/svgo", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "svgo", + "url": "https://github.com/svg/svgo", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "symbol-tree", + "url": "https://github.com/jsdom/js-symbol-tree#symbol-tree", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "table", + "url": "http://gajus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "tapable", + "url": "https://github.com/webpack/tapable", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "tapable", + "url": "https://github.com/webpack/tapable", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "tape", + "url": "https://github.com/substack/tape", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "tar", + "url": "http://blog.izs.me/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "term-size", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "terser", + "url": "https://github.com/fabiosantoscode/terser", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "name": "terser-webpack-plugin", + "url": "https://github.com/webpack-contrib/terser-webpack-plugin", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "test-exclude", + "url": "https://github.com/istanbuljs/istanbuljs#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "text-table", + "url": "https://github.com/substack/text-table", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "thread-loader", + "url": "https://github.com/webpack-contrib/thread-loader", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "through", + "url": "https://github.com/dominictarr/through", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "through2", + "url": "https://github.com/rvagg", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "time-fix-plugin", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "timers-browserify", + "url": "https://github.com/jryans/timers-browserify", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "timsort", + "url": "https://github.com/mziccard/node-timsort", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "tinycolor2", + "url": "http://briangrinstead.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "tmp", + "url": "http://github.com/raszi/node-tmp", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "to-arraybuffer", + "url": "https://github.com/jhiesey/to-arraybuffer#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "to-fast-properties", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "to-fast-properties", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "to-object-path", + "url": "https://github.com/jonschlinkert/to-object-path", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "to-regex", + "url": "https://github.com/jonschlinkert/to-regex", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "to-regex-range", + "url": "https://github.com/micromatch/to-regex-range", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "to-regex-range", + "url": "https://github.com/micromatch/to-regex-range", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "toidentifier", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "toposort", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "tough-cookie", + "url": "https://github.com/salesforce/tough-cookie", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "tr46", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "trim", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "trim-right", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "tryer", + "url": "https://gitlab.com/philbooth/tryer", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "tslib", + "url": "http://typescriptlang.org/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "tty-browserify", + "url": "https://github.com/substack/tty-browserify", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "tunnel-agent", + "url": "http://www.futurealoof.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "tunnel-agent", + "url": "http://www.futurealoof.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "tweetnacl", + "url": "https://tweetnacl.js.org/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Unlicense" + ] + }, + { + "name": "type-check", + "url": "https://github.com/gkz/type-check", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "type-detect", + "url": "http://alogicalparadox.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "type-fest", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "(mit or cc0-1.0)" + ] + }, + { + "name": "type-is", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "typedarray", + "url": "https://github.com/substack/typedarray", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "ua-parser-js", + "url": "http://github.com/faisalman/ua-parser-js", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "(gpl-2.0 or mit)" + ] + }, + { + "name": "uc.micro", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "uglify-js", + "url": "http://lisperator.net/uglifyjs", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "name": "uglify-js", + "url": "http://lisperator.net/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "name": "uglify-js", + "url": "http://lisperator.net/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "name": "uglify-to-browserify", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "underscore", + "url": "http://underscorejs.org/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "unfetch", + "url": "https://github.com/developit/unfetch", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "unicode-canonical-property-names-ecmascript", + "url": "https://github.com/mathiasbynens/unicode-canonical-property-names-ecmascript", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "unicode-match-property-ecmascript", + "url": "https://github.com/mathiasbynens/unicode-match-property-ecmascript", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "unicode-match-property-value-ecmascript", + "url": "https://github.com/mathiasbynens/unicode-match-property-value-ecmascript", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "unicode-property-aliases-ecmascript", + "url": "https://github.com/mathiasbynens/unicode-property-aliases-ecmascript", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "union-value", + "url": "https://github.com/jonschlinkert/union-value", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "uniq", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "uniqs", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "unique-filename", + "url": "https://github.com/iarna/unique-filename", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "unique-slug", + "url": "http://re-becca.org", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "universalify", + "url": "https://github.com/RyanZim/universalify#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "unpipe", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "unquote", + "url": "https://github.com/lakenen/node-unquote", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "unset-value", + "url": "https://github.com/jonschlinkert/unset-value", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "upath", + "url": "http://github.com/anodynos/upath/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "upper-case", + "url": "https://github.com/blakeembrey/upper-case", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "uppercamelcase", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "uri-js", + "url": "https://github.com/garycourt/uri-js", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "name": "urix", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "url", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "url-join", + "url": "http://joseoncode.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "url-loader", + "url": "https://github.com/webpack-contrib/url-loader", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "url-regex", + "url": "https://github.com/kevva", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "urlgrey", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "name": "use", + "url": "https://github.com/jonschlinkert/use", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "util", + "url": "https://github.com/defunctzombie/node-util", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "util", + "url": "https://github.com/defunctzombie/node-util", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "util-deprecate", + "url": "https://github.com/TooTallNate/util-deprecate", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "util.promisify", + "url": "https://github.com/ljharb/util.promisify#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "utila", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "utils-merge", + "url": "http://www.jaredhanson.net/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "uuid", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "v-tooltip", + "url": "https://github.com/Akryum/vue-tooltip#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "validate-npm-package-license", + "url": "https://kemitchell.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "vary", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "vendors", + "url": "https://wooorm.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "verror", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "vm-browserify", + "url": "http://substack.net", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "vue", + "url": "https://github.com/vuejs/vue#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "vue-disqus", + "url": "https://github.com/ktquez/vue-disqus#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "vue-hot-reload-api", + "url": "https://github.com/vuejs/vue-hot-reload-api#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "vue-loader", + "url": "https://github.com/vuejs/vue-loader", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "vue-meta", + "url": "https://github.com/declandewet/vue-meta", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "vue-moment", + "url": "https://github.com/brockpetrie/vue-moment#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "vue-no-ssr", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "vue-resize", + "url": "https://github.com/Akryum/vue-resize#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "vue-router", + "url": "https://github.com/vuejs/vue-router#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "vue-scrollto", + "url": "http://igor-randjelovic.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "vue-server-renderer", + "url": "https://github.com/vuejs/vue/tree/dev/packages/vue-server-renderer#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "vue-slideout", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "unknown" + ] + }, + { + "name": "vue-style-loader", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "vue-template-compiler", + "url": "https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "vue-template-es2015-compiler", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "vuex", + "url": "https://github.com/vuejs/vuex#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "w3c-hr-time", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "watchpack", + "url": "https://github.com/webpack/watchpack", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "webidl-conversions", + "url": "https://domenic.me/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "name": "webpack", + "url": "https://github.com/webpack/webpack", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "webpack-bundle-analyzer", + "url": "https://github.com/webpack-contrib/webpack-bundle-analyzer", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "webpack-dev-middleware", + "url": "https://github.com/webpack/webpack-dev-middleware", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "webpack-hot-middleware", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "webpack-info-plugin", + "url": "https://github.com/zinserjan/webpack-info-plugin#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "webpack-log", + "url": "https://github.com/webpack-contrib/webpack-log#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "webpack-node-externals", + "url": "https://github.com/liady/webpack-node-externals", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "webpack-sources", + "url": "https://github.com/webpack/webpack-sources#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "webpack-sources", + "url": "https://github.com/webpack/webpack-sources#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "webpackbar", + "url": "https://github.com/nuxt/webpackbar", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "whatwg-encoding", + "url": "https://domenic.me/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "whatwg-url", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "when", + "url": "http://cujojs.com/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "whet.extend", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "which", + "url": "http://blog.izs.me", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "which", + "url": "http://blog.izs.me", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "which-module", + "url": "https://github.com/nexdrew/which-module#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "which-module", + "url": "https://github.com/nexdrew/which-module#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "wide-align", + "url": "http://re-becca.org/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "widest-line", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "window", + "url": "https://github.com/lukechilds/window#readme", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "window-size", + "url": "https://github.com/jonschlinkert/window-size", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "window-size", + "url": "https://github.com/jonschlinkert/window-size", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "wordwrap", + "url": "http://substack.net", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "wordwrap", + "url": "http://substack.net", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "wordwrap", + "url": "http://substack.net", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "workbox-build", + "url": "https://github.com/GoogleChrome/workbox/tree/master/packages/workbox-build", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "workbox-sw", + "url": "https://github.com/GoogleChrome/workbox/tree/master/packages/workbox-sw", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "worker-farm", + "url": "https://github.com/rvagg/node-worker-farm", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "wrap-ansi", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "wrap-ansi", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "wrappy", + "url": "https://github.com/npm/wrappy", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "write", + "url": "https://github.com/jonschlinkert/write", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "write-file-atomic", + "url": "https://github.com/iarna/write-file-atomic", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "write-file-atomic", + "url": "https://github.com/iarna/write-file-atomic", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "write-json-file", + "url": "sindresorhus.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "ws", + "url": "https://github.com/websockets/ws", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "ws", + "url": "https://github.com/websockets/ws", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "ws", + "url": "https://github.com/websockets/ws", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "xhr", + "url": "https://github.com/naugtur/xhr", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "xml-name-validator", + "url": "https://domenic.me/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "name": "xml-parse-from-string", + "url": "https://github.com/Jam3/xml-parse-from-string", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "xml2js", + "url": "https://github.com/Leonidas-from-XIV/node-xml2js", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "xmlbuilder", + "url": "http://github.com/oozcitak/xmlbuilder-js", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "xtend", + "url": "https://github.com/Raynos/xtend", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "xxhashjs", + "url": "https://github.com/pierrec/js-xxhash", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "y18n", + "url": "https://github.com/yargs/y18n", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "y18n", + "url": "https://github.com/yargs/y18n", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "yallist", + "url": "http://blog.izs.me/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "yallist", + "url": "http://blog.izs.me/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "yargs", + "url": "http://yargs.js.org/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "yargs", + "url": "http://CodeTunnel.com", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "yargs", + "url": "http://yargs.js.org/", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "yargs-parser", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + }, + { + "name": "yargs-parser", + "url": "Unknown", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "ISC" + ] + } + ] +} diff --git a/spec/fixtures/expected/php/composer/v1.0.json b/spec/fixtures/expected/php/composer/v1.0.json new file mode 100644 index 0000000..6b9833d --- /dev/null +++ b/spec/fixtures/expected/php/composer/v1.0.json @@ -0,0 +1,749 @@ +{ + "licenses": [ + { + "count": 36, + "name": "MIT" + }, + { + "count": 18, + "name": "New BSD" + }, + { + "count": 1, + "name": "BSD-3-Clause-Attribution" + }, + { + "count": 1, + "name": "Simplified BSD" + } + ], + "dependencies": [ + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "classpreloader/classpreloader", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "dnoegel/php-xdg-base-dir", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "doctrine/inflector", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "doctrine/instantiator", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "jakub-onderka/php-console-color", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "jakub-onderka/php-console-highlighter", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "jeremeamia/SuperClosure", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "laravel/framework", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "league/flysystem", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "monolog/monolog", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mtdowling/cron-expression", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "myclabs/deep-copy", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "nesbot/carbon", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "nikic/php-parser", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "paragonie/random_compat", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "phpdocumentor/reflection-common", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "phpdocumentor/reflection-docblock", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "phpdocumentor/type-resolver", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "phpspec/prophecy", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "phpunit/php-code-coverage", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "phpunit/php-file-iterator", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "phpunit/php-text-template", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "phpunit/php-timer", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "phpunit/php-token-stream", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "phpunit/phpunit", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "phpunit/phpunit-mock-objects", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "psr/log", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "psy/psysh", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ramsey/uuid", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "sebastian/code-unit-reverse-lookup", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "sebastian/comparator", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "sebastian/diff", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "sebastian/environment", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "sebastian/exporter", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "sebastian/global-state", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "sebastian/object-enumerator", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "sebastian/recursion-context", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "sebastian/resource-operations", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "sebastian/version", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "swiftmailer/swiftmailer", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "symfony/console", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "symfony/debug", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "symfony/event-dispatcher", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "symfony/finder", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "symfony/http-foundation", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "symfony/http-kernel", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "symfony/polyfill-mbstring", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "symfony/polyfill-php56", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "symfony/polyfill-util", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "symfony/process", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "symfony/routing", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "symfony/translation", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "symfony/var-dumper", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "symfony/yaml", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "BSD-3-Clause-Attribution" + }, + "dependency": { + "name": "vlucas/phpdotenv", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "webmozart/assert", + "description": "", + "pathes": [ + "." + ] + } + } + ] +} diff --git a/spec/fixtures/expected/php/composer/v1.1.json b/spec/fixtures/expected/php/composer/v1.1.json new file mode 100644 index 0000000..8aa7f32 --- /dev/null +++ b/spec/fixtures/expected/php/composer/v1.1.json @@ -0,0 +1,1086 @@ +{ + "version": "1.1", + "licenses": [ + { + "count": 36, + "name": "MIT" + }, + { + "count": 18, + "name": "New BSD" + }, + { + "count": 1, + "name": "BSD-3-Clause-Attribution" + }, + { + "count": 1, + "name": "Simplified BSD" + } + ], + "dependencies": [ + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "classpreloader/classpreloader", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "dnoegel/php-xdg-base-dir", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "doctrine/inflector", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "doctrine/instantiator", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + } + ], + "license": { + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" + }, + "dependency": { + "name": "jakub-onderka/php-console-color", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "jakub-onderka/php-console-highlighter", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "jeremeamia/SuperClosure", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "laravel/framework", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "league/flysystem", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "monolog/monolog", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mtdowling/cron-expression", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "myclabs/deep-copy", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "nesbot/carbon", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "nikic/php-parser", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "paragonie/random_compat", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "phpdocumentor/reflection-common", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "phpdocumentor/reflection-docblock", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "phpdocumentor/type-resolver", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "phpspec/prophecy", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "phpunit/php-code-coverage", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "phpunit/php-file-iterator", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "phpunit/php-text-template", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "phpunit/php-timer", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "phpunit/php-token-stream", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "phpunit/phpunit", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "phpunit/phpunit-mock-objects", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "psr/log", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "psy/psysh", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "ramsey/uuid", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "sebastian/code-unit-reverse-lookup", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "sebastian/comparator", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "sebastian/diff", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "sebastian/environment", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "sebastian/exporter", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "sebastian/global-state", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "sebastian/object-enumerator", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "sebastian/recursion-context", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "sebastian/resource-operations", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "sebastian/version", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "swiftmailer/swiftmailer", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "symfony/console", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "symfony/debug", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "symfony/event-dispatcher", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "symfony/finder", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "symfony/http-foundation", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "symfony/http-kernel", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "symfony/polyfill-mbstring", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "symfony/polyfill-php56", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "symfony/polyfill-util", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "symfony/process", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "symfony/routing", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "symfony/translation", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "symfony/var-dumper", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "symfony/yaml", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "BSD-3-Clause-Attribution", + "url": "" + } + ], + "license": { + "name": "BSD-3-Clause-Attribution" + }, + "dependency": { + "name": "vlucas/phpdotenv", + "description": "", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "webmozart/assert", + "description": "", + "pathes": [ + "." + ] + } + } + ] +} diff --git a/spec/fixtures/expected/php/composer/v2.0.json b/spec/fixtures/expected/php/composer/v2.0.json new file mode 100644 index 0000000..c0e0982 --- /dev/null +++ b/spec/fixtures/expected/php/composer/v2.0.json @@ -0,0 +1,647 @@ +{ + "version": "2.0", + "licenses": [ + { + "id": "MIT", + "name": "MIT License", + "url": "https://opensource.org/licenses/MIT", + "count": 36 + }, + { + "id": "BSD-3-Clause", + "name": "BSD 3-Clause \"New\" or \"Revised\" License", + "url": "https://opensource.org/licenses/BSD-3-Clause", + "count": 18 + }, + { + "id": "BSD-2-Clause", + "name": "BSD 2-Clause \"Simplified\" License", + "url": "https://opensource.org/licenses/BSD-2-Clause", + "count": 1 + }, + { + "id": "BSD-3-Clause-Attribution", + "name": "BSD with attribution", + "url": "https://fedoraproject.org/wiki/Licensing/BSD_with_Attribution", + "count": 1 + } + ], + "dependencies": [ + { + "name": "classpreloader/classpreloader", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "dnoegel/php-xdg-base-dir", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "doctrine/inflector", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "doctrine/instantiator", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "jakub-onderka/php-console-color", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "name": "jakub-onderka/php-console-highlighter", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "jeremeamia/SuperClosure", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "laravel/framework", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "league/flysystem", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "monolog/monolog", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "mtdowling/cron-expression", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "myclabs/deep-copy", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "nesbot/carbon", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "nikic/php-parser", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "paragonie/random_compat", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "phpdocumentor/reflection-common", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "phpdocumentor/reflection-docblock", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "phpdocumentor/type-resolver", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "phpspec/prophecy", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "phpunit/php-code-coverage", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "phpunit/php-file-iterator", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "phpunit/php-text-template", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "phpunit/php-timer", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "phpunit/php-token-stream", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "phpunit/phpunit", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "phpunit/phpunit-mock-objects", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "psr/log", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "psy/psysh", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "ramsey/uuid", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "sebastian/code-unit-reverse-lookup", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "sebastian/comparator", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "sebastian/diff", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "sebastian/environment", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "sebastian/exporter", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "sebastian/global-state", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "sebastian/object-enumerator", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "sebastian/recursion-context", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "sebastian/resource-operations", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "sebastian/version", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "swiftmailer/swiftmailer", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "symfony/console", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "symfony/debug", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "symfony/event-dispatcher", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "symfony/finder", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "symfony/http-foundation", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "symfony/http-kernel", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "symfony/polyfill-mbstring", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "symfony/polyfill-php56", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "symfony/polyfill-util", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "symfony/process", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "symfony/routing", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "symfony/translation", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "symfony/var-dumper", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "symfony/yaml", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "vlucas/phpdotenv", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause-Attribution" + ] + }, + { + "name": "webmozart/assert", + "url": "", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + } + ] +} diff --git a/spec/fixtures/expected/python/2/pip/v1.0.json b/spec/fixtures/expected/python/2/pip/v1.0.json new file mode 100644 index 0000000..5adaedd --- /dev/null +++ b/spec/fixtures/expected/python/2/pip/v1.0.json @@ -0,0 +1,196 @@ +{ + "licenses": [ + { + "count": 4, + "name": "BSD" + }, + { + "count": 4, + "name": "MIT" + }, + { + "count": 1, + "name": "Copyright (c) 2015, Julien Fache" + }, + { + "count": 1, + "name": "New BSD" + }, + { + "count": 1, + "name": "Python Software Foundation License" + }, + { + "count": 1, + "name": "Standard PIL License" + } + ], + "dependencies": [ + { + "license": { + "name": "BSD", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + }, + "dependency": { + "name": "Django", + "url": "https://www.djangoproject.com/", + "description": "A high-level Python Web framework that encourages rapid development and clean, pragmatic design.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Standard PIL License" + }, + "dependency": { + "name": "Pillow", + "url": "https://python-pillow.org", + "description": "Python Imaging Library (Fork)", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "beautifulsoup4", + "url": "http://www.crummy.com/software/BeautifulSoup/bs4/", + "description": "Screen-scraping library", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "BSD", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + }, + "dependency": { + "name": "django-contrib-comments", + "url": "https://github.com/django/django-contrib-comments", + "description": "The code formerly known as django.contrib.comments.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "BSD", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + }, + "dependency": { + "name": "django-js-asset", + "url": "https://github.com/matthiask/django-js-asset/", + "description": "script tag with additional attributes for django.forms.Media", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "django-mptt", + "url": "http://github.com/django-mptt/django-mptt", + "description": "Utilities for implementing Modified Preorder Tree Traversal with your Django Models and working with trees of Model instances.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "BSD", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + }, + "dependency": { + "name": "django-tagging", + "url": "https://github.com/Fantomas42/django-tagging", + "description": "Generic tagging application for Django", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "django-xmlrpc", + "url": "https://github.com/Fantomas42/django-xmlrpc", + "description": "XML-RPC Server App for the Django framework.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Copyright (c) 2015, Julien Fache" + }, + "dependency": { + "name": "mots-vides", + "url": "https://github.com/Fantomas42/mots-vides", + "description": "Python library for managing stop words in many languages.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pyparsing", + "url": "http://pyparsing.wikispaces.com/", + "description": "Python parsing module", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pytz", + "url": "http://pythonhosted.org/pytz", + "description": "World timezone definitions, modern and historical", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Python Software Foundation License", + "url": "http://hg.python.org/cpython/raw-file/89ce323357db/LICENSE" + }, + "dependency": { + "name": "regex", + "url": "https://bitbucket.org/mrabarnett/mrab-regex", + "description": "Alternative regular expression module, to replace re.", + "pathes": [ + "." + ] + } + } + ] +} diff --git a/spec/fixtures/expected/python/2/pip/v1.1.json b/spec/fixtures/expected/python/2/pip/v1.1.json new file mode 100644 index 0000000..30e4cc1 --- /dev/null +++ b/spec/fixtures/expected/python/2/pip/v1.1.json @@ -0,0 +1,269 @@ +{ + "version": "1.1", + "licenses": [ + { + "count": 4, + "name": "BSD" + }, + { + "count": 4, + "name": "MIT" + }, + { + "count": 1, + "name": "Copyright (c) 2015, Julien Fache" + }, + { + "count": 1, + "name": "New BSD" + }, + { + "count": 1, + "name": "Python Software Foundation License" + }, + { + "count": 1, + "name": "Standard PIL License" + } + ], + "dependencies": [ + { + "licenses": [ + { + "name": "BSD", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + } + ], + "license": { + "name": "BSD", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + }, + "dependency": { + "name": "Django", + "url": "https://www.djangoproject.com/", + "description": "A high-level Python Web framework that encourages rapid development and clean, pragmatic design.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Standard PIL License", + "url": "" + } + ], + "license": { + "name": "Standard PIL License" + }, + "dependency": { + "name": "Pillow", + "url": "https://python-pillow.org", + "description": "Python Imaging Library (Fork)", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "beautifulsoup4", + "url": "http://www.crummy.com/software/BeautifulSoup/bs4/", + "description": "Screen-scraping library", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "BSD", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + } + ], + "license": { + "name": "BSD", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + }, + "dependency": { + "name": "django-contrib-comments", + "url": "https://github.com/django/django-contrib-comments", + "description": "The code formerly known as django.contrib.comments.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "BSD", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + } + ], + "license": { + "name": "BSD", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + }, + "dependency": { + "name": "django-js-asset", + "url": "https://github.com/matthiask/django-js-asset/", + "description": "script tag with additional attributes for django.forms.Media", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "django-mptt", + "url": "http://github.com/django-mptt/django-mptt", + "description": "Utilities for implementing Modified Preorder Tree Traversal with your Django Models and working with trees of Model instances.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "BSD", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + } + ], + "license": { + "name": "BSD", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + }, + "dependency": { + "name": "django-tagging", + "url": "https://github.com/Fantomas42/django-tagging", + "description": "Generic tagging application for Django", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "django-xmlrpc", + "url": "https://github.com/Fantomas42/django-xmlrpc", + "description": "XML-RPC Server App for the Django framework.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Copyright (c) 2015, Julien Fache", + "url": "" + } + ], + "license": { + "name": "Copyright (c) 2015, Julien Fache" + }, + "dependency": { + "name": "mots-vides", + "url": "https://github.com/Fantomas42/mots-vides", + "description": "Python library for managing stop words in many languages.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pyparsing", + "url": "http://pyparsing.wikispaces.com/", + "description": "Python parsing module", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pytz", + "url": "http://pythonhosted.org/pytz", + "description": "World timezone definitions, modern and historical", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Python Software Foundation License", + "url": "http://hg.python.org/cpython/raw-file/89ce323357db/LICENSE" + } + ], + "license": { + "name": "Python Software Foundation License", + "url": "http://hg.python.org/cpython/raw-file/89ce323357db/LICENSE" + }, + "dependency": { + "name": "regex", + "url": "https://bitbucket.org/mrabarnett/mrab-regex", + "description": "Alternative regular expression module, to replace re.", + "pathes": [ + "." + ] + } + } + ] +} diff --git a/spec/fixtures/expected/python/2/pip/v2.0.json b/spec/fixtures/expected/python/2/pip/v2.0.json new file mode 100644 index 0000000..8ed6ee7 --- /dev/null +++ b/spec/fixtures/expected/python/2/pip/v2.0.json @@ -0,0 +1,175 @@ +{ + "version": "2.0", + "licenses": [ + { + "id": "BSD-4-Clause", + "name": "BSD 4-Clause \"Original\" or \"Old\" License", + "url": "http://directory.fsf.org/wiki/License:BSD_4Clause", + "count": 4 + }, + { + "id": "MIT", + "name": "MIT License", + "url": "https://opensource.org/licenses/MIT", + "count": 4 + }, + { + "id": "BSD-3-Clause", + "name": "BSD 3-Clause \"New\" or \"Revised\" License", + "url": "https://opensource.org/licenses/BSD-3-Clause", + "count": 1 + }, + { + "id": "MIT-CMU", + "name": "CMU License", + "url": "https://github.com/python-pillow/Pillow/blob/fffb426092c8db24a5f4b6df243a8a3c01fb63cd/LICENSE", + "count": 1 + }, + { + "id": "copyright (c) 2015, julien fache", + "name": "Copyright (c) 2015, Julien Fache", + "url": "", + "count": 1 + }, + { + "id": "Python-2.0", + "name": "Python License 2.0", + "url": "https://opensource.org/licenses/Python-2.0", + "count": 1 + } + ], + "dependencies": [ + { + "name": "Django", + "url": "https://www.djangoproject.com/", + "description": "A high-level Python Web framework that encourages rapid development and clean, pragmatic design.", + "paths": [ + "." + ], + "licenses": [ + "BSD-4-Clause" + ] + }, + { + "name": "Pillow", + "url": "https://python-pillow.org", + "description": "Python Imaging Library (Fork)", + "paths": [ + "." + ], + "licenses": [ + "MIT-CMU" + ] + }, + { + "name": "beautifulsoup4", + "url": "http://www.crummy.com/software/BeautifulSoup/bs4/", + "description": "Screen-scraping library", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "django-contrib-comments", + "url": "https://github.com/django/django-contrib-comments", + "description": "The code formerly known as django.contrib.comments.", + "paths": [ + "." + ], + "licenses": [ + "BSD-4-Clause" + ] + }, + { + "name": "django-js-asset", + "url": "https://github.com/matthiask/django-js-asset/", + "description": "script tag with additional attributes for django.forms.Media", + "paths": [ + "." + ], + "licenses": [ + "BSD-4-Clause" + ] + }, + { + "name": "django-mptt", + "url": "http://github.com/django-mptt/django-mptt", + "description": "Utilities for implementing Modified Preorder Tree Traversal with your Django Models and working with trees of Model instances.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "django-tagging", + "url": "https://github.com/Fantomas42/django-tagging", + "description": "Generic tagging application for Django", + "paths": [ + "." + ], + "licenses": [ + "BSD-4-Clause" + ] + }, + { + "name": "django-xmlrpc", + "url": "https://github.com/Fantomas42/django-xmlrpc", + "description": "XML-RPC Server App for the Django framework.", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "mots-vides", + "url": "https://github.com/Fantomas42/mots-vides", + "description": "Python library for managing stop words in many languages.", + "paths": [ + "." + ], + "licenses": [ + "copyright (c) 2015, julien fache" + ] + }, + { + "name": "pyparsing", + "url": "http://pyparsing.wikispaces.com/", + "description": "Python parsing module", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "pytz", + "url": "http://pythonhosted.org/pytz", + "description": "World timezone definitions, modern and historical", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "regex", + "url": "https://bitbucket.org/mrabarnett/mrab-regex", + "description": "Alternative regular expression module, to replace re.", + "paths": [ + "." + ], + "licenses": [ + "Python-2.0" + ] + } + ] +} diff --git a/spec/fixtures/expected/python/3/pip/v1.0.json b/spec/fixtures/expected/python/3/pip/v1.0.json new file mode 100644 index 0000000..6cf3676 --- /dev/null +++ b/spec/fixtures/expected/python/3/pip/v1.0.json @@ -0,0 +1,213 @@ +{ + "licenses": [ + { + "count": 4, + "name": "BSD" + }, + { + "count": 4, + "name": "MIT" + }, + { + "count": 1, + "name": "Copyright (c) 2015, Julien Fache" + }, + { + "count": 1, + "name": "New BSD" + }, + { + "count": 1, + "name": "Python Software Foundation License" + }, + { + "count": 1, + "name": "Standard PIL License" + }, + { + "count": 1, + "name": "http://www.apache.org/licenses/LICENSE-2.0" + } + ], + "dependencies": [ + { + "license": { + "name": "BSD", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + }, + "dependency": { + "name": "Django", + "url": "https://www.djangoproject.com/", + "description": "A high-level Python Web framework that encourages rapid development and clean, pragmatic design.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Standard PIL License" + }, + "dependency": { + "name": "Pillow", + "url": "https://python-pillow.org", + "description": "Python Imaging Library (Fork)", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "beautifulsoup4", + "url": "http://www.crummy.com/software/BeautifulSoup/bs4/", + "description": "Screen-scraping library", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "BSD", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + }, + "dependency": { + "name": "django-contrib-comments", + "url": "https://github.com/django/django-contrib-comments", + "description": "The code formerly known as django.contrib.comments.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "BSD", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + }, + "dependency": { + "name": "django-js-asset", + "url": "https://github.com/matthiask/django-js-asset/", + "description": "script tag with additional attributes for django.forms.Media", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "django-mptt", + "url": "http://github.com/django-mptt/django-mptt", + "description": "Utilities for implementing Modified Preorder Tree Traversal with your Django Models and working with trees of Model instances.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "BSD", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + }, + "dependency": { + "name": "django-tagging", + "url": "https://github.com/Fantomas42/django-tagging", + "description": "Generic tagging application for Django", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "django-xmlrpc", + "url": "https://github.com/Fantomas42/django-xmlrpc", + "description": "XML-RPC Server App for the Django framework.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Copyright (c) 2015, Julien Fache" + }, + "dependency": { + "name": "mots-vides", + "url": "https://github.com/Fantomas42/mots-vides", + "description": "Python library for managing stop words in many languages.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pyparsing", + "url": "http://pyparsing.wikispaces.com/", + "description": "Python parsing module", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pytz", + "url": "http://pythonhosted.org/pytz", + "description": "World timezone definitions, modern and historical", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Python Software Foundation License", + "url": "http://hg.python.org/cpython/raw-file/89ce323357db/LICENSE" + }, + "dependency": { + "name": "regex", + "url": "https://bitbucket.org/mrabarnett/mrab-regex", + "description": "Alternative regular expression module, to replace re.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "http://www.apache.org/licenses/LICENSE-2.0" + }, + "dependency": { + "name": "tornado", + "url": "http://www.tornadoweb.org/", + "description": "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed.", + "pathes": [ + "." + ] + } + } + ] +} diff --git a/spec/fixtures/expected/python/3/pip/v1.1.json b/spec/fixtures/expected/python/3/pip/v1.1.json new file mode 100644 index 0000000..580d4cb --- /dev/null +++ b/spec/fixtures/expected/python/3/pip/v1.1.json @@ -0,0 +1,292 @@ +{ + "version": "1.1", + "licenses": [ + { + "count": 4, + "name": "BSD" + }, + { + "count": 4, + "name": "MIT" + }, + { + "count": 1, + "name": "Copyright (c) 2015, Julien Fache" + }, + { + "count": 1, + "name": "New BSD" + }, + { + "count": 1, + "name": "Python Software Foundation License" + }, + { + "count": 1, + "name": "Standard PIL License" + }, + { + "count": 1, + "name": "http://www.apache.org/licenses/LICENSE-2.0" + } + ], + "dependencies": [ + { + "licenses": [ + { + "name": "BSD", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + } + ], + "license": { + "name": "BSD", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + }, + "dependency": { + "name": "Django", + "url": "https://www.djangoproject.com/", + "description": "A high-level Python Web framework that encourages rapid development and clean, pragmatic design.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Standard PIL License", + "url": "" + } + ], + "license": { + "name": "Standard PIL License" + }, + "dependency": { + "name": "Pillow", + "url": "https://python-pillow.org", + "description": "Python Imaging Library (Fork)", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "beautifulsoup4", + "url": "http://www.crummy.com/software/BeautifulSoup/bs4/", + "description": "Screen-scraping library", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "BSD", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + } + ], + "license": { + "name": "BSD", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + }, + "dependency": { + "name": "django-contrib-comments", + "url": "https://github.com/django/django-contrib-comments", + "description": "The code formerly known as django.contrib.comments.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "BSD", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + } + ], + "license": { + "name": "BSD", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + }, + "dependency": { + "name": "django-js-asset", + "url": "https://github.com/matthiask/django-js-asset/", + "description": "script tag with additional attributes for django.forms.Media", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "django-mptt", + "url": "http://github.com/django-mptt/django-mptt", + "description": "Utilities for implementing Modified Preorder Tree Traversal with your Django Models and working with trees of Model instances.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "BSD", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + } + ], + "license": { + "name": "BSD", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + }, + "dependency": { + "name": "django-tagging", + "url": "https://github.com/Fantomas42/django-tagging", + "description": "Generic tagging application for Django", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "django-xmlrpc", + "url": "https://github.com/Fantomas42/django-xmlrpc", + "description": "XML-RPC Server App for the Django framework.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Copyright (c) 2015, Julien Fache", + "url": "" + } + ], + "license": { + "name": "Copyright (c) 2015, Julien Fache" + }, + "dependency": { + "name": "mots-vides", + "url": "https://github.com/Fantomas42/mots-vides", + "description": "Python library for managing stop words in many languages.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pyparsing", + "url": "http://pyparsing.wikispaces.com/", + "description": "Python parsing module", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pytz", + "url": "http://pythonhosted.org/pytz", + "description": "World timezone definitions, modern and historical", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Python Software Foundation License", + "url": "http://hg.python.org/cpython/raw-file/89ce323357db/LICENSE" + } + ], + "license": { + "name": "Python Software Foundation License", + "url": "http://hg.python.org/cpython/raw-file/89ce323357db/LICENSE" + }, + "dependency": { + "name": "regex", + "url": "https://bitbucket.org/mrabarnett/mrab-regex", + "description": "Alternative regular expression module, to replace re.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "http://www.apache.org/licenses/LICENSE-2.0", + "url": "" + } + ], + "license": { + "name": "http://www.apache.org/licenses/LICENSE-2.0" + }, + "dependency": { + "name": "tornado", + "url": "http://www.tornadoweb.org/", + "description": "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed.", + "pathes": [ + "." + ] + } + } + ] +} diff --git a/spec/fixtures/expected/python/3/pip/v2.0.json b/spec/fixtures/expected/python/3/pip/v2.0.json new file mode 100644 index 0000000..b5c23ae --- /dev/null +++ b/spec/fixtures/expected/python/3/pip/v2.0.json @@ -0,0 +1,192 @@ +{ + "version": "2.0", + "licenses": [ + { + "id": "BSD-4-Clause", + "name": "BSD 4-Clause \"Original\" or \"Old\" License", + "url": "http://directory.fsf.org/wiki/License:BSD_4Clause", + "count": 4 + }, + { + "id": "MIT", + "name": "MIT License", + "url": "https://opensource.org/licenses/MIT", + "count": 4 + }, + { + "id": "Apache-2.0", + "name": "Apache License 2.0", + "url": "https://opensource.org/licenses/Apache-2.0", + "count": 1 + }, + { + "id": "BSD-3-Clause", + "name": "BSD 3-Clause \"New\" or \"Revised\" License", + "url": "https://opensource.org/licenses/BSD-3-Clause", + "count": 1 + }, + { + "id": "MIT-CMU", + "name": "CMU License", + "url": "https://github.com/python-pillow/Pillow/blob/fffb426092c8db24a5f4b6df243a8a3c01fb63cd/LICENSE", + "count": 1 + }, + { + "id": "copyright (c) 2015, julien fache", + "name": "Copyright (c) 2015, Julien Fache", + "url": "", + "count": 1 + }, + { + "id": "Python-2.0", + "name": "Python License 2.0", + "url": "https://opensource.org/licenses/Python-2.0", + "count": 1 + } + ], + "dependencies": [ + { + "name": "Django", + "url": "https://www.djangoproject.com/", + "description": "A high-level Python Web framework that encourages rapid development and clean, pragmatic design.", + "paths": [ + "." + ], + "licenses": [ + "BSD-4-Clause" + ] + }, + { + "name": "Pillow", + "url": "https://python-pillow.org", + "description": "Python Imaging Library (Fork)", + "paths": [ + "." + ], + "licenses": [ + "MIT-CMU" + ] + }, + { + "name": "beautifulsoup4", + "url": "http://www.crummy.com/software/BeautifulSoup/bs4/", + "description": "Screen-scraping library", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "django-contrib-comments", + "url": "https://github.com/django/django-contrib-comments", + "description": "The code formerly known as django.contrib.comments.", + "paths": [ + "." + ], + "licenses": [ + "BSD-4-Clause" + ] + }, + { + "name": "django-js-asset", + "url": "https://github.com/matthiask/django-js-asset/", + "description": "script tag with additional attributes for django.forms.Media", + "paths": [ + "." + ], + "licenses": [ + "BSD-4-Clause" + ] + }, + { + "name": "django-mptt", + "url": "http://github.com/django-mptt/django-mptt", + "description": "Utilities for implementing Modified Preorder Tree Traversal with your Django Models and working with trees of Model instances.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "django-tagging", + "url": "https://github.com/Fantomas42/django-tagging", + "description": "Generic tagging application for Django", + "paths": [ + "." + ], + "licenses": [ + "BSD-4-Clause" + ] + }, + { + "name": "django-xmlrpc", + "url": "https://github.com/Fantomas42/django-xmlrpc", + "description": "XML-RPC Server App for the Django framework.", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "mots-vides", + "url": "https://github.com/Fantomas42/mots-vides", + "description": "Python library for managing stop words in many languages.", + "paths": [ + "." + ], + "licenses": [ + "copyright (c) 2015, julien fache" + ] + }, + { + "name": "pyparsing", + "url": "http://pyparsing.wikispaces.com/", + "description": "Python parsing module", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "pytz", + "url": "http://pythonhosted.org/pytz", + "description": "World timezone definitions, modern and historical", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "regex", + "url": "https://bitbucket.org/mrabarnett/mrab-regex", + "description": "Alternative regular expression module, to replace re.", + "paths": [ + "." + ], + "licenses": [ + "Python-2.0" + ] + }, + { + "name": "tornado", + "url": "http://www.tornadoweb.org/", + "description": "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed.", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + } + ] +} diff --git a/spec/fixtures/expected/python/pipenv/v1.0.json b/spec/fixtures/expected/python/pipenv/v1.0.json new file mode 100644 index 0000000..89bce2a --- /dev/null +++ b/spec/fixtures/expected/python/pipenv/v1.0.json @@ -0,0 +1,77 @@ +{ + "licenses": [ + { + "count": 1, + "name": "Apache 2.0" + }, + { + "count": 1, + "name": "BSD" + }, + { + "count": 1, + "name": "MIT" + }, + { + "count": 1, + "name": "public domain, Python, 2-Clause BSD, GPL 3 (see COPYING.txt)" + } + ], + "dependencies": [ + { + "license": { + "name": "BSD", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + }, + "dependency": { + "name": "Django", + "url": "https://www.djangoproject.com/", + "description": "A high-level Python Web framework that encourages rapid development and clean, pragmatic design.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "public domain, Python, 2-Clause BSD, GPL 3 (see COPYING.txt)" + }, + "dependency": { + "name": "docutils", + "url": "http://docutils.sourceforge.net/", + "description": "Docutils -- Python Documentation Utilities", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pytz", + "url": "http://pythonhosted.org/pytz", + "description": "World timezone definitions, modern and historical", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "requests", + "url": "http://python-requests.org", + "description": "Python HTTP for Humans.", + "pathes": [ + "." + ] + } + } + ] +} diff --git a/spec/fixtures/expected/python/pipenv/v1.1.json b/spec/fixtures/expected/python/pipenv/v1.1.json new file mode 100644 index 0000000..92a5153 --- /dev/null +++ b/spec/fixtures/expected/python/pipenv/v1.1.json @@ -0,0 +1,102 @@ +{ + "version": "1.1", + "licenses": [ + { + "count": 1, + "name": "Apache 2.0" + }, + { + "count": 1, + "name": "BSD" + }, + { + "count": 1, + "name": "MIT" + }, + { + "count": 1, + "name": "public domain, Python, 2-Clause BSD, GPL 3 (see COPYING.txt)" + } + ], + "dependencies": [ + { + "licenses": [ + { + "name": "BSD", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + } + ], + "license": { + "name": "BSD", + "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + }, + "dependency": { + "name": "Django", + "url": "https://www.djangoproject.com/", + "description": "A high-level Python Web framework that encourages rapid development and clean, pragmatic design.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "public domain, Python, 2-Clause BSD, GPL 3 (see COPYING.txt)", + "url": "" + } + ], + "license": { + "name": "public domain, Python, 2-Clause BSD, GPL 3 (see COPYING.txt)" + }, + "dependency": { + "name": "docutils", + "url": "http://docutils.sourceforge.net/", + "description": "Docutils -- Python Documentation Utilities", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "pytz", + "url": "http://pythonhosted.org/pytz", + "description": "World timezone definitions, modern and historical", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "dependency": { + "name": "requests", + "url": "http://python-requests.org", + "description": "Python HTTP for Humans.", + "pathes": [ + "." + ] + } + } + ] +} diff --git a/spec/fixtures/expected/python/pipenv/v2.0.json b/spec/fixtures/expected/python/pipenv/v2.0.json new file mode 100644 index 0000000..ba4d529 --- /dev/null +++ b/spec/fixtures/expected/python/pipenv/v2.0.json @@ -0,0 +1,75 @@ +{ + "version": "2.0", + "licenses": [ + { + "id": "Apache-2.0", + "name": "Apache License 2.0", + "url": "https://opensource.org/licenses/Apache-2.0", + "count": 1 + }, + { + "id": "BSD-4-Clause", + "name": "BSD 4-Clause \"Original\" or \"Old\" License", + "url": "http://directory.fsf.org/wiki/License:BSD_4Clause", + "count": 1 + }, + { + "id": "MIT", + "name": "MIT License", + "url": "https://opensource.org/licenses/MIT", + "count": 1 + }, + { + "id": "public domain, python, 2-clause bsd, gpl 3 (see copying.txt)", + "name": "public domain, Python, 2-Clause BSD, GPL 3 (see COPYING.txt)", + "url": "", + "count": 1 + } + ], + "dependencies": [ + { + "name": "Django", + "url": "https://www.djangoproject.com/", + "description": "A high-level Python Web framework that encourages rapid development and clean, pragmatic design.", + "paths": [ + "." + ], + "licenses": [ + "BSD-4-Clause" + ] + }, + { + "name": "docutils", + "url": "http://docutils.sourceforge.net/", + "description": "Docutils -- Python Documentation Utilities", + "paths": [ + "." + ], + "licenses": [ + "public domain, python, 2-clause bsd, gpl 3 (see copying.txt)" + ] + }, + { + "name": "pytz", + "url": "http://pythonhosted.org/pytz", + "description": "World timezone definitions, modern and historical", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "requests", + "url": "http://python-requests.org", + "description": "Python HTTP for Humans.", + "paths": [ + "." + ], + "licenses": [ + "Apache-2.0" + ] + } + ] +} diff --git a/spec/fixtures/expected/ruby/bundler/v1.0.json b/spec/fixtures/expected/ruby/bundler/v1.0.json new file mode 100644 index 0000000..c66a9a3 --- /dev/null +++ b/spec/fixtures/expected/ruby/bundler/v1.0.json @@ -0,0 +1,242 @@ +{ + "licenses": [ + { + "count": 13, + "name": "MIT" + }, + { + "count": 2, + "name": "New BSD" + }, + { + "count": 1, + "name": "LGPL" + } + ], + "dependencies": [ + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "bundler", + "url": "https://bundler.io", + "description": "The best way to manage your application's dependencies", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "concurrent-ruby", + "url": "http://www.concurrent-ruby.com", + "description": "Modern concurrency tools for Ruby. Inspired by Erlang, Clojure, Scala, Haskell, F#, C#, Java, and classic concurrency patterns.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "connection_pool", + "url": "https://github.com/mperham/connection_pool", + "description": "Generic connection pool for Ruby", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mini_portile2", + "url": "http://github.com/flavorjones/mini_portile", + "description": "Simplistic port-like solution for developers", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mustermann", + "url": "https://github.com/sinatra/mustermann", + "description": "Your personal string matching expert.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "nokogiri", + "url": "http://nokogiri.org", + "description": "Nokogiri (鋸) is an HTML, XML, SAX, and Reader parser", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "pg", + "url": "https://bitbucket.org/ged/ruby-pg", + "description": "Pg is the Ruby interface to the {PostgreSQL RDBMS}[http://www.postgresql.org/]", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "puma", + "url": "http://puma.io", + "description": "Puma is a simple, fast, threaded, and highly concurrent HTTP 1.1 server for Ruby/Rack applications", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "rack", + "url": "https://rack.github.io/", + "description": "a modular Ruby webserver interface", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "rack-protection", + "url": "http://github.com/sinatra/sinatra/tree/master/rack-protection", + "description": "Protect against typical web attacks, works with all Rack apps, including Rails.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "redis", + "url": "https://github.com/redis/redis-rb", + "description": "A Ruby client library for Redis", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "LGPL", + "url": "http://www.gnu.org/licenses/lgpl.txt" + }, + "dependency": { + "name": "sidekiq", + "url": "http://sidekiq.org", + "description": "Simple, efficient background processing for Ruby", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "sinatra", + "url": "http://www.sinatrarb.com/", + "description": "Classy web-development dressed in a DSL", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "slim", + "url": "http://slim-lang.com/", + "description": "Slim is a template language.", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "temple", + "url": "https://github.com/judofyr/temple", + "description": "Template compilation framework in Ruby", + "pathes": [ + "." + ] + } + }, + { + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "tilt", + "url": "http://github.com/rtomayko/tilt/", + "description": "Generic interface to multiple Ruby template engines", + "pathes": [ + "." + ] + } + } + ] +} diff --git a/spec/fixtures/expected/ruby/bundler/v1.1.json b/spec/fixtures/expected/ruby/bundler/v1.1.json new file mode 100644 index 0000000..7bfd775 --- /dev/null +++ b/spec/fixtures/expected/ruby/bundler/v1.1.json @@ -0,0 +1,339 @@ +{ + "version": "1.1", + "licenses": [ + { + "count": 13, + "name": "MIT" + }, + { + "count": 2, + "name": "New BSD" + }, + { + "count": 1, + "name": "LGPL" + } + ], + "dependencies": [ + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "bundler", + "url": "https://bundler.io", + "description": "The best way to manage your application's dependencies", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "concurrent-ruby", + "url": "http://www.concurrent-ruby.com", + "description": "Modern concurrency tools for Ruby. Inspired by Erlang, Clojure, Scala, Haskell, F#, C#, Java, and classic concurrency patterns.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "connection_pool", + "url": "https://github.com/mperham/connection_pool", + "description": "Generic connection pool for Ruby", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mini_portile2", + "url": "http://github.com/flavorjones/mini_portile", + "description": "Simplistic port-like solution for developers", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "mustermann", + "url": "https://github.com/sinatra/mustermann", + "description": "Your personal string matching expert.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "nokogiri", + "url": "http://nokogiri.org", + "description": "Nokogiri (鋸) is an HTML, XML, SAX, and Reader parser", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "pg", + "url": "https://bitbucket.org/ged/ruby-pg", + "description": "Pg is the Ruby interface to the {PostgreSQL RDBMS}[http://www.postgresql.org/]", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + } + ], + "license": { + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" + }, + "dependency": { + "name": "puma", + "url": "http://puma.io", + "description": "Puma is a simple, fast, threaded, and highly concurrent HTTP 1.1 server for Ruby/Rack applications", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "rack", + "url": "https://rack.github.io/", + "description": "a modular Ruby webserver interface", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "rack-protection", + "url": "http://github.com/sinatra/sinatra/tree/master/rack-protection", + "description": "Protect against typical web attacks, works with all Rack apps, including Rails.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "redis", + "url": "https://github.com/redis/redis-rb", + "description": "A Ruby client library for Redis", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "LGPL", + "url": "http://www.gnu.org/licenses/lgpl.txt" + } + ], + "license": { + "name": "LGPL", + "url": "http://www.gnu.org/licenses/lgpl.txt" + }, + "dependency": { + "name": "sidekiq", + "url": "http://sidekiq.org", + "description": "Simple, efficient background processing for Ruby", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "sinatra", + "url": "http://www.sinatrarb.com/", + "description": "Classy web-development dressed in a DSL", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "slim", + "url": "http://slim-lang.com/", + "description": "Slim is a template language.", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "temple", + "url": "https://github.com/judofyr/temple", + "description": "Template compilation framework in Ruby", + "pathes": [ + "." + ] + } + }, + { + "licenses": [ + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + } + ], + "license": { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" + }, + "dependency": { + "name": "tilt", + "url": "http://github.com/rtomayko/tilt/", + "description": "Generic interface to multiple Ruby template engines", + "pathes": [ + "." + ] + } + } + ] +} diff --git a/spec/fixtures/expected/ruby/bundler/v2.0.json b/spec/fixtures/expected/ruby/bundler/v2.0.json new file mode 100644 index 0000000..230bd2c --- /dev/null +++ b/spec/fixtures/expected/ruby/bundler/v2.0.json @@ -0,0 +1,201 @@ +{ + "version": "2.0", + "licenses": [ + { + "id": "MIT", + "name": "MIT License", + "url": "https://opensource.org/licenses/MIT", + "count": 13 + }, + { + "id": "BSD-3-Clause", + "name": "BSD 3-Clause \"New\" or \"Revised\" License", + "url": "https://opensource.org/licenses/BSD-3-Clause", + "count": 2 + }, + { + "id": "LGPL-3.0-only", + "name": "GNU Lesser General Public License v3.0 only", + "url": "https://opensource.org/licenses/LGPL-3.0", + "count": 1 + } + ], + "dependencies": [ + { + "name": "bundler", + "url": "https://bundler.io", + "description": "The best way to manage your application's dependencies", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "concurrent-ruby", + "url": "http://www.concurrent-ruby.com", + "description": "Modern concurrency tools for Ruby. Inspired by Erlang, Clojure, Scala, Haskell, F#, C#, Java, and classic concurrency patterns.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "connection_pool", + "url": "https://github.com/mperham/connection_pool", + "description": "Generic connection pool for Ruby", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "mini_portile2", + "url": "http://github.com/flavorjones/mini_portile", + "description": "Simplistic port-like solution for developers", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "mustermann", + "url": "https://github.com/sinatra/mustermann", + "description": "Your personal string matching expert.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "nokogiri", + "url": "http://nokogiri.org", + "description": "Nokogiri (鋸) is an HTML, XML, SAX, and Reader parser", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "pg", + "url": "https://bitbucket.org/ged/ruby-pg", + "description": "Pg is the Ruby interface to the {PostgreSQL RDBMS}[http://www.postgresql.org/]", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "puma", + "url": "http://puma.io", + "description": "Puma is a simple, fast, threaded, and highly concurrent HTTP 1.1 server for Ruby/Rack applications", + "paths": [ + "." + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "name": "rack", + "url": "https://rack.github.io/", + "description": "a modular Ruby webserver interface", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "rack-protection", + "url": "http://github.com/sinatra/sinatra/tree/master/rack-protection", + "description": "Protect against typical web attacks, works with all Rack apps, including Rails.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "redis", + "url": "https://github.com/redis/redis-rb", + "description": "A Ruby client library for Redis", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "sidekiq", + "url": "http://sidekiq.org", + "description": "Simple, efficient background processing for Ruby", + "paths": [ + "." + ], + "licenses": [ + "LGPL-3.0-only" + ] + }, + { + "name": "sinatra", + "url": "http://www.sinatrarb.com/", + "description": "Classy web-development dressed in a DSL", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "slim", + "url": "http://slim-lang.com/", + "description": "Slim is a template language.", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "temple", + "url": "https://github.com/judofyr/temple", + "description": "Template compilation framework in Ruby", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "tilt", + "url": "http://github.com/rtomayko/tilt/", + "description": "Generic interface to multiple Ruby template engines", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + } + ] +} diff --git a/spec/fixtures/go/go.mod b/spec/fixtures/go/go.mod new file mode 100644 index 0000000..4733ed8 --- /dev/null +++ b/spec/fixtures/go/go.mod @@ -0,0 +1,12 @@ +module example + +go 1.12 + +require ( + github.com/dimfeld/httptreemux/v5 v5.0.2 + github.com/go-kit/kit v0.9.0 + github.com/go-logfmt/logfmt v0.5.0 + github.com/google/uuid v1.1.1 + github.com/stretchr/testify v1.4.0 + golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d +) diff --git a/spec/fixtures/go/go.sum b/spec/fixtures/go/go.sum new file mode 100644 index 0000000..8fc291d --- /dev/null +++ b/spec/fixtures/go/go.sum @@ -0,0 +1,158 @@ +cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= +github.com/DATA-DOG/go-sqlmock v1.2.0/go.mod h1:f/Ixk793poVmq4qj/V1dPUg2JEAKC73Q5eFN3EC/SaM= +github.com/DATA-DOG/go-sqlmock v1.4.1 h1:ThlnYciV1iM/V0OSF/dtkqWb6xo5qITT1TJBG1MRDJM= +github.com/DATA-DOG/go-sqlmock v1.4.1/go.mod h1:f/Ixk793poVmq4qj/V1dPUg2JEAKC73Q5eFN3EC/SaM= +github.com/DataDog/datadog-go v3.1.0+incompatible h1:pWtiFe/oFu7z0Of01jhH8QLhbF8zAA96rZaK6KM1Fog= +github.com/DataDog/datadog-go v3.1.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3tL4fMGNddJ+vMq1mwgfaqoQ= +github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= +github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= +github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= +github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= +github.com/aws/aws-sdk-go v1.17.12/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= +github.com/aws/aws-sdk-go v1.29.8 h1:Kma1ikL7MHs/XH5Q4Aqj53AAhgttW6UFykc8Qj16HGo= +github.com/aws/aws-sdk-go v1.29.8/go.mod h1:1KvfttTE3SPKMpo8g2c6jL3ZKfXtFvKscTgahTma5Xg= +github.com/aws/aws-xray-sdk-go v1.0.0-rc.14 h1:cxRNHoaVNiGhCddLe7A20nVFJsoWhs1jADm/1M97Ytw= +github.com/aws/aws-xray-sdk-go v1.0.0-rc.14/go.mod h1:NCf+n91lACeo8klrI7RsKqDaAEXt321d/cfaJk4YuDM= +github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= +github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= +github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= +github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= +github.com/cespare/xxhash/v2 v2.1.0 h1:yTUvW7Vhb89inJ+8irsUqiWjh8iT6sQPZiQzI6ReGkA= +github.com/cespare/xxhash/v2 v2.1.0/go.mod h1:dgIUBU3pDso/gPgZ1osOZ0iQf77oPR28Tjxl5dIMyVM= +github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd h1:qMd81Ts1T2OTKmB4acZcyKaMtRnY5Y44NuXGX2GFJ1w= +github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd/go.mod h1:sE/e/2PUdi/liOCUjSTXgM1o87ZssimdTWN964YiIeI= +github.com/davecgh/go-spew v0.0.0-20160907170601-6d212800a42e/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8= +github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/dghubble/oauth1 v0.6.0/go.mod h1:8pFdfPkv/jr8mkChVbNVuJ0suiHe278BtWI4Tk1ujxk= +github.com/dgrijalva/jwt-go v3.2.0+incompatible h1:7qlOGliEKZXTDg6OTjfoBKDXWrumCAMpl/TFQ4/5kLM= +github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ= +github.com/dimfeld/httptreemux/v5 v5.0.2 h1:q+c+zKVpQocXT2OGa7dsXCX9wdeDq2TO5INqqDfKRLE= +github.com/dimfeld/httptreemux/v5 v5.0.2/go.mod h1:QeEylH57C0v3VO0tkKraVz9oD3Uu93CKPnTLbsidvSw= +github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= +github.com/go-kit/kit v0.9.0 h1:wDJmvq38kDhkVxi50ni9ykkdUr1PKgqKOoi01fa0Mdk= +github.com/go-kit/kit v0.9.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= +github.com/go-kit/kit v0.10.0 h1:dXFJfIHVvUcpSgDOV+Ne6t7jXri8Tfv2uOLHUZ2XNuo= +github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= +github.com/go-logfmt/logfmt v0.4.0 h1:MP4Eh7ZCb31lleYCFuwm0oe4/YGak+5l1vA2NOE80nA= +github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk= +github.com/go-logfmt/logfmt v0.5.0 h1:TrB8swr/68K7m9CcGut2g3UOihhbcbiMAYiuTXdEih4= +github.com/go-logfmt/logfmt v0.5.0/go.mod h1:wCYkCAKZfumFQihp8CzCvQ3paCTfi41vtzG1KdI/P7A= +github.com/go-sql-driver/mysql v1.5.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg= +github.com/go-stack/stack v1.8.0 h1:5SgMzNM5HxrEjV0ww2lTmX6E2Izsfxas4+YHWRs3Lsk= +github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= +github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= +github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/protobuf v1.3.2 h1:6nsPYzhq5kReh6QImI3k5qWzO4PEbvbIW2cwSfR/6xs= +github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/protobuf v1.3.3 h1:gyjaxf+svBWX08ZjK86iN9geUJF0H6gp2IRKX6Nf6/I= +github.com/golang/protobuf v1.3.3/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= +github.com/google/go-cmp v0.3.0 h1:crn/baboCvb5fXaQ0IJ1SGTsTVrWpDsCWC8EGETZijY= +github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= +github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= +github.com/google/uuid v1.1.1 h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY= +github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af h1:pmfjZENx5imkbgOkpRUYLnmbU7UEFbjtDA2hxJ1ichM= +github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k= +github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= +github.com/json-iterator/go v1.1.7/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= +github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= +github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= +github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515 h1:T+h1c/A9Gawja4Y9mFVWj2vyii2bbUNDw3kt9VxK2EY= +github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= +github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI= +github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= +github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= +github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE= +github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= +github.com/lestrrat-go/jwx v0.9.0 h1:Fnd0EWzTm0kFrBPzE/PEPp9nzllES5buMkksPMjEKpM= +github.com/lestrrat-go/jwx v0.9.0/go.mod h1:iEoxlYfZjvoGpuWwxUz+eR5e6KTJGsaRcy/YNA/UnBk= +github.com/matttproud/golang_protobuf_extensions v1.0.1 h1:4hp9jkHxhMHkqkrB3Ix0jegS5sx/RkqARlsWZ6pIwiU= +github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= +github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= +github.com/opentracing/opentracing-go v1.1.0 h1:pWlfV3Bxv7k65HYwkikxat0+s3pV4bsqf19k25Ur8rU= +github.com/opentracing/opentracing-go v1.1.0/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o= +github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I= +github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= +github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +github.com/pmezard/go-difflib v0.0.0-20151028094244-d8ed2627bdf0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= +github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= +github.com/prometheus/client_golang v1.2.1 h1:JnMpQc6ppsNgw9QPAGF6Dod479itz7lvlsMzzNayLOI= +github.com/prometheus/client_golang v1.2.1/go.mod h1:XMU6Z2MjaRKVu/dC1qupJI9SiNkDYzz3xecMgSW/F+U= +github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= +github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4 h1:gQz4mCbXsO+nc9n1hCxHcGA3Zx3Eo+UHZoInFGUIXNM= +github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= +github.com/prometheus/common v0.7.0 h1:L+1lyG48J1zAQXA3RBX/nG/B3gjlHq0zTt2tlbJLyCY= +github.com/prometheus/common v0.7.0/go.mod h1:DjGbpBbp5NYNiECxcL/VnbXCCaQpKd3tt26CguLLsqA= +github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= +github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= +github.com/prometheus/procfs v0.0.5 h1:3+auTFlqw+ZaQYJARz6ArODtkaIwtvBTx3N2NehQlL8= +github.com/prometheus/procfs v0.0.5/go.mod h1:4A/X28fw3Fc593LaREMrKMqOKvUAntwMDaekg4FpcdQ= +github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= +github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= +github.com/stretchr/objx v0.1.0 h1:4G4v2dO3VZwixGIRoQ5Lfboy6nUhCyYzaqnIAPPhYs4= +github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.1.1 h1:2vfRuCMp5sSVIDSqO8oNnWJq7mPa6KVP3iPIwFBuy8A= +github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/testify v1.1.4/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= +github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= +github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q= +github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= +github.com/stretchr/testify v1.4.0 h1:2E4SXV/wtOkTonXsotYi4li6zVWxYlZuYNCXe9XRJyk= +github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= +github.com/uber/jaeger-client-go v2.22.1+incompatible h1:NHcubEkVbahf9t3p75TOCR83gdUHXjRJvjoBh1yACsM= +github.com/uber/jaeger-client-go v2.22.1+incompatible/go.mod h1:WVhlPFC8FDjOFMMWRy2pZqQJSXxYSwNYOkTr/Z6d3Kk= +github.com/uber/jaeger-lib v2.2.0+incompatible h1:MxZXOiR2JuoANZ3J6DE/U0kSFv/eJ/GfSYVCjK7dyaw= +github.com/uber/jaeger-lib v2.2.0+incompatible/go.mod h1:ComeNDZlWwrWnDv8aPp0Ba6+uUTzImX/AauajbLI56U= +go.uber.org/atomic v1.4.0 h1:cxzIVoETapQEqDhQu3QfnvXAV4AlzcvUCxkVUFw3+EU= +go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= +go.uber.org/multierr v1.2.0 h1:6I+W7f5VwC5SV9dNrZ3qXrDB9mD0dyGOi/ZJmYw03T4= +go.uber.org/multierr v1.2.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0= +go.uber.org/zap v1.11.0 h1:gSmpCfs+R47a4yQPAI4xJ0IPDLTRGXskm6UelqNXpqE= +go.uber.org/zap v1.11.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= +golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= +golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= +golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e h1:bRhVy7zSSasaqNksaRZiA5EEI+Ei4I1nO5Jh72wfHlg= +golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190613194153-d28f0bde5980 h1:dfGZHvZk057jK2MCeWus/TowKpJ8y4AmooUzdBSR9GU= +golang.org/x/net v0.0.0-20190613194153-d28f0bde5980/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200202094626-16171245cfb2 h1:CCH4IOTTfewWjGOlSp+zGcjutRKlBEZQ6wTn8ozI/nI= +golang.org/x/net v0.0.0-20200202094626-16171245cfb2/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d h1:TzXSXBo42m9gQenoE3b9BGiEpg5IG2JkU5FkPIawgtw= +golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= +golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191010194322-b09406accb47 h1:/XfQ9z7ib8eEJX2hdgFTZJ/ntt0swNk5oYBziWeTCvY= +golang.org/x/sys v0.0.0-20191010194322-b09406accb47/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/text v0.3.0 h1:g61tztE5qeGQ89tm6NTjjM9VPIm088od1l6aSorWRWg= +golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= +gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 h1:qIbj1fsPNlZgppZ+VLlY7N33q108Sa+fhmuc+sWQYwY= +gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.2 h1:ZCJp+EgiOT7lHqUV2J862kp8Qj64Jo6az82+3Td9dZw= +gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= diff --git a/spec/fixtures/go/main.go b/spec/fixtures/go/main.go new file mode 100644 index 0000000..3d0aef4 --- /dev/null +++ b/spec/fixtures/go/main.go @@ -0,0 +1,13 @@ +package main + +import "fmt" +import "github.com/dimfeld/httptreemux/v5" +import "github.com/go-kit/kit" +import "github.com/go-logfmt/logfmt" +import "github.com/google/uuid" +import "github.com/stretchr/testify" +import "golang.org/x/oauth2" + +func main() { + fmt.Println("vim-go") +} diff --git a/spec/fixtures/java/build.gradle.kts b/spec/fixtures/java/build.gradle.kts new file mode 100644 index 0000000..494fc8b --- /dev/null +++ b/spec/fixtures/java/build.gradle.kts @@ -0,0 +1,11 @@ +plugins { + `java-library` +} +repositories { + jcenter() +} +dependencies { + api("org.apache.commons:commons-math3:3.6.1") + implementation("com.google.guava:guava:28.1-jre") + testImplementation("junit:junit:4.12") +} diff --git a/spec/fixtures/java/custom-maven-settings.xml b/spec/fixtures/java/custom-maven-settings.xml new file mode 100644 index 0000000..4fa5d16 --- /dev/null +++ b/spec/fixtures/java/custom-maven-settings.xml @@ -0,0 +1,16 @@ + + + + custom + + true + + + + gitlab-maven + https://gitlab.com/api/v4/projects/17523603/packages/maven + + + + + diff --git a/spec/fixtures/java/maven-multimodule/api/pom.xml b/spec/fixtures/java/maven-multimodule/api/pom.xml new file mode 100644 index 0000000..c621c1a --- /dev/null +++ b/spec/fixtures/java/maven-multimodule/api/pom.xml @@ -0,0 +1,26 @@ + + + 4.0.0 + + com.gitlab.security_products.tests + java-maven-multi-modules + 1.0-SNAPSHOT + + com.gitlab.security_products.tests + api + 1.0-SNAPSHOT + api + http://maven.apache.org + + + ${project.groupId} + model + ${project.version} + + + org.apache.struts + struts2-core + 2.5.1 + + + diff --git a/spec/fixtures/java/maven-multimodule/model/pom.xml b/spec/fixtures/java/maven-multimodule/model/pom.xml new file mode 100644 index 0000000..91b366b --- /dev/null +++ b/spec/fixtures/java/maven-multimodule/model/pom.xml @@ -0,0 +1,27 @@ + + + 4.0.0 + + com.gitlab.security_products.tests + java-maven-multi-modules + 1.0-SNAPSHOT + + com.gitlab.security_products.tests + model + 1.0-SNAPSHOT + model + http://maven.apache.org + + 1.6 + 1.6 + UTF-8 + + + + org.apache.logging.log4j + log4j-core + 2.8.2 + + + diff --git a/spec/fixtures/java/maven-multimodule/pom.xml b/spec/fixtures/java/maven-multimodule/pom.xml new file mode 100644 index 0000000..e84ad4a --- /dev/null +++ b/spec/fixtures/java/maven-multimodule/pom.xml @@ -0,0 +1,27 @@ + + + 4.0.0 + com.gitlab.security_products.tests + java-maven-multi-modules + 1.0-SNAPSHOT + pom + java-maven-multi-modules + + api + model + web + + + + io.netty + netty-all + 4.1.0.Final + + + junit + junit + 3.8.1 + test + + + \ No newline at end of file diff --git a/spec/fixtures/java/maven-multimodule/web/pom.xml b/spec/fixtures/java/maven-multimodule/web/pom.xml new file mode 100644 index 0000000..548e9fb --- /dev/null +++ b/spec/fixtures/java/maven-multimodule/web/pom.xml @@ -0,0 +1,27 @@ + + + 4.0.0 + + com.gitlab.security_products.tests + java-maven-multi-modules + 1.0-SNAPSHOT + + com.gitlab.security_products.tests + web + 1.0-SNAPSHOT + web + http://maven.apache.org + + 1.6 + 1.6 + UTF-8 + + + + com.fasterxml.jackson.dataformat + jackson-dataformat-xml + 2.7.3 + + + diff --git a/spec/fixtures/java/pom-public-gitlab-repository.xml b/spec/fixtures/java/pom-public-gitlab-repository.xml new file mode 100644 index 0000000..4e57c79 --- /dev/null +++ b/spec/fixtures/java/pom-public-gitlab-repository.xml @@ -0,0 +1,16 @@ + + 4.0.0 + com.gitlab.secure + license-scanning + jar + 1.0-SNAPSHOT + example + http://maven.apache.org + + + com.gitlab.xlgmokha + mvn-spike + 1.2-SNAPSHOT + + + diff --git a/spec/fixtures/php/drupal_composer.json b/spec/fixtures/php/drupal_composer.json new file mode 100644 index 0000000..48b445b --- /dev/null +++ b/spec/fixtures/php/drupal_composer.json @@ -0,0 +1,241 @@ +{ + "name": "drupal/core", + "description": "Drupal is an open source content management platform powering millions of websites and applications.", + "type": "drupal-core", + "license": "GPL-2.0-or-later", + "require": { + "ext-date": "*", + "ext-dom": "*", + "ext-filter": "*", + "ext-gd": "*", + "ext-hash": "*", + "ext-json": "*", + "ext-pcre": "*", + "ext-PDO": "*", + "ext-session": "*", + "ext-SimpleXML": "*", + "ext-SPL": "*", + "ext-tokenizer": "*", + "ext-xml": "*", + "php": "^5.5.9|>=7.0.8", + "symfony/class-loader": "~3.4.0", + "symfony/console": "~3.4.0", + "symfony/dependency-injection": "~3.4.26", + "symfony/event-dispatcher": "~3.4.0", + "symfony/http-foundation": "~3.4.27", + "symfony/http-kernel": "~3.4.14", + "symfony/routing": "~3.4.0", + "symfony/serializer": "~3.4.0", + "symfony/translation": "~3.4.0", + "symfony/validator": "~3.4.0", + "symfony/process": "~3.4.0", + "symfony/polyfill-iconv": "^1.0", + "symfony/yaml": "~3.4.5", + "typo3/phar-stream-wrapper": "^2.1.1", + "twig/twig": "^1.38.2", + "doctrine/common": "^2.5", + "doctrine/annotations": "^1.2", + "guzzlehttp/guzzle": "^6.2.1", + "symfony-cmf/routing": "^1.4", + "easyrdf/easyrdf": "^0.9", + "zendframework/zend-feed": "^2.4", + "stack/builder": "^1.0", + "egulias/email-validator": "^2.0", + "masterminds/html5": "^2.1", + "symfony/psr-http-message-bridge": "^1.1.2", + "zendframework/zend-diactoros": "^1.1", + "composer/semver": "^1.0", + "paragonie/random_compat": "^1.0|^2.0|^9.99.99", + "asm89/stack-cors": "^1.1", + "pear/archive_tar": "^1.4.9" + }, + "conflict": { + "drush/drush": "<8.1.10", + "symfony/dom-crawler": ">=4" + }, + "require-dev": { + "behat/mink": "1.7.x-dev", + "behat/mink-goutte-driver": "^1.2", + "behat/mink-selenium2-driver": "1.3.x-dev", + "drupal/coder": "^8.3.1", + "jcalderonzumba/gastonjs": "^1.0.2", + "jcalderonzumba/mink-phantomjs-driver": "^0.3.1", + "mikey179/vfsstream": "^1.2", + "phpunit/phpunit": "^4.8.35 || ^6.5", + "phpspec/prophecy": "^1.7", + "symfony/css-selector": "^3.4.0", + "symfony/phpunit-bridge": "^3.4.3", + "symfony/debug": "^3.4.0", + "justinrainbow/json-schema": "^5.2" + }, + "replace": { + "drupal/action": "self.version", + "drupal/aggregator": "self.version", + "drupal/automated_cron": "self.version", + "drupal/bartik": "self.version", + "drupal/ban": "self.version", + "drupal/basic_auth": "self.version", + "drupal/big_pipe": "self.version", + "drupal/block": "self.version", + "drupal/block_content": "self.version", + "drupal/block_place": "self.version", + "drupal/book": "self.version", + "drupal/breakpoint": "self.version", + "drupal/ckeditor": "self.version", + "drupal/classy": "self.version", + "drupal/color": "self.version", + "drupal/comment": "self.version", + "drupal/config": "self.version", + "drupal/config_translation": "self.version", + "drupal/contact": "self.version", + "drupal/content_moderation": "self.version", + "drupal/content_translation": "self.version", + "drupal/contextual": "self.version", + "drupal/core-annotation": "self.version", + "drupal/core-assertion": "self.version", + "drupal/core-bridge": "self.version", + "drupal/core-class-finder": "self.version", + "drupal/core-datetime": "self.version", + "drupal/core-dependency-injection": "self.version", + "drupal/core-diff": "self.version", + "drupal/core-discovery": "self.version", + "drupal/core-event-dispatcher": "self.version", + "drupal/core-file-cache": "self.version", + "drupal/core-filesystem": "self.version", + "drupal/core-gettext": "self.version", + "drupal/core-graph": "self.version", + "drupal/core-http-foundation": "self.version", + "drupal/core-php-storage": "self.version", + "drupal/core-plugin": "self.version", + "drupal/core-proxy-builder": "self.version", + "drupal/core-render": "self.version", + "drupal/core-serialization": "self.version", + "drupal/core-transliteration": "self.version", + "drupal/core-utility": "self.version", + "drupal/core-uuid": "self.version", + "drupal/core-version": "self.version", + "drupal/datetime": "self.version", + "drupal/datetime_range": "self.version", + "drupal/dblog": "self.version", + "drupal/dynamic_page_cache": "self.version", + "drupal/editor": "self.version", + "drupal/entity_reference": "self.version", + "drupal/field": "self.version", + "drupal/field_layout": "self.version", + "drupal/field_ui": "self.version", + "drupal/file": "self.version", + "drupal/filter": "self.version", + "drupal/forum": "self.version", + "drupal/hal": "self.version", + "drupal/help": "self.version", + "drupal/history": "self.version", + "drupal/image": "self.version", + "drupal/inline_form_errors": "self.version", + "drupal/jsonapi": "self.version", + "drupal/language": "self.version", + "drupal/layout_builder": "self.version", + "drupal/layout_discovery": "self.version", + "drupal/link": "self.version", + "drupal/locale": "self.version", + "drupal/minimal": "self.version", + "drupal/media": "self.version", + "drupal/media_library": "self.version", + "drupal/menu_link_content": "self.version", + "drupal/menu_ui": "self.version", + "drupal/migrate": "self.version", + "drupal/migrate_drupal": "self.version", + "drupal/migrate_drupal_multilingual": "self.version", + "drupal/migrate_drupal_ui": "self.version", + "drupal/node": "self.version", + "drupal/options": "self.version", + "drupal/page_cache": "self.version", + "drupal/path": "self.version", + "drupal/quickedit": "self.version", + "drupal/rdf": "self.version", + "drupal/responsive_image": "self.version", + "drupal/rest": "self.version", + "drupal/search": "self.version", + "drupal/serialization": "self.version", + "drupal/settings_tray": "self.version", + "drupal/seven": "self.version", + "drupal/shortcut": "self.version", + "drupal/simpletest": "self.version", + "drupal/standard": "self.version", + "drupal/stark": "self.version", + "drupal/statistics": "self.version", + "drupal/syslog": "self.version", + "drupal/system": "self.version", + "drupal/taxonomy": "self.version", + "drupal/telephone": "self.version", + "drupal/text": "self.version", + "drupal/toolbar": "self.version", + "drupal/tour": "self.version", + "drupal/tracker": "self.version", + "drupal/update": "self.version", + "drupal/user": "self.version", + "drupal/views": "self.version", + "drupal/views_ui": "self.version", + "drupal/workflows": "self.version", + "drupal/workspaces": "self.version" + }, + "extra": { + "merge-plugin": { + "require": [ + "core/lib/Drupal/Component/Annotation/composer.json", + "core/lib/Drupal/Component/Assertion/composer.json", + "core/lib/Drupal/Component/Bridge/composer.json", + "core/lib/Drupal/Component/ClassFinder/composer.json", + "core/lib/Drupal/Component/Datetime/composer.json", + "core/lib/Drupal/Component/DependencyInjection/composer.json", + "core/lib/Drupal/Component/Diff/composer.json", + "core/lib/Drupal/Component/Discovery/composer.json", + "core/lib/Drupal/Component/EventDispatcher/composer.json", + "core/lib/Drupal/Component/FileCache/composer.json", + "core/lib/Drupal/Component/FileSystem/composer.json", + "core/lib/Drupal/Component/Gettext/composer.json", + "core/lib/Drupal/Component/Graph/composer.json", + "core/lib/Drupal/Component/HttpFoundation/composer.json", + "core/lib/Drupal/Component/PhpStorage/composer.json", + "core/lib/Drupal/Component/Plugin/composer.json", + "core/lib/Drupal/Component/ProxyBuilder/composer.json", + "core/lib/Drupal/Component/Render/composer.json", + "core/lib/Drupal/Component/Serialization/composer.json", + "core/lib/Drupal/Component/Transliteration/composer.json", + "core/lib/Drupal/Component/Utility/composer.json", + "core/lib/Drupal/Component/Uuid/composer.json", + "core/lib/Drupal/Component/Version/composer.json" + ], + "recurse": false, + "replace": false, + "merge-extra": false + } + }, + "minimum-stability": "dev", + "prefer-stable": true, + "autoload": { + "psr-4": { + "Drupal\\Core\\": "lib/Drupal/Core", + "Drupal\\Component\\": "lib/Drupal/Component", + "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver" + }, + "classmap": [ + "lib/Drupal.php", + "lib/Drupal/Component/Utility/Timer.php", + "lib/Drupal/Component/Utility/Unicode.php", + "lib/Drupal/Core/Database/Database.php", + "lib/Drupal/Core/DrupalKernel.php", + "lib/Drupal/Core/DrupalKernelInterface.php", + "lib/Drupal/Core/Site/Settings.php" + ] + }, + "config": { + "preferred-install": "dist", + "autoloader-suffix": "Drupal8" + }, + "scripts": { + "pre-autoload-dump": "Drupal\\Core\\Composer\\Composer::preAutoloadDump", + "post-autoload-dump": [ + "Drupal\\Core\\Composer\\Composer::ensureHtaccess" + ] + } +} diff --git a/spec/fixtures/python/airgap-Pipfile.erb b/spec/fixtures/python/airgap-Pipfile.erb new file mode 100644 index 0000000..750147d --- /dev/null +++ b/spec/fixtures/python/airgap-Pipfile.erb @@ -0,0 +1,9 @@ +[[source]] +name = "pypi" +url = "<%= index_url %>" +verify_ssl = true + +[dev-packages] + +[packages] +requests = "*" diff --git a/spec/fixtures/python/airgap-Pipfile.lock.erb b/spec/fixtures/python/airgap-Pipfile.lock.erb new file mode 100644 index 0000000..6a55e26 --- /dev/null +++ b/spec/fixtures/python/airgap-Pipfile.lock.erb @@ -0,0 +1,50 @@ +{ + "_meta": { + "hash": { + "sha256": "5b488a008aa3a3189ebb41e224ca36bb2ca6e5d4d420ad136bb660d15fd27a14" + }, + "pipfile-spec": 6, + "requires": {}, + "sources": [ + { + "name": "pypi", + "url": "<%= index_url %>", + "verify_ssl": true + } + ] + }, + "default": { + "certifi": { + "hashes": [ + "sha256:017c25db2a153ce562900032d5bc68e9f191e44e9a0f762f373977de9df1fbb3" + ], + "version": "==2019.11.28" + }, + "chardet": { + "hashes": [ + "sha256:fc323ffcaeaed0e0a02bf4d117757b98aed530d9ed4531e3e15460124c106691" + ], + "version": "==3.0.4" + }, + "idna": { + "hashes": [ + "sha256:a068a21ceac8a4d63dbfd964670474107f541babbd2250d61922f029858365fa" + ], + "version": "==2.9" + }, + "requests": { + "hashes": [ + "sha256:43999036bfa82904b6af1d99e4882b560e5e2c68e5c4b0aa03b655f3d7d73fee" + ], + "index": "pypi", + "version": "==2.23.0" + }, + "urllib3": { + "hashes": [ + "sha256:2f3db8b19923a873b3e5256dc9c2dedfa883e33d87c690d9c7913e1f40673cdc" + ], + "version": "==1.25.8" + } + }, + "develop": {} +} diff --git a/spec/fixtures/python/pypi.crt b/spec/fixtures/python/pypi.crt new file mode 100644 index 0000000..202557f --- /dev/null +++ b/spec/fixtures/python/pypi.crt @@ -0,0 +1,24 @@ +-----BEGIN CERTIFICATE----- +MIID+zCCAuOgAwIBAgIUWxGpSPKNbbHUxh32y0cGgvmSwZIwDQYJKoZIhvcNAQEL +BQAwgYwxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQK +DBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQxRTBDBgNVBAMMPGdpdGxhYi1haXJn +YXAtcHlwaS51cy13ZXN0MS1iLmMuZ3JvdXAtc2VjdXJlLWE4OWZlNy5pbnRlcm5h +bDAeFw0yMDA0MDIwMTQ0MTFaFw0yMTA0MDIwMTQ0MTFaMIGMMQswCQYDVQQGEwJB +VTETMBEGA1UECAwKU29tZS1TdGF0ZTEhMB8GA1UECgwYSW50ZXJuZXQgV2lkZ2l0 +cyBQdHkgTHRkMUUwQwYDVQQDDDxnaXRsYWItYWlyZ2FwLXB5cGkudXMtd2VzdDEt +Yi5jLmdyb3VwLXNlY3VyZS1hODlmZTcuaW50ZXJuYWwwggEiMA0GCSqGSIb3DQEB +AQUAA4IBDwAwggEKAoIBAQCsguLHmkpWR13l06HrLze+sv/4eI3jyveBc0xkUGFh +WKHAOCPQvfHhavK2W1w2mKA69mEixkncUwU3Q5KT8bapnUYo2sks62vSfuibat1F +ZzoII35xk71zgkXwGgEAy/h4izEubbsP0JMYIE0uZKuuytylax7KDy5Tskbh79Gq +Ye42N1j77T6rxfB06nrENokZMb9EoOtUdW/jU4BMBGUO1ZwQHh1QOawENtGBay24 +j05HbOURZzl5SxfJbbFSeQbGqaY/ujaCDdJRRfacbmkjs+qaZ0QF/fEvxg9/xP/y +VwGwLSzIXfkuRyw2KSmKBSdy36DLIJ/TBdmLoMgHjouhAgMBAAGjUzBRMB0GA1Ud +DgQWBBS2dpl46jX7D8PTwLhdulc++IzBRTAfBgNVHSMEGDAWgBS2dpl46jX7D8PT +wLhdulc++IzBRTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQBd +SN3o3SEEl3sfbnzKPzQusBbg2njpp9zmnRt26DvHWXPM2BYyBPs0YY8jF4NmwoK4 +ijbGolsOPJy/8gQ478WLizN0Mdhcqh7+R5FvbhghyO66/I6WsPvOR+XNOuaYXe4S +Jg9dfTFOTzndTJwbTJqhe+QwM3Ns+jw8uDE3zAtsGJ1rcgXOKX8B24AvPdIttu1h +z0ahOUbRIT5MsTxCMBZZqQTFdhBOeBiLEYUtK789NsWjb3JdKwuBeKyhnJhcPnUo +YK3HLoDrUfpHveFsg5CWUm7euJ/HXljJm+Ct1+fHbRC1jUQ3tY8JsvbmvkXCVHXv +f7j8RXMzKBldTaHzsVj2 +-----END CERTIFICATE----- diff --git a/spec/fixtures/python/simple-Pipfile b/spec/fixtures/python/simple-Pipfile new file mode 100644 index 0000000..2a4ffeb --- /dev/null +++ b/spec/fixtures/python/simple-Pipfile @@ -0,0 +1,10 @@ +[[source]] +url = "https://pypi.python.org/simple" +verify_ssl = true +name = "pypi" + +[packages] +requests = "*" + +[dev-packages] +pytest = "*" diff --git a/spec/fixtures/python/simple-Pipfile.lock b/spec/fixtures/python/simple-Pipfile.lock new file mode 100644 index 0000000..655ee42 --- /dev/null +++ b/spec/fixtures/python/simple-Pipfile.lock @@ -0,0 +1,69 @@ +{ + "_meta": { + "hash": { + "sha256": "8d14434df45e0ef884d6c3f6e8048ba72335637a8631cc44792f52fd20b6f97a" + }, + "pipfile-spec": 5, + "requires": {}, + "sources": [ + { + "name": "pypi", + "url": "https://pypi.python.org/simple", + "verify_ssl": true + } + ] + }, + "default": { + "certifi": { + "hashes": [ + "sha256:54a07c09c586b0e4c619f02a5e94e36619da8e2b053e20f594348c0611803704", + "sha256:40523d2efb60523e113b44602298f0960e900388cf3bb6043f645cf57ea9e3f5" + ], + "version": "==2017.7.27.1" + }, + "chardet": { + "hashes": [ + "sha256:fc323ffcaeaed0e0a02bf4d117757b98aed530d9ed4531e3e15460124c106691", + "sha256:84ab92ed1c4d4f16916e05906b6b75a6c0fb5db821cc65e70cbd64a3e2a5eaae" + ], + "version": "==3.0.4" + }, + "idna": { + "hashes": [ + "sha256:8c7309c718f94b3a625cb648ace320157ad16ff131ae0af362c9f21b80ef6ec4", + "sha256:2c6a5de3089009e3da7c5dde64a141dbc8551d5b7f6cf4ed7c2568d0cc520a8f" + ], + "version": "==2.6" + }, + "requests": { + "hashes": [ + "sha256:6a1b267aa90cac58ac3a765d067950e7dbbf75b1da07e895d1f594193a40a38b", + "sha256:9c443e7324ba5b85070c4a818ade28bfabedf16ea10206da1132edaa6dda237e" + ], + "version": "==2.18.4" + }, + "urllib3": { + "hashes": [ + "sha256:06330f386d6e4b195fbfc736b297f58c5a892e4440e54d294d7004e3a9bbea1b", + "sha256:cc44da8e1145637334317feebd728bd869a35285b93cbb4cca2577da7e62db4f" + ], + "version": "==1.22" + } + }, + "develop": { + "py": { + "hashes": [ + "sha256:2ccb79b01769d99115aa600d7eed99f524bf752bba8f041dc1c184853514655a", + "sha256:0f2d585d22050e90c7d293b6451c83db097df77871974d90efd5a30dc12fcde3" + ], + "version": "==1.4.34" + }, + "pytest": { + "hashes": [ + "sha256:b84f554f8ddc23add65c411bf112b2d88e2489fd45f753b1cae5936358bdf314", + "sha256:f46e49e0340a532764991c498244a60e3a37d7424a532b3ff1a6a7653f1a403a" + ], + "version": "==3.2.2" + } + } +} diff --git a/spec/fixtures/python/simple-setup.py b/spec/fixtures/python/simple-setup.py new file mode 100644 index 0000000..51b96a2 --- /dev/null +++ b/spec/fixtures/python/simple-setup.py @@ -0,0 +1,17 @@ +#!/usr/bin/env python3 +from setuptools import find_packages +from setuptools import setup + +setup( + name="package name", + version='1.1', + packages=find_packages(), + include_package_data=True, + install_requires=[ + "boto3", + ], + author="author", + author_email="author@author.com", + description="All the stuff", + url="https://www.author.com", +) diff --git a/spec/fixtures/schema/v1.0.json b/spec/fixtures/schema/v1.0.json new file mode 100644 index 0000000..61d6e2e --- /dev/null +++ b/spec/fixtures/schema/v1.0.json @@ -0,0 +1,72 @@ +{ + "$id": "https://gitlab.com/gitlab-org/security-products/license-management/blob/master/spec/fixtures/schema/v1.0.json", + "type": "object", + "required": [ + "licenses", + "dependencies" + ], + "properties": { + "licenses": { + "type": "array", + "items": { + "type": "object", + "required": [ + "name" + ], + "properties": { + "name": { + "type": "string" + }, + "count": { + "type": "number" + } + } + } + }, + "dependencies": { + "type": "array", + "items": { + "type": "object", + "required": [ + "license", + "dependency" + ], + "properties": { + "license": { + "type": "object", + "required": [ + "name" + ], + "properties": { + "name": { + "type": "string" + } + } + }, + "dependency": { + "type": "object", + "required": [ + "name", + "description" + ], + "properties": { + "name": { + "type": "string" + }, + "description": { + "type": "string" + }, + "paths": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + } + }, + "additionalProperties": false +} diff --git a/spec/fixtures/schema/v1.1.json b/spec/fixtures/schema/v1.1.json new file mode 100644 index 0000000..99314e7 --- /dev/null +++ b/spec/fixtures/schema/v1.1.json @@ -0,0 +1,99 @@ +{ + "$id": "https://gitlab.com/gitlab-org/security-products/license-management/blob/master/spec/fixtures/schema/v1.1.json", + "type": "object", + "required": [ + "version", + "licenses", + "dependencies" + ], + "properties": { + "version": { + "type": "string", + "pattern": "^[0-9]+\\.[0-9]+$" + }, + "licenses": { + "type": "array", + "items": { + "type": "object", + "required": [ + "name" + ], + "properties": { + "name": { + "type": "string" + }, + "count": { + "type": "number" + } + } + } + }, + "dependencies": { + "type": "array", + "items": { + "type": "object", + "required": [ + "licenses", + "license", + "dependency" + ], + "properties": { + "licenses": { + "type": "array", + "items": { + "type": "object", + "required": [ + "name", + "url" + ], + "properties": { + "name": { + "type": "string" + }, + "url": { + "type": "uri" + } + } + } + }, + "license": { + "type": "object", + "required": [ + "name" + ], + "properties": { + "name": { + "type": "string" + }, + "url": { + "type": "uri" + } + } + }, + "dependency": { + "type": "object", + "required": [ + "name", + "description" + ], + "properties": { + "name": { + "type": "string" + }, + "description": { + "type": "string" + }, + "paths": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + } + }, + "additionalProperties": false +} diff --git a/spec/fixtures/schema/v2.0.json b/spec/fixtures/schema/v2.0.json new file mode 100644 index 0000000..6ade7ad --- /dev/null +++ b/spec/fixtures/schema/v2.0.json @@ -0,0 +1,74 @@ +{ + "$id": "https://gitlab.com/gitlab-org/security-products/license-management/blob/master/spec/fixtures/schema/v2.0.json", + "type": "object", + "required": [ + "version", + "licenses", + "dependencies" + ], + "properties": { + "version": { + "type": "string", + "pattern": "^[0-9]+\\.[0-9]+$" + }, + "licenses": { + "type": "array", + "items": { + "type": "object", + "required": [ + "id", + "name", + "url" + ], + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "url": { + "type": "uri" + } + } + } + }, + "dependencies": { + "type": "array", + "items": { + "type": "object", + "required": [ + "name", + "url", + "description", + "paths", + "licenses" + ], + "properties": { + "name": { + "type": "string" + }, + "url": { + "type": "uri" + }, + "description": { + "type": "string" + }, + "paths": { + "type": "array", + "items": { + "type": "string" + } + }, + "licenses": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + }, + "additionalProperties": false +} diff --git a/spec/integration/dotnet/examples_spec.rb b/spec/integration/dotnet/examples_spec.rb new file mode 100644 index 0000000..13f4712 --- /dev/null +++ b/spec/integration/dotnet/examples_spec.rb @@ -0,0 +1,12 @@ +require 'spec_helper' + +RSpec.describe ".NET Core" do + it 'scans https://github.com/microsoft/RockPaperScissorsLizardSpock.git' do + runner.clone('https://github.com/microsoft/RockPaperScissorsLizardSpock.git') + report = runner.scan(env: { 'LICENSE_FINDER_CLI_OPTS' => '--recursive' }) + + expect(report).to match_schema(version: '2.0') + expect(report[:licenses].count).not_to be_zero + expect(report[:dependencies].count).not_to be_zero + end +end diff --git a/spec/integration/dotnet/nuget_spec.rb b/spec/integration/dotnet/nuget_spec.rb new file mode 100644 index 0000000..6eeb261 --- /dev/null +++ b/spec/integration/dotnet/nuget_spec.rb @@ -0,0 +1,102 @@ +require 'spec_helper' + +RSpec.describe "nuget" do + include_examples "each report version", "csharp", "nuget-dotnetcore" + + context "when a project has a nuget packages.config file in the root" do + let(:packages_config) do + <<-XML + + + + + + + + + + + + + + XML + end + + it 'produces a valid report' do + runner.add_file('packages.config', packages_config) + report = runner.scan + + expect(report).to match_schema(version: '2.0') + expect(report[:licenses].count).not_to be_zero + expect(report.dependency_names).to match_array([ + "Microsoft.CodeDom.Providers.DotNetCompilerPlatform", + "Microsoft.Net.Compilers", + "Microsoft.Web.Infrastructure", + "Microsoft.Web.Xdt", + "Newtonsoft.Json", + "NuGet.Core", + "NuGet.Server", + "RouteMagic", + "WebActivatorEx", + "jive" + ]) + end + end + + context "when a project has multiple nuget packages.config in different sub directories" do + let(:console_packages) do + <<-XML + + + + + XML + end + + let(:winforms_packages) do + <<-XML + + + + + XML + end + + it 'produces a report including dependencies from each sub directory' do + runner.add_file('console/packages.config', console_packages) + runner.add_file('winforms/packages.config', winforms_packages) + report = runner.scan(env: { 'LICENSE_FINDER_CLI_OPTS' => '--recursive' }) + + expect(report).to match_schema(version: '2.0') + expect(report.licenses_for('jive')).to match_array(['MIT']) + expect(report.licenses_for('MvcMailer')).to match_array(['MIT']) + end + end + + context "when a project has a dependency that has it's own dependencies" do + let(:packages) do + <<-XML + + + + + XML + end + + pending 'produces a report that includes the dependencies of each dependency' do + runner.add_file('packages.config', packages) + report = runner.scan + + expect(report).to match_schema(version: '2.0') + expect(report[:licenses].count).not_to be_zero + expect(report[:licenses].map { |x| x[:id] }.uniq).to match_array(['LGPL-2.1', 'Apache-2.0', 'BSD-3-Clause']) + expect(report.dependency_names).to match_array([ + 'Iesi.Collections', + 'Remotion.Linq', + 'Remotion.Linq.EagerFetching', + "Antlr3.Runtime", + "NHibernate" + ]) + end + end +end diff --git a/spec/integration/go/modules_spec.rb b/spec/integration/go/modules_spec.rb new file mode 100644 index 0000000..143d8ea --- /dev/null +++ b/spec/integration/go/modules_spec.rb @@ -0,0 +1,53 @@ +require 'spec_helper' + +RSpec.describe "modules" do + include_examples "each report version", "go", "modules" + + context "when scanning a customers go.mod and go.sum files" do + let(:report) { runner.scan } + + before do + runner.add_file('main.go', fixture_file_content('go/main.go')) + runner.add_file('go.mod', fixture_file_content('go/go.mod')) + runner.add_file('go.sum', fixture_file_content('go/go.sum')) + end + + specify { expect(report).to match_schema(version: '2.0') } + specify { expect(report[:licenses]).not_to be_empty } + + specify do + expect(report.dependency_names).to match_array([ + "github.com/davecgh/go-spew", + "github.com/dimfeld/httptreemux/v5", + "github.com/go-logfmt/logfmt", + "github.com/golang/protobuf", + "github.com/google/uuid", + "github.com/pmezard/go-difflib", + "github.com/stretchr/objx", + "golang.org/x/net", + "golang.org/x/oauth2", + "google.golang.org/appengine", + "gopkg.in/yaml.v2", + 'github.com/stretchr/testify' + ]) + end + + specify { expect(report.licenses_for('github.com/dimfeld/httptreemux/v5')).to match_array(['MIT']) } + specify { expect(report.licenses_for('github.com/go-logfmt/logfmt')).to match_array(['MIT']) } + specify { expect(report.licenses_for('github.com/google/uuid')).to match_array(['BSD-3-Clause']) } + specify { expect(report.licenses_for('github.com/stretchr/testify')).to match_array(['MIT']) } + specify { expect(report.licenses_for('golang.org/x/oauth2')).to match_array(['BSD-3-Clause']) } + end + + context "when scanning the `gitaly` project" do + let(:report) { runner.scan } + + before do + runner.clone('https://gitlab.com/gitlab-org/gitaly.git') + end + + specify { expect(report).to match_schema(version: '2.0') } + specify { expect(report[:licenses]).not_to be_empty } + specify { expect(report[:dependencies]).not_to be_empty } + end +end diff --git a/spec/integration/java/gradle_spec.rb b/spec/integration/java/gradle_spec.rb new file mode 100644 index 0000000..1b566bb --- /dev/null +++ b/spec/integration/java/gradle_spec.rb @@ -0,0 +1,77 @@ +require 'spec_helper' + +RSpec.describe "gradle" do + include_examples "each report version", "java", "gradle" + + context "when running a default gradle build" do + it 'scans a gradle project' do + content = <<~GRADLE +/* + * This file was generated by the Gradle 'init' task. + * + * This is a general purpose Gradle build. + * Learn how to create Gradle builds at https://guides.gradle.org/creating-new-gradle-builds + */ +plugins { + id "com.github.hierynomus.license" version "0.15.0" +} + GRADLE + runner.add_file('build.gradle', content) + + report = runner.scan + expect(report).to match_schema(version: '2.0') + expect(report[:licenses]).to be_empty + expect(report[:dependencies]).to be_empty + end + end + + context 'when scanning a gradle project that does not include the `com.github.hierynomus.license` plugin' do + let(:project_url) { 'https://gitlab.com/one-touch-pipeline/otp.git' } + let(:result) { runner.scan } + + before do + runner.clone(project_url) + end + + it 'is able to detect licenses' do + expect(result).to match_schema(version: '2.0') + expect(result[:licenses]).not_to be_empty + + [ + { name: 'ant', licenses: ['Apache-2.0'] }, + { name: 'activation', licenses: ['CDDL-1.0'] }, + { name: 'xml-apis', licenses: ['Apache-2.0', 'SAX-PD', 'W3C-20150513'] }, + { name: 'sitemesh', licenses: ['Apache-1.1'] }, + { name: 'hibernate-jpa-2.1-api', licenses: ['BSD-3-Clause', 'EPL-1.0'] } + ].each do |dependency| + expect(result.licenses_for(dependency[:name])).to match_array(dependency[:licenses]) + end + end + end + + [ + '6.2', + '5.6', + '4.9', + '3.5', + '2.9', + '1.9' + ].each do |gradle_version| + %w[8 11].each do |java_version| + context "when scanning a gradle (v#{gradle_version}) project that uses a kotlin build script" do + let(:build_file_content) { fixture_file_content("java/build.gradle.kts") } + + it 'scans a gradle project' do + runner.add_file('build.gradle.kts', build_file_content) + runner.add_file('settings.gradle.kts', 'rootProject.name = "example"') + runner.add_file('.tool-versions', "gradle #{gradle_version}") + + report = runner.scan(env: { 'LM_JAVA_VERSION' => java_version }) + expect(report).to match_schema(version: '2.0') + expect(report[:licenses]).to be_empty + expect(report[:dependencies]).to be_empty + end + end + end + end +end diff --git a/spec/integration/java/maven_spec.rb b/spec/integration/java/maven_spec.rb new file mode 100644 index 0000000..92444e8 --- /dev/null +++ b/spec/integration/java/maven_spec.rb @@ -0,0 +1,81 @@ +require 'spec_helper' + +RSpec.describe "maven" do + include_examples "each report version", "java", "maven" + include_examples "each report version", "java", "maven-multimodules" + + describe "When the maven dependencies come from a custom public maven repository" do + it 'is able to detect some of the licenses' do + runner.add_file('pom.xml', fixture_file_content('java/pom-public-gitlab-repository.xml')) + + report = runner.scan(env: { + 'CI_PROJECT_ID' => '17523603' + }) + + expect(report).to match_schema(version: '2.0') + expect(report[:dependencies]).to match_array([{ name: 'mvn-spike', url: '', description: '', paths: ['.'], licenses: ['MIT'] }]) + end + + it 'downloads packages from by using a custom `settings.xml`' do + runner.add_file('pom.xml', fixture_file_content('java/pom-public-gitlab-repository.xml')) + runner.add_file('my_settings.xml', fixture_file_content('java/custom-maven-settings.xml')) + + report = runner.scan(env: { + 'CI_PROJECT_ID' => 'invalid', + 'MAVEN_CLI_OPTS' => "--settings my_settings.xml" + }) + + expect(report).to match_schema(version: '2.0') + expect(report[:dependencies]).to match_array([{ name: 'mvn-spike', url: '', description: '', paths: ['.'], licenses: ['MIT'] }]) + end + end + + describe "When using the `SETUP_CMD`" do + it 'executes the custom script' do + runner.add_file('custom.sh') do + <<~SCRIPT + #!/bin/bash -l + + echo 'hello' + SCRIPT + end + + report = runner.scan(env: { + 'SETUP_CMD' => 'bash custom.sh' + }) + + expect(report).to match_schema(version: '2.0') + end + end + + describe "When scanning a project with multiple modules" do + before do + runner.mount(dir: fixture_file('java/maven-multimodule')) + end + + it 'detects dependences from each module' do + report = runner.scan + + expect(report).to match_schema(version: '2.0') + expect(report[:dependencies]).not_to be_empty + + [ + { name: "asm", licenses: ["BSD-4-Clause"] }, + { name: "asm-commons", licenses: ["BSD-4-Clause"] }, + { name: "jackson-annotations", licenses: ["Apache-2.0"] }, + { name: "jackson-core", licenses: ["Apache-2.0"] }, + { name: "jackson-databind", licenses: ["Apache-2.0"] }, + { name: "jackson-dataformat-xml", licenses: ["Apache-2.0"] }, + { name: "jackson-module-jaxb-annotations", licenses: ["Apache-2.0"] }, + { name: "log4j-api", licenses: ["Apache-2.0"] }, + { name: "log4j-core", licenses: ["Apache-2.0"] }, + { name: "netty-all", licenses: ["Apache-2.0"] }, + { name: "stax2-api", licenses: ["BSD-4-Clause"] } + ].each do |dependency| + expect(report.licenses_for(dependency[:name])).to match_array(dependency[:licenses]) + end + + expect(report.dependency_names).not_to include('junit') + end + end +end diff --git a/spec/integration/js/npm_spec.rb b/spec/integration/js/npm_spec.rb new file mode 100644 index 0000000..1c272bf --- /dev/null +++ b/spec/integration/js/npm_spec.rb @@ -0,0 +1,5 @@ +require 'spec_helper' + +RSpec.describe "npm" do + include_examples "each report version", "js", "npm" +end diff --git a/spec/integration/js/yarn_spec.rb b/spec/integration/js/yarn_spec.rb new file mode 100644 index 0000000..0756f9d --- /dev/null +++ b/spec/integration/js/yarn_spec.rb @@ -0,0 +1,5 @@ +require 'spec_helper' + +RSpec.describe "yarn" do + include_examples "each report version", "js", "yarn" +end diff --git a/spec/integration/php/composer_spec.rb b/spec/integration/php/composer_spec.rb new file mode 100644 index 0000000..62ff598 --- /dev/null +++ b/spec/integration/php/composer_spec.rb @@ -0,0 +1,121 @@ +require 'spec_helper' + +RSpec.describe "composer" do + include_examples "each report version", "php", "composer" + + context "when the project's dependencies require php-gd e.g. in the case of Drupal" do + it 'installs the required dependencies and produces a valid report' do + # composer.json from https://git.drupalcode.org/project/drupal/raw/8.7.x/core/composer.json + runner.add_file('composer.json', fixture_file_content('php/drupal_composer.json')) + + report = runner.scan + + expect(report).to match_schema(version: '2.0') + expect(report[:version]).not_to be_empty + expect(report[:licenses]).not_to be_empty + expect(report.dependency_names).to match_array(%w[ + asm89/stack-cors + behat/mink + behat/mink-browserkit-driver + behat/mink-goutte-driver + behat/mink-selenium2-driver + brumann/polyfill-unserialize + composer/semver + doctrine/annotations + doctrine/cache + doctrine/collections + doctrine/common + doctrine/event-manager + doctrine/inflector + doctrine/instantiator + doctrine/lexer + doctrine/persistence + doctrine/reflection + drupal/coder + easyrdf/easyrdf + egulias/email-validator + fabpot/goutte + guzzlehttp/guzzle + guzzlehttp/promises + guzzlehttp/psr7 + instaclick/php-webdriver + jcalderonzumba/gastonjs + jcalderonzumba/mink-phantomjs-driver + justinrainbow/json-schema + masterminds/html5 + mikey179/vfsstream + myclabs/deep-copy + paragonie/random_compat + pear/archive_tar + pear/console_getopt + pear/pear-core-minimal + pear/pear_exception + phar-io/manifest + phar-io/version + phpdocumentor/reflection-common + phpdocumentor/reflection-docblock + phpdocumentor/type-resolver + phpspec/prophecy + phpunit/php-code-coverage + phpunit/php-file-iterator + phpunit/php-text-template + phpunit/php-timer + phpunit/php-token-stream + phpunit/phpunit + phpunit/phpunit-mock-objects + psr/container + psr/http-message + psr/log + ralouphie/getallheaders + sebastian/code-unit-reverse-lookup + sebastian/comparator + sebastian/diff + sebastian/environment + sebastian/exporter + sebastian/global-state + sebastian/object-enumerator + sebastian/object-reflector + sebastian/recursion-context + sebastian/resource-operations + sebastian/version + squizlabs/php_codesniffer + stack/builder + symfony-cmf/routing + symfony/browser-kit + symfony/class-loader + symfony/console + symfony/css-selector + symfony/debug + symfony/dependency-injection + symfony/dom-crawler + symfony/event-dispatcher + symfony/http-foundation + symfony/http-kernel + symfony/phpunit-bridge + symfony/polyfill-ctype + symfony/polyfill-iconv + symfony/polyfill-intl-idn + symfony/polyfill-mbstring + symfony/polyfill-php56 + symfony/polyfill-php70 + symfony/polyfill-php72 + symfony/polyfill-util + symfony/process + symfony/psr-http-message-bridge + symfony/routing + symfony/serializer + symfony/translation + symfony/validator + symfony/yaml + theseer/tokenizer + twig/twig + typo3/phar-stream-wrapper + webmozart/assert + zendframework/zend-diactoros + zendframework/zend-escaper + zendframework/zend-feed + zendframework/zend-stdlib + ]) + end + end +end diff --git a/spec/integration/python/pip_spec.rb b/spec/integration/python/pip_spec.rb new file mode 100644 index 0000000..8e3ec3d --- /dev/null +++ b/spec/integration/python/pip_spec.rb @@ -0,0 +1,160 @@ +require 'spec_helper' + +RSpec.describe "pip" do + context "when a project depends on the latest version of pip" do + let(:requirements) { "sentry-sdk>=0.7.7" } + + it 'produces a valid report' do + runner.add_file('requirements.txt', requirements) + + report = runner.scan + + expect(report).to match_schema(version: '2.0') + expect(report[:version]).to start_with('2') + expect(report.dependency_names).to include("sentry-sdk") + expect(report.licenses_for('sentry-sdk')).to match_array(["BSD-4-Clause"]) + end + end + + context "when the project has a dependency that depends on a minimum of python 3.6" do + let(:requirements) do + [ + 'boto3', + 'aws-lambda-context>=1.0.0', + 'jsonschema>=3.0.0', + 'python-json-logger>=0.1.10', + 'sentry-sdk>=0.7.7', + 'ptvsd', + 'pylint', + 'flake8', + 'bandit', + 'pydocstyle' + ].join("\n") + end + + it 'produces a valid report' do + runner.add_file('requirements.txt', requirements) + + report = runner.scan + + expect(report).to match_schema(version: '2.0') + expect(report[:version]).to start_with('2') + expect(report[:licenses]).not_to be_empty + expect(report[:dependencies]).not_to be_empty + end + end + + [{ version: '2', commit: '04dce91b' }, { version: '3', commit: '48e250a1' }].each do |python| + ['1.0', '1.1', '2.0'].each do |report_version| + context "when generating a `#{report_version}` report using Python `#{python[:version]}`" do + let(:url) { "https://gitlab.com/gitlab-org/security-products/tests/#{language}-#{package_manager}.git" } + let(:language) { 'python' } + let(:package_manager) { 'pip' } + let(:environment) { { 'LM_REPORT_VERSION' => report_version, 'LM_PYTHON_VERSION' => python[:version] } } + let(:expected_content) { fixture_file_content("expected/#{language}/#{python[:version]}/#{package_manager}/v#{report_version}.json").chomp } + + it 'matches the expected report' do + runner.clone(url, branch: python[:commit]) + report = runner.scan(env: environment) + + expect(JSON.pretty_generate(report.to_h)).to eq(expected_content) + expect(report).to match_schema(version: report_version) + end + end + end + end + + context "when scanning projects with a `setup.py` and does not have a `requirements.txt` file" do + it 'detects licenses in a simple `setup.py`' do + runner.add_file('setup.py', fixture_file_content('python/simple-setup.py')) + report = runner.scan + + expect(report).to match_schema(version: '2.0') + expect(report[:dependencies]).not_to be_empty + expect(report.licenses_for('boto3')).to match_array(['Apache-2.0']) + end + + it 'detects licenses in a more complicated `setup.py`' do + runner.clone('https://github.com/pypa/sampleproject.git', branch: 'd09af3dbd851d385e56f0aed29875bfa3d3df230') + report = runner.scan + + expect(report).to match_schema(version: '2.0') + expect(report[:dependencies]).not_to be_empty + expect(report.licenses_for('peppercorn')).to match_array(['BSD-2-Clause']) + end + end + + context "when scanning projects that have a custom index-url" do + before do + runner.add_file('requirements.txt', 'six') + end + + it 'detects the licenses from the custom index' do + report = runner.scan(env: { 'PIP_INDEX_URL' => 'https://test.pypi.org/simple/' }) + + expect(report).to match_schema(version: '2.0') + expect(report.licenses_for('six')).to match_array(["MIT"]) + end + end + + context "when a project uses a custom `SETUP_CMD`" do + before do + runner.add_file('requirements.txt', 'six==1.14.0') + end + + it 'detects the software licenses' do + report = runner.scan(env: { 'SETUP_CMD' => 'pip install -r requirements.txt' }) + + expect(report).to match_schema(version: '2.0') + expect(report.licenses_for('six')).to match_array(["MIT"]) + expect(report.dependency_names).to contain_exactly('six') + end + end + + context "when a projects is running in airgap mode" do + before do + runner.add_file('requirements.txt', '') + end + + it 'is able to scan the project' do + report = runner.scan(env: { + 'PIP_INDEX_URL' => 'https://localhost/simple/' + }) + + expect(report).to match_schema(version: '2.0') + expect(report[:licenses]).to be_empty + expect(report[:dependencies]).to be_empty + end + end + + context "when connecting to a private package repository with self signed certificate" do + let(:index_url) { "https://#{private_pypi_host}/simple" } + let(:bundle) { fixture_file_content('python/pypi.crt') } + + before do + runner.add_file('setup.py') do + <<~RAW +from setuptools import setup, find_packages + +setup( + name='gitlab-sp-test-python-pip', + version='1.2.0', + packages=find_packages(), + install_requires=['requests'], +) + RAW + end + end + + it 'downloads the packages and trusts the certificate' do + report = runner.scan(env: { + 'ADDITIONAL_CA_CERT_BUNDLE' => bundle, + 'PIP_INDEX_URL' => index_url + }) + + expect(report).to match_schema(version: '2.0') + expect(report.dependency_names).to include('requests') + expect(report.licenses_for('requests')).to match_array(['Apache-2.0']) + end + end +end diff --git a/spec/integration/python/pipenv_spec.rb b/spec/integration/python/pipenv_spec.rb new file mode 100644 index 0000000..b54ee99 --- /dev/null +++ b/spec/integration/python/pipenv_spec.rb @@ -0,0 +1,224 @@ +require 'spec_helper' + +RSpec.describe "pipenv" do + include_examples "each report version", "python", "pipenv", "pip-file-lock" + + context "when a project depends on a version 6 Pipfile.lock" do + let(:pipfile_lock_content) do + JSON.pretty_generate({ + "_meta": { + "hash": { "sha256": "" }, + "pipfile-spec": 6, + "requires": { "python_version": "3.8" }, + "sources": [{ "name": "pypi", "url": "https://pypi.org/simple", "verify_ssl": true }] + }, + "default": { + "six": { "hashes": [], "index": "pypi", "version": "==1.13.0" } + }, + "develop": {} + }) + end + + it 'produces a valid report' do + runner.add_file('Pipfile.lock', pipfile_lock_content) + + report = runner.scan + + expect(report).to match_schema(version: '2.0') + expect(report[:version]).not_to be_empty + expect(report[:licenses]).not_to be_empty + expect(report.dependency_names).to contain_exactly("six") + end + end + + context "when a project depends on a version 3.2.1 Pipfile.lock" do + let(:pipfile_lock_content) do + JSON.pretty_generate({ + "default": { + "crayons": { "version": "==0.1.2", "hash": "" }, + "requirements-parser": { "version": "==0.1.0", "hash": "" }, + "pexpect": { "version": "==4.2.1", "hash": "" }, + "delegator.py": { "version": "==0.0.8", "hash": "" }, + "backports.shutil_get_terminal_size": { "version": "==1.0.0", "hash": "" }, + "ptyprocess": { "version": "==0.5.1", "hash": "" }, + "parse": { "version": "==1.6.6", "hash": "" }, + "toml": { "version": "==0.9.2", "hash": "" }, + "colorama": { "version": "==0.3.7", "hash": "" }, + "requests": { "version": "==2.13.0", "hash": "" }, + "click": { "version": "==6.7", "hash": "" } + }, + "develop": { + "packaging": { "version": "==16.8", "hash": "" }, + "pytest": { "version": "==3.0.6", "hash": "" }, + "setuptools": { "version": "==34.0.2", "hash": "" }, + "pyparsing": { "version": "==2.1.10", "hash": "" }, + "py": { "version": "==1.4.32", "hash": "" }, + "six": { "version": "==1.10.0", "hash": "" }, + "appdirs": { "version": "==1.4.0", "hash": "" } + }, + "_meta": { + "sources": [{ "url": "https://pypi.python.org/simple", "verify_ssl": true }], + "requires": {}, + "Pipfile-sha256": "24f12b631b7c40b8c5eff934a1aef263ed04f5eaffb4acf4706442f3d23cba36" + } + }) + end + + it 'produces a valid report' do + runner.add_file('Pipfile.lock', pipfile_lock_content) + + report = runner.scan + + expect(report).to match_schema(version: '2.0') + expect(report[:version]).not_to be_empty + expect(report[:licenses]).not_to be_empty + expect(report.dependency_names).to match_array([ + "backports.shutil_get_terminal_size", + "click", + "colorama", + "crayons", + "delegator.py", + "parse", + "pexpect", + "ptyprocess", + "requests", + "requirements-parser", + "toml" + ]) + end + end + + context "when a project depends on a version 5 Pipfile.lock" do + let(:pipfile_lock_content) do + JSON.pretty_generate({ + "_meta": { + "hash": { "sha256": "" }, + "host-environment-markers": { + "implementation_name": "cpython", + "implementation_version": "3.6.1", + "os_name": "posix", + "platform_machine": "x86_64", + "platform_python_implementation": "CPython", + "platform_release": "16.7.0", + "platform_system": "Darwin", + "platform_version": "Darwin Kernel Version 16.7.0: Thu Jun 15 17:36:27 PDT 2017; root:xnu-3789.70.16~2/RELEASE_X86_64", + "python_full_version": "3.6.1", + "python_version": "3.6", + "sys_platform": "darwin" + }, + "pipfile-spec": 5, + "requires": {}, + "sources": [{ "name": "pypi", "url": "https://pypi.python.org/simple", "verify_ssl": true }] + }, + "default": { + "certifi": { "hashes": ["", ""], "version": "==2017.7.27.1" }, + "chardet": { "hashes": ["", ""], "version": "==3.0.4" }, + "idna": { "hashes": ["", ""], "version": "==2.6" }, + "requests": { "hashes": ["", ""], "version": "==2.18.4" }, + "urllib3": { "hashes": ["", ""], "version": "==1.22" } + }, + "develop": { + "py": { "hashes": ["", ""], "version": "==1.4.34" }, + "pytest": { "hashes": ["", ""], "version": "==3.2.2" } + } + }) + end + + it 'produces a valid report' do + runner.add_file('Pipfile.lock', pipfile_lock_content) + + report = runner.scan + + expect(report).to match_schema(version: '2.0') + expect(report[:version]).not_to be_empty + expect(report[:licenses]).not_to be_empty + expect(report.dependency_names).to match_array(%w[ + certifi + chardet + idna + requests + urllib3 + ]) + end + end + + context "when fetching metadata from a custom source" do + let(:pipfile_lock_content) do + JSON.pretty_generate({ + "_meta": { + "hash": { "sha256": "" }, + "pipfile-spec": 6, + "requires": { "python_version": "3.8" }, + "sources": [{ "name": "pypi", "url": "https://test.pypi.org/simple", "verify_ssl": true }] + }, + "default": { + "six": { "hashes": [], "index": "pypi", "version": "==1.13.0" } + }, + "develop": {} + }) + end + + before do + runner.add_file('Pipfile.lock', pipfile_lock_content) + end + + it 'produces a valid report' do + report = runner.scan + + expect(report).to match_schema(version: '2.0') + expect(report[:licenses]).not_to be_empty + expect(report[:dependencies].count).to be(1) + expect(report.find('six')).not_to be_nil + end + end + + context "when scanning a simple Pipfile project" do + let(:lockfile_content) { fixture_file_content('python/simple-Pipfile.lock') } + let(:lockfile_hash) { JSON.parse(lockfile_content) } + + before do + runner.add_file('Pipfile', fixture_file_content('python/simple-Pipfile')) + runner.add_file('Pipfile.lock', lockfile_content) + end + + [2, 3].each do |version| + context "when scanning a Python #{version} project" do + let(:report) { runner.scan(env: { 'LM_PYTHON_VERSION' => version.to_s }) } + + specify { expect(report).to match_schema(version: '2.0') } + + it 'includes dependencies in the default group' do + lockfile_hash['default'].keys.each do |key| + expect(report.find(key)).not_to be_nil + end + end + + it 'excludes dependencies in the development group' do + lockfile_hash['develop'].keys.each do |key| + expect(report.find(key)).to be_nil + end + end + end + end + end + + context "when connecting to a private package repository with self signed certificate" do + let(:index_url) { "https://#{private_pypi_host}/simple" } + let(:bundle) { fixture_file_content('python/pypi.crt') } + + before do + runner.add_file('Pipfile', fixture_file_content('python/airgap-Pipfile.erb', index_url: index_url)) + runner.add_file('Pipfile.lock', fixture_file_content('python/airgap-Pipfile.lock.erb', index_url: index_url)) + end + + it 'downloads the packages and trusts the certificate' do + report = runner.scan(env: { + 'ADDITIONAL_CA_CERT_BUNDLE' => bundle, + 'PIP_INDEX_URL' => index_url + }) + + expect(report).to match_schema(version: '2.0') + expect(report.dependency_names).to include('requests') + end + end +end diff --git a/spec/integration/ruby/bundler_spec.rb b/spec/integration/ruby/bundler_spec.rb new file mode 100644 index 0000000..5236adf --- /dev/null +++ b/spec/integration/ruby/bundler_spec.rb @@ -0,0 +1,142 @@ +require 'spec_helper' + +RSpec.describe "bundler" do + include_examples "each report version", "ruby", "bundler" + + context "when the project depends on an older version of ruby specified in a `.ruby-version` file" do + it 'installs the required ruby and produces a valid report' do + runner.add_file('.ruby-version', 'ruby-2.4.9') + runner.add_file('Gemfile') do + <<~RAW +source 'https://rubygems.org' + +gem 'saml-kit' + RAW + end + + report = runner.scan + expect(report).to match_schema(version: '2.0') + expect(report[:licenses]).not_to be_empty + expect(report[:dependencies].map { |x| x[:name] }).to include("saml-kit") + end + end + + context "when a project depends on an older version of bundler" do + it 'produces a valid report' do + runner.add_file('Gemfile') do + <<~RAW +source 'https://rubygems.org' + +gem 'saml-kit' + RAW + end + runner.add_file('Gemfile.lock') do + <<~RAW +GEM + remote: https://rubygems.org/ + specs: + activemodel (6.0.2.1) + activesupport (= 6.0.2.1) + activesupport (6.0.2.1) + concurrent-ruby (~> 1.0, >= 1.0.2) + i18n (>= 0.7, < 2) + minitest (~> 5.1) + tzinfo (~> 1.1) + zeitwerk (~> 2.2) + builder (3.2.4) + concurrent-ruby (1.1.5) + i18n (1.7.1) + concurrent-ruby (~> 1.0) + mini_portile2 (2.4.0) + minitest (5.13.0) + net-hippie (0.2.7) + nokogiri (1.10.7) + mini_portile2 (~> 2.4.0) + saml-kit (1.1.0) + activemodel (>= 4.2.0) + net-hippie (~> 0.1) + xml-kit (>= 0.3.0, < 1.0.0) + thread_safe (0.3.6) + tilt (2.0.10) + tzinfo (1.2.6) + thread_safe (~> 0.1) + xml-kit (0.4.0) + activemodel (>= 4.2.0) + builder (~> 3.2) + nokogiri (~> 1.10) + tilt (>= 1.4.1) + xmldsig (~> 0.6) + xmldsig (0.6.6) + nokogiri (>= 1.6.8, < 2.0.0) + zeitwerk (2.2.2) + +PLATFORMS + ruby + +DEPENDENCIES + saml-kit + +BUNDLED WITH + 1.17.3 + RAW + end + + report = runner.scan + + expect(report).to match_schema(version: '2.0') + expect(report[:licenses]).not_to be_empty + expect(report.dependency_names).to include("saml-kit") + end + end + + context "when a project depends on bundler `~> 2.0`" do + it 'produces a valid report' do + runner.add_file('Gemfile') do + <<~RAW +source 'https://rubygems.org' + +gem 'net-hippie' + RAW + end + runner.add_file('Gemfile.lock') do + <<~RAW +GEM + remote: https://rubygems.org/ + specs: + net-hippie (0.3.2) + +PLATFORMS + ruby + +DEPENDENCIES + net-hippie + +BUNDLED WITH + 2.1.4 + RAW + end + + report = runner.scan + + expect(report).to match_schema(version: '2.0') + expect(report[:licenses]).not_to be_empty + expect(report.find('net-hippie')).to eql({ + name: 'net-hippie', + description: "net/http for hippies. ☮️", + url: "https://github.com/mokhan/net-hippie/", + paths: ['.'], + licenses: ['MIT'] + }) + end + end + + context "when passing custom options to license finder" do + it 'forwards the options to license finder' do + report = runner.scan(env: { + 'LICENSE_FINDER_CLI_OPTS' => "--debug --aggregate-paths=. ruby" + }) + + expect(report).to match_schema(version: '2.0') + end + end +end diff --git a/spec/spandx/gitlab_spec.rb b/spec/spandx/gitlab_spec.rb deleted file mode 100644 index 997c067..0000000 --- a/spec/spandx/gitlab_spec.rb +++ /dev/null @@ -1,5 +0,0 @@ -# frozen_string_literal: true - -RSpec.describe Spandx::Gitlab do - specify { expect(Spandx::Gitlab::VERSION).not_to be_nil } -end diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 8dd5ce7..a08aa40 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -3,14 +3,38 @@ require 'bundler/setup' require 'spandx/gitlab' +require 'json' +require 'securerandom' +require 'json-schema' +require 'support/fixture_file_helper' +require 'support/integration_test_helper' +require 'support/matchers' +require 'support/shared' + RSpec.configure do |config| - # Enable flags like --only-failures and --next-failure + config.include FixtureFileHelper + config.include IntegrationTestHelper, type: :integration + config.define_derived_metadata(file_path: %r{/spec/integration}) do |metadata| + metadata[:type] = :integration + end + config.before(:suite) do + system('./bin/docker-build') unless ENV['LM_HOME'] + end + config.after(:example, type: :integration) do + runner.cleanup + end + config.expect_with :rspec do |expectations| + expectations.include_chain_clauses_in_custom_matcher_descriptions = true + expectations.syntax = :expect + end + config.mock_with :rspec do |mocks| + mocks.verify_partial_doubles = true + end config.example_status_persistence_file_path = '.rspec_status' - - # Disable RSpec exposing methods globally on `Module` and `main` + config.shared_context_metadata_behavior = :apply_to_host_groups + config.filter_run_when_matching :focus config.disable_monkey_patching! - - config.expect_with :rspec do |c| - c.syntax = :expect - end + config.warnings = true + config.order = :random + Kernel.srand config.seed end diff --git a/spec/support/fixture_file_helper.rb b/spec/support/fixture_file_helper.rb new file mode 100644 index 0000000..5a9599f --- /dev/null +++ b/spec/support/fixture_file_helper.rb @@ -0,0 +1,14 @@ +module FixtureFileHelper + def fixture_file_content(path, data = {}) + content = IO.read(fixture_file(path)) + return content unless path.end_with?('.erb') + + ERB + .new(content) + .result(OpenStruct.new(data).send(:binding)) + end + + def fixture_file(path) + License::Management.root.join("spec/fixtures/#{path}") + end +end diff --git a/spec/support/integration_test_helper.rb b/spec/support/integration_test_helper.rb new file mode 100644 index 0000000..52693f2 --- /dev/null +++ b/spec/support/integration_test_helper.rb @@ -0,0 +1,105 @@ +module IntegrationTestHelper + class Report + attr_reader :report + + def initialize(raw) + @report = JSON.parse(raw, symbolize_names: true) + end + + def [](key) + report[key] + end + + def dependency_names + report[:dependencies].map { |x| x[:name] } + end + + def licenses_for(name) + find(name)[:licenses] + end + + def find(name) + report[:dependencies].find do |dependency| + dependency[:name] == name + end + end + + def nil? + report.nil? + end + + def to_hash + to_h + end + + def to_h + report + end + end + + class IntegrationTestRunner + attr_reader :project_path + + def initialize(project_path = File.join(Dir.pwd, 'tmp', SecureRandom.uuid)) + FileUtils.mkdir_p(project_path) + @project_path = project_path + end + + def add_file(name, content = nil) + full_path = Pathname.new(File.join(project_path, name)) + FileUtils.mkdir_p(full_path.dirname) + IO.write(full_path, block_given? ? yield : content) + end + + def mount(dir:) + FileUtils.cp_r("#{dir}/.", project_path) + end + + def clone(repo, branch: 'master') + if branch.match?(/\b[0-9a-f]{5,40}\b/) + execute({}, 'git', 'clone', '--quiet', repo, project_path) + Dir.chdir project_path do + execute({}, 'git', 'checkout', branch) + end + else + execute({}, 'git', 'clone', '--quiet', '--depth=1', '--single-branch', '--branch', branch, repo, project_path) + end + end + + def scan(env: {}) + return {} unless execute(env, './bin/docker-test', project_path) + + report_path = "#{project_path}/gl-license-management-report.json" + return {} unless File.exist?(report_path) + + Report.new(IO.read(report_path)) + end + + def execute(env = {}, *args) + Bundler.with_unbundled_env do + system(env, *args, exception: true) + end + end + + def cleanup + FileUtils.rm_rf(project_path) if Dir.exist?(project_path) + end + end + + def private_pypi_host + @private_pypi_host ||= ENV.fetch('PRIVATE_PYPI_HOST').tap do |host| + add_host(host, ENV.fetch('PRIVATE_PYPI_IP')) + end + end + + def runner(*args) + @runner ||= IntegrationTestRunner.new(*args) + end + + def add_host(name, ip) + return unless ENV['LM_HOME'] + return if system("grep #{name} /etc/hosts") + + system("echo '#{ip} #{name}' >> /etc/hosts") + end +end diff --git a/spec/support/matchers.rb b/spec/support/matchers.rb new file mode 100644 index 0000000..66bb92c --- /dev/null +++ b/spec/support/matchers.rb @@ -0,0 +1,14 @@ +RSpec::Matchers.define :match_schema do |version: '2.0'| + def schema_for(version) + License::Management.root.join("spec/fixtures/schema/v#{version}.json").to_s + end + + match do |actual| + !actual.nil? && (@errors = JSON::Validator.fully_validate(schema_for(version), actual.to_h)).empty? + end + + failure_message do |response| + "didn't match the schema for version #{version}" \ + " The validation errors were:\n#{@errors.join("\n")}" + end +end diff --git a/spec/support/shared.rb b/spec/support/shared.rb new file mode 100644 index 0000000..51b161a --- /dev/null +++ b/spec/support/shared.rb @@ -0,0 +1,19 @@ +RSpec.shared_examples "each report version" do |language, package_manager, branch = 'master'| + ['1.0', '1.1', '2.0'].each do |version| + context "when generating a `#{version}` report for #{package_manager}" do + let(:url) { "https://gitlab.com/gitlab-org/security-products/tests/#{language}-#{package_manager}.git" } + let(:expected_content) { JSON.parse(fixture_file_content("expected/#{language}/#{package_manager}/v#{version}.json")) } + + before do + runner.clone(url, branch: branch) + end + + it 'matches the expected report' do + actual = runner.scan(env: { 'LM_REPORT_VERSION' => version }) + + expect(JSON.pretty_generate(actual.to_h)).to eq(JSON.pretty_generate(expected_content)) + expect(actual).to match_schema(version: version) + end + end + end +end diff --git a/spec/unit/gitlab_spec.rb b/spec/unit/gitlab_spec.rb new file mode 100644 index 0000000..997c067 --- /dev/null +++ b/spec/unit/gitlab_spec.rb @@ -0,0 +1,5 @@ +# frozen_string_literal: true + +RSpec.describe Spandx::Gitlab do + specify { expect(Spandx::Gitlab::VERSION).not_to be_nil } +end diff --git a/spec/unit/license/management/report/v2_spec.rb b/spec/unit/license/management/report/v2_spec.rb new file mode 100644 index 0000000..e5a941e --- /dev/null +++ b/spec/unit/license/management/report/v2_spec.rb @@ -0,0 +1,52 @@ +RSpec.describe License::Management::Report::V2 do + describe "#to_h" do + { + 'AGPL-1.0' => 'AGPL-1.0', + 'AGPL-3.0' => 'AGPL-3.0', + 'Apache 2.0' => 'Apache-2.0', + 'Artistic-2.0' => 'Artistic-2.0', + 'BSD' => 'BSD-4-Clause', + 'CC0 1.0 Universal' => 'CC0-1.0', + 'CDDL-1.0' => 'CDDL-1.0', + 'CDDL-1.1' => 'CDDL-1.1', + 'EPL-1.0' => 'EPL-1.0', + 'EPL-2.0' => 'EPL-2.0', + 'GPLv2' => 'GPL-2.0', + 'GPLv3' => 'GPL-3.0', + 'ISC' => 'ISC', + 'LGPL' => 'LGPL-3.0-only', + 'LGPL-2.1' => 'LGPL-2.1', + 'MIT' => 'MIT', + 'Mozilla Public License 2.0' => 'MPL-2.0', + 'MS-PL' => 'MS-PL', + 'MS-RL' => 'MS-RL', + 'New BSD' => 'BSD-3-Clause', + 'Python Software Foundation License' => 'Python-2.0', + 'ruby' => 'Ruby', + 'Simplified BSD' => 'BSD-2-Clause', + 'WTFPL' => 'WTFPL', + 'Zlib' => 'Zlib' + }.each do |old_name, spdx_id| + context "when mapping the legacy license name #{old_name}" do + subject { described_class.new([dependency]) } + + let(:license) { LicenseFinder::License.new(short_name: old_name, matcher: LicenseFinder::License::NoneMatcher.new, url: nil) } + let(:dependency) { instance_double(LicenseFinder::Package, name: 'x', summary: '', description: '', homepage: '', licenses: [license]).as_null_object } + let(:result) { subject.to_h } + + specify { expect(result[:version]).to eq('2.0') } + specify { expect(result[:licenses].count).to be(1) } + specify { expect(result[:licenses][0]['id']).to eq(spdx_id) } + end + end + + context "when choosing an appropriate url for a license" do + subject { described_class.new([dependency]) } + + let(:license) { LicenseFinder::License.new(short_name: 'MIT', matcher: LicenseFinder::License::NoneMatcher.new, url: nil) } + let(:dependency) { instance_double(LicenseFinder::Package, name: 'x', summary: '', description: '', homepage: '', licenses: [license]).as_null_object } + + specify { expect(subject.to_h[:licenses][0]['url']).to eql('https://opensource.org/licenses/MIT') } + end + end +end diff --git a/spec/unit/license/management/repository_spec.rb b/spec/unit/license/management/repository_spec.rb new file mode 100644 index 0000000..6006e8a --- /dev/null +++ b/spec/unit/license/management/repository_spec.rb @@ -0,0 +1,45 @@ +RSpec.describe License::Management::Repository do + describe "#item_for" do + let(:spdx_licenses) { JSON.parse(IO.read('spdx-licenses.json'))['licenses'] } + + context "when mapping a license that refers to opensource.org" do + it 'parses the SPDX id from the url' do + spdx_licenses.each do |license| + spdx_id = license['licenseId'] + url = "https://opensource.org/licenses/#{spdx_id}" + license = LicenseFinder::License.new(short_name: url, matcher: LicenseFinder::License::NoneMatcher.new, url: url) + expect(subject.item_for(license)['id']).to eql(spdx_id) + end + end + + it 'recognizes `http://www.opensource.org/licenses/mit-license.php`' do + url = 'http://www.opensource.org/licenses/mit-license.php' + license = LicenseFinder::License.new(short_name: url, matcher: LicenseFinder::License::NoneMatcher.new, url: url) + + expect(subject.item_for(license)['id']).to eql('MIT') + end + end + + context "when mapping a license that refers to nuget.org" do + it 'parses the SPDX id from the url' do + spdx_licenses.each do |license| + spdx_id = license['licenseId'] + url = "https://licenses.nuget.org/#{spdx_id}" + license = LicenseFinder::License.new(short_name: url, matcher: LicenseFinder::License::NoneMatcher.new, url: url) + expect(subject.item_for(license)['id']).to eql(spdx_id) + end + end + end + + [ + ['Apache License v2.0', 'Apache-2.0'] + ].each do |short_name, spdx_id| + context "when mapping a `#{short_name}` license" do + let(:license) { LicenseFinder::License.new(short_name: short_name, matcher: LicenseFinder::License::NoneMatcher.new, url: nil) } + let(:dependency) { double(name: 'x', summary: '', description: '', homepage: '', licenses: [license]) } + + it { expect(subject.item_for(license)['id']).to eql(spdx_id) } + end + end + end +end -- cgit v1.2.3