From b86f159f3879d85686cb202ee01669a047625431 Mon Sep 17 00:00:00 2001 From: mo khan Date: Wed, 13 May 2020 09:15:14 -0600 Subject: Remove devDependencies from yarn scans * Inline creation of PipPackage in legacy scan results * Add CHANGELOG entry --- .gitlab-ci.yml | 3 +- CHANGELOG.md | 4 + Gemfile.lock | 15 +- config/.default-gems | 1 - lib/license/finder/ext/pip.rb | 4 +- lib/license/finder/ext/pipenv.rb | 14 +- lib/license/finder/ext/yarn.rb | 89 +- lib/license/management.rb | 1 - lib/license/management/version.rb | 2 +- license-management.gemspec | 1 - spec/fixtures/expected/js/yarn/v1.0.json | 9318 ++++---------- spec/fixtures/expected/js/yarn/v1.1.json | 12662 +++++-------------- spec/fixtures/expected/js/yarn/v2.0.json | 7310 +++-------- .../yarn/single-declared-dependency/package.json | 8 + .../js/yarn/single-declared-dependency/yarn.lock | 873 ++ spec/integration/js/yarn_spec.rb | 147 + 16 files changed, 8720 insertions(+), 21732 deletions(-) create mode 100644 spec/fixtures/js/yarn/single-declared-dependency/package.json create mode 100644 spec/fixtures/js/yarn/single-declared-dependency/yarn.lock diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e558a26..480e24f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,8 +7,9 @@ variables: include: - template: Container-Scanning.gitlab-ci.yml - - template: License-Scanning.gitlab-ci.yml + - template: Dependency-Scanning.gitlab-ci.yml - template: Jobs/Code-Quality.gitlab-ci.yml + - template: License-Scanning.gitlab-ci.yml - local: .gitlab/test.yml - local: .gitlab/release.yml diff --git a/CHANGELOG.md b/CHANGELOG.md index ed22bad..fbd719d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # GitLab License management changelog +## v3.8.1 + +- Exclude `devDependencies` from `yarn` scan report. (!147) + ## v3.8.0 - Add support for NPM [cafile](https://docs.npmjs.com/using-npm/config#cafile) option. (!145) diff --git a/Gemfile.lock b/Gemfile.lock index 2cdd726..25867a9 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,9 +1,8 @@ PATH remote: . specs: - license-management (3.8.0) + license-management (3.8.1) license_finder (~> 6.0.0) - spandx (~> 0.1) GEM remote: https://rubygems.org/ @@ -28,10 +27,6 @@ GEM toml (= 0.2.0) with_env (= 1.1.0) xml-simple - mini_portile2 (2.4.0) - net-hippie (0.3.2) - nokogiri (1.10.9) - mini_portile2 (~> 2.4.0) parallel (1.19.1) parser (2.7.0.4) ast (~> 2.4.0) @@ -72,20 +67,12 @@ GEM rubocop (>= 0.68.1) ruby-progressbar (1.10.1) rubyzip (2.3.0) - spandx (0.12.3) - addressable (~> 2.7) - bundler (>= 1.16, < 3.0.0) - net-hippie (~> 0.3) - nokogiri (~> 1.10) - thor - zeitwerk (~> 2.3) thor (1.0.1) toml (0.2.0) parslet (~> 1.8.0) unicode-display_width (1.6.1) with_env (1.1.0) xml-simple (1.1.5) - zeitwerk (2.3.0) PLATFORMS ruby diff --git a/config/.default-gems b/config/.default-gems index 6870122..c41100b 100644 --- a/config/.default-gems +++ b/config/.default-gems @@ -1,4 +1,3 @@ bundler ~>1.7 bundler ~>2.0 license_finder ~>6.0.0 -spandx ~>0.1 diff --git a/lib/license/finder/ext/pip.rb b/lib/license/finder/ext/pip.rb index 51e2039..596cd4c 100644 --- a/lib/license/finder/ext/pip.rb +++ b/lib/license/finder/ext/pip.rb @@ -56,10 +56,8 @@ module LicenseFinder end def legacy_results - sources = [Spandx::Python::Source.new({ 'name' => 'pypi', 'url' => python.pip_index_url, 'verify_ssl' => true })] - pypi = Spandx::Python::PyPI.new pip_output.map do |name, version, _children, _location| - spec = pypi.definition_for(name, version, sources: sources) + spec = PyPI.definition(name, version) Package.new( name, version, diff --git a/lib/license/finder/ext/pipenv.rb b/lib/license/finder/ext/pipenv.rb index ebe8cad..17b7391 100644 --- a/lib/license/finder/ext/pipenv.rb +++ b/lib/license/finder/ext/pipenv.rb @@ -30,25 +30,13 @@ module LicenseFinder each_dependency(groups: allowed_groups) do |name, data, group| version = canonicalize(data['version']) package = packages.fetch(key_for(name, version)) do |key| - packages[key] = build_package_for(name, version) + packages[key] = PipPackage.new(name, version, PyPI.definition(name, version)) end package.groups << group end packages.values end - def build_package_for(name, version) - PipPackage.new(name, version, pypi.definition_for(name, version, sources: sources)) - end - - def sources - @sources ||= ::Spandx::Python::Source.sources_from(lockfile_hash) - end - - def pypi - @pypi ||= ::Spandx::Python::Pypi.new - end - def lockfile_hash @lockfile_hash ||= JSON.parse(IO.read(detected_package_path)) end diff --git a/lib/license/finder/ext/yarn.rb b/lib/license/finder/ext/yarn.rb index cc2c029..13057ab 100644 --- a/lib/license/finder/ext/yarn.rb +++ b/lib/license/finder/ext/yarn.rb @@ -2,8 +2,93 @@ module LicenseFinder class Yarn - def prepare_command - 'yarn install --ignore-engines --ignore-scripts' + INCOMPATIBLE_PACKAGE_REGEX = /(?[\w,\-]+)@(?(\d+\.?)+)/ + PHANTOM_PACKAGE_REGEX = /workspace-aggregator-[a-zA-Z0-9]{8}-[a-zA-Z0-9]{4}-[a-zA-Z0-9]{4}-[a-zA-Z0-9]{4}-[a-zA-Z0-9]{12}/.freeze + + def possible_package_paths + [project_path.join('yarn.lock')] + end + + def current_packages + stdout, _stderr, status = Dir.chdir(project_path) do + shell.execute(list_licenses_command) + end + return [] unless status.success? + + stdout.each_line.flat_map do |line| + dependencies_from(JSON.parse(line)) + end + end + + def prepare + Dir.chdir(project_path) do + shell.execute([ + :yarn, :install, + '--ignore-engines', '--ignore-scripts', + '--production' + ]) + end + end + + private + + def list_licenses_command + [ + :yarn, + :licenses, + :list, + '--no-progress', + '--json', + '--production', + '--cwd', + project_path || Pathname.pwd + ] + end + + def install_path_for(name) + if project_path + project_path.join('node_modules', name) + else + Pathname.pwd.join('node_modules', name) + end + end + + def map_from(hash) + name = hash['Name'] + + YarnPackage.new( + name, + hash['Version'], + spec_licenses: [hash['License']], + install_path: install_path_for(name).to_s, + homepage: hash['VendorUrl'] + ) + end + + def dependencies_from(json) + case json['type'] + when 'table' + from_json_table(json) + when 'info' + from_json_info(json) + else + [] + end + end + + def from_json_table(json) + head = json['data']['head'] + json['data']['body'].map do |array| + hash = Hash[head.zip(array)] + map_from(hash) unless PHANTOM_PACKAGE_REGEX.match(hash['Name']) + end.compact + end + + def from_json_info(json) + matches = json['data'].to_s.match(INCOMPATIBLE_PACKAGE_REGEX) + return [] unless matches + + [YarnPackage.new( matches['name'], matches['version'], spec_licenses: ['unknown'])] end end end diff --git a/lib/license/management.rb b/lib/license/management.rb index 4be002d..6306faf 100644 --- a/lib/license/management.rb +++ b/lib/license/management.rb @@ -3,7 +3,6 @@ require 'json' require 'logger' require 'pathname' -require 'spandx' require 'yaml' require 'license_finder' diff --git a/lib/license/management/version.rb b/lib/license/management/version.rb index 881fa37..22818e9 100644 --- a/lib/license/management/version.rb +++ b/lib/license/management/version.rb @@ -2,6 +2,6 @@ module License module Management - VERSION = '3.8.0' + VERSION = '3.8.1' end end diff --git a/license-management.gemspec b/license-management.gemspec index e0a25ca..0372991 100644 --- a/license-management.gemspec +++ b/license-management.gemspec @@ -28,7 +28,6 @@ Gem::Specification.new do |spec| spec.require_paths = ['lib'] spec.add_dependency 'license_finder', '~> 6.0.0' - spec.add_dependency 'spandx', '~> 0.1' spec.add_development_dependency 'gitlab-styles', '~> 3.1' spec.add_development_dependency 'json-schema', '~> 2.8' spec.add_development_dependency 'rspec', '~> 3.9' diff --git a/spec/fixtures/expected/js/yarn/v1.0.json b/spec/fixtures/expected/js/yarn/v1.0.json index 2401c97..3264ddb 100644 --- a/spec/fixtures/expected/js/yarn/v1.0.json +++ b/spec/fixtures/expected/js/yarn/v1.0.json @@ -1,44 +1,28 @@ { "licenses": [ { - "count": 1176, + "count": 949, "name": "MIT" }, { - "count": 121, + "count": 87, "name": "ISC" }, - { - "count": 39, - "name": "New BSD" - }, - { - "count": 34, - "name": "Simplified BSD" - }, { "count": 23, - "name": "Apache 2.0" + "name": "Simplified BSD" }, { "count": 22, - "name": "CC0-1.0" - }, - { - "count": 4, - "name": "MIT*" - }, - { - "count": 3, - "name": "Apache*" + "name": "New BSD" }, { - "count": 2, - "name": "(WTFPL OR MIT)" + "count": 21, + "name": "CC0-1.0" }, { - "count": 2, - "name": "BSD" + "count": 14, + "name": "Apache 2.0" }, { "count": 2, @@ -46,7 +30,7 @@ }, { "count": 2, - "name": "SEE LICENSE IN LICENSE" + "name": "MIT*" }, { "count": 2, @@ -82,15 +66,11 @@ }, { "count": 1, - "name": "BSD*" - }, - { - "count": 1, - "name": "BSD-3-Clause OR MIT" + "name": "(WTFPL OR MIT)" }, { "count": 1, - "name": "CC-BY-3.0" + "name": "BSD*" }, { "count": 1, @@ -107,10 +87,6 @@ { "count": 1, "name": "UNKNOWN" - }, - { - "count": 1, - "name": "WTFPL" } ], "dependencies": [ @@ -1988,20 +1964,6 @@ ] } }, - { - "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", @@ -2030,48 +1992,6 @@ ] } }, - { - "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", @@ -2100,34 +2020,6 @@ ] } }, - { - "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", @@ -2198,34 +2090,6 @@ ] } }, - { - "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", @@ -2240,19 +2104,6 @@ ] } }, - { - "license": { - "name": "BSD-3-Clause OR MIT" - }, - "dependency": { - "name": "amdefine", - "url": "http://github.com/jrburke/amdefine", - "description": "", - "pathes": [ - "." - ] - } - }, { "license": { "name": "ISC", @@ -2295,20 +2146,6 @@ ] } }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "ansi-escapes", - "url": "sindresorhus.com", - "description": "", - "pathes": [ - "." - ] - } - }, { "license": { "name": "Apache 2.0", @@ -2393,20 +2230,6 @@ ] } }, - { - "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", @@ -2435,20 +2258,6 @@ ] } }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "append-transform", - "url": "github.com/jamestalmage", - "description": "", - "pathes": [ - "." - ] - } - }, { "license": { "name": "ISC", @@ -2463,20 +2272,6 @@ ] } }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "archy", - "url": "http://substack.net", - "description": "", - "pathes": [ - "." - ] - } - }, { "license": { "name": "ISC", @@ -2561,20 +2356,6 @@ ] } }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "array-equal", - "url": "http://jongleberry.com", - "description": "", - "pathes": [ - "." - ] - } - }, { "license": { "name": "MIT", @@ -2637,8 +2418,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "array-union", - "url": "sindresorhus.com", + "name": "array-unique", + "url": "https://github.com/jonschlinkert/array-unique", "description": "", "pathes": [ "." @@ -2651,8 +2432,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "array-uniq", - "url": "sindresorhus.com", + "name": "array-unique", + "url": "https://github.com/jonschlinkert/array-unique", "description": "", "pathes": [ "." @@ -2665,8 +2446,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "array-unique", - "url": "https://github.com/jonschlinkert/array-unique", + "name": "asn1", + "url": "joyent.com", "description": "", "pathes": [ "." @@ -2679,8 +2460,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "array-unique", - "url": "https://github.com/jonschlinkert/array-unique", + "name": "asn1.js", + "url": "https://github.com/indutny/asn1.js", "description": "", "pathes": [ "." @@ -2693,8 +2474,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "arrify", - "url": "sindresorhus.com", + "name": "assert", + "url": "https://github.com/browserify/commonjs-assert", "description": "", "pathes": [ "." @@ -2707,7 +2488,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "asn1", + "name": "assert-plus", "url": "Unknown", "description": "", "pathes": [ @@ -2721,8 +2502,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "asn1", - "url": "joyent.com", + "name": "assign-symbols", + "url": "https://github.com/jonschlinkert/assign-symbols", "description": "", "pathes": [ "." @@ -2735,8 +2516,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "asn1.js", - "url": "https://github.com/indutny/asn1.js", + "name": "async", + "url": "https://caolan.github.io/async/", "description": "", "pathes": [ "." @@ -2745,12 +2526,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "assert", - "url": "https://github.com/browserify/commonjs-assert", + "name": "async-cache", + "url": "http://blog.izs.me/", "description": "", "pathes": [ "." @@ -2759,11 +2540,12 @@ }, { "license": { - "name": "MIT*" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "assert-plus", - "url": "Unknown", + "name": "async-each", + "url": "https://github.com/paulmillr/async-each/", "description": "", "pathes": [ "." @@ -2776,7 +2558,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "assert-plus", + "name": "async-limiter", "url": "Unknown", "description": "", "pathes": [ @@ -2790,8 +2572,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "assertion-error", - "url": "http://qualiancy.com", + "name": "asynckit", + "url": "https://github.com/alexindigo/asynckit#readme", "description": "", "pathes": [ "." @@ -2800,12 +2582,11 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "(MIT OR Apache-2.0)" }, "dependency": { - "name": "assign-symbols", - "url": "https://github.com/jonschlinkert/assign-symbols", + "name": "atob", + "url": "https://git.coolaj86.com/coolaj86/atob.js.git", "description": "", "pathes": [ "." @@ -2818,7 +2599,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "async", + "name": "autoprefixer", "url": "Unknown", "description": "", "pathes": [ @@ -2832,7 +2613,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "async", + "name": "autoprefixer", "url": "Unknown", "description": "", "pathes": [ @@ -2842,12 +2623,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, "dependency": { - "name": "async", - "url": "https://caolan.github.io/async/", + "name": "aws-sign2", + "url": "http://www.futurealoof.com", "description": "", "pathes": [ "." @@ -2856,12 +2637,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "async-cache", - "url": "http://blog.izs.me/", + "name": "aws4", + "url": "http://github.com/mhart", "description": "", "pathes": [ "." @@ -2874,8 +2655,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "async-each", - "url": "https://github.com/paulmillr/async-each/", + "name": "axios", + "url": "https://github.com/axios/axios", "description": "", "pathes": [ "." @@ -2884,12 +2665,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, "dependency": { - "name": "async-limiter", - "url": "Unknown", + "name": "axios-retry", + "url": "https://github.com/softonic/axios-retry", "description": "", "pathes": [ "." @@ -2902,8 +2683,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "asynckit", - "url": "https://github.com/alexindigo/asynckit#readme", + "name": "babel-loader", + "url": "https://github.com/babel/babel-loader", "description": "", "pathes": [ "." @@ -2912,11 +2693,12 @@ }, { "license": { - "name": "(MIT OR Apache-2.0)" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "atob", - "url": "https://git.coolaj86.com/coolaj86/atob.js.git", + "name": "balanced-match", + "url": "https://github.com/juliangruber/balanced-match", "description": "", "pathes": [ "." @@ -2929,8 +2711,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "autoprefixer", - "url": "Unknown", + "name": "balanced-match", + "url": "https://github.com/juliangruber/balanced-match", "description": "", "pathes": [ "." @@ -2943,8 +2725,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "autoprefixer", - "url": "Unknown", + "name": "base", + "url": "https://github.com/node-base/base", "description": "", "pathes": [ "." @@ -2953,11 +2735,12 @@ }, { "license": { - "name": "Apache*" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "aws-sign2", - "url": "http://www.futurealoof.com", + "name": "base64-js", + "url": "https://github.com/beatgammit/base64-js", "description": "", "pathes": [ "." @@ -2966,12 +2749,12 @@ }, { "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "aws-sign2", - "url": "http://www.futurealoof.com", + "name": "bcrypt-pbkdf", + "url": "Unknown", "description": "", "pathes": [ "." @@ -2984,8 +2767,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "aws4", - "url": "http://github.com/mhart", + "name": "bezier-easing", + "url": "Unknown", "description": "", "pathes": [ "." @@ -2998,8 +2781,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "axios", - "url": "https://github.com/axios/axios", + "name": "bfj", + "url": "https://gitlab.com/philbooth/bfj", "description": "", "pathes": [ "." @@ -3008,12 +2791,12 @@ }, { "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "axios-retry", - "url": "https://github.com/softonic/axios-retry", + "name": "big.js", + "url": "Unknown", "description": "", "pathes": [ "." @@ -3026,8 +2809,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "babel-code-frame", - "url": "https://babeljs.io/", + "name": "big.js", + "url": "Unknown", "description": "", "pathes": [ "." @@ -3040,8 +2823,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "babel-eslint", - "url": "https://github.com/babel/babel-eslint", + "name": "bignumber.js", + "url": "Unknown", "description": "", "pathes": [ "." @@ -3054,8 +2837,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "babel-generator", - "url": "https://babeljs.io/", + "name": "binary-extensions", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -3068,8 +2851,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "babel-loader", - "url": "https://github.com/babel/babel-loader", + "name": "binary-extensions", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -3082,8 +2865,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "babel-messages", - "url": "https://babeljs.io/", + "name": "bluebird", + "url": "https://github.com/petkaantonov/bluebird", "description": "", "pathes": [ "." @@ -3096,7 +2879,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "babel-runtime", + "name": "bmp-js", "url": "Unknown", "description": "", "pathes": [ @@ -3110,8 +2893,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "babel-template", - "url": "https://babeljs.io/", + "name": "bn.js", + "url": "https://github.com/indutny/bn.js", "description": "", "pathes": [ "." @@ -3124,8 +2907,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "babel-traverse", - "url": "https://babeljs.io/", + "name": "body-parser", + "url": "Unknown", "description": "", "pathes": [ "." @@ -3134,12 +2917,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "babel-types", - "url": "https://babeljs.io/", + "name": "boolbase", + "url": "https://github.com/fb55/boolbase", "description": "", "pathes": [ "." @@ -3148,12 +2931,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "babylon", - "url": "https://babeljs.io/", + "name": "boom", + "url": "Unknown", "description": "", "pathes": [ "." @@ -3162,12 +2945,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "balanced-match", - "url": "https://github.com/juliangruber/balanced-match", + "name": "boom", + "url": "Unknown", "description": "", "pathes": [ "." @@ -3180,8 +2963,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "balanced-match", - "url": "https://github.com/juliangruber/balanced-match", + "name": "boxen", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -3194,8 +2977,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "base", - "url": "https://github.com/node-base/base", + "name": "brace-expansion", + "url": "https://github.com/juliangruber/brace-expansion", "description": "", "pathes": [ "." @@ -3208,8 +2991,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "base64-js", - "url": "https://github.com/beatgammit/base64-js", + "name": "braces", + "url": "https://github.com/jonschlinkert/braces", "description": "", "pathes": [ "." @@ -3218,12 +3001,12 @@ }, { "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "bcrypt-pbkdf", - "url": "Unknown", + "name": "braces", + "url": "https://github.com/micromatch/braces", "description": "", "pathes": [ "." @@ -3236,8 +3019,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "bezier-easing", - "url": "Unknown", + "name": "braces", + "url": "https://github.com/micromatch/braces", "description": "", "pathes": [ "." @@ -3250,8 +3033,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "bfj", - "url": "https://gitlab.com/philbooth/bfj", + "name": "brorand", + "url": "https://github.com/indutny/brorand", "description": "", "pathes": [ "." @@ -3264,8 +3047,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "big.js", - "url": "Unknown", + "name": "browserify-aes", + "url": "https://github.com/crypto-browserify/browserify-aes", "description": "", "pathes": [ "." @@ -3278,7 +3061,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "big.js", + "name": "browserify-cipher", "url": "Unknown", "description": "", "pathes": [ @@ -3292,8 +3075,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "bignumber.js", - "url": "Unknown", + "name": "browserify-des", + "url": "https://github.com/crypto-browserify/browserify-des#readme", "description": "", "pathes": [ "." @@ -3306,8 +3089,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "binary-extensions", - "url": "sindresorhus.com", + "name": "browserify-rsa", + "url": "Unknown", "description": "", "pathes": [ "." @@ -3316,12 +3099,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "binary-extensions", - "url": "sindresorhus.com", + "name": "browserify-sign", + "url": "Unknown", "description": "", "pathes": [ "." @@ -3334,8 +3117,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "bl", - "url": "https://github.com/rvagg/bl", + "name": "browserify-zlib", + "url": "https://github.com/devongovett/browserify-zlib", "description": "", "pathes": [ "." @@ -3348,8 +3131,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "bluebird", - "url": "https://github.com/petkaantonov/bluebird", + "name": "browserslist", + "url": "Unknown", "description": "", "pathes": [ "." @@ -3362,7 +3145,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "bmp-js", + "name": "browserslist", "url": "Unknown", "description": "", "pathes": [ @@ -3376,8 +3159,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "bn.js", - "url": "https://github.com/indutny/bn.js", + "name": "buffer", + "url": "https://github.com/feross/buffer", "description": "", "pathes": [ "." @@ -3390,8 +3173,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "body-parser", - "url": "Unknown", + "name": "buffer-equal", + "url": "http://substack.net", "description": "", "pathes": [ "." @@ -3400,12 +3183,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "boolbase", - "url": "https://github.com/fb55/boolbase", + "name": "buffer-from", + "url": "Unknown", "description": "", "pathes": [ "." @@ -3414,12 +3197,12 @@ }, { "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "boom", - "url": "http://hueniverse.com", + "name": "buffer-json", + "url": "https://github.com/jprichardson/buffer-json#readme", "description": "", "pathes": [ "." @@ -3428,12 +3211,12 @@ }, { "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "boom", - "url": "Unknown", + "name": "buffer-xor", + "url": "https://github.com/crypto-browserify/buffer-xor", "description": "", "pathes": [ "." @@ -3442,12 +3225,12 @@ }, { "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "boom", - "url": "Unknown", + "name": "builtin-status-codes", + "url": "bendrucker.me", "description": "", "pathes": [ "." @@ -3460,8 +3243,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "boxen", - "url": "sindresorhus.com", + "name": "bytes", + "url": "http://tjholowaychuk.com", "description": "", "pathes": [ "." @@ -3474,8 +3257,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "brace-expansion", - "url": "https://github.com/juliangruber/brace-expansion", + "name": "bytes", + "url": "http://tjholowaychuk.com", "description": "", "pathes": [ "." @@ -3484,12 +3267,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "braces", - "url": "https://github.com/jonschlinkert/braces", + "name": "cacache", + "url": "Unknown", "description": "", "pathes": [ "." @@ -3502,8 +3285,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "braces", - "url": "https://github.com/micromatch/braces", + "name": "cache-base", + "url": "https://github.com/jonschlinkert/cache-base", "description": "", "pathes": [ "." @@ -3516,8 +3299,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "braces", - "url": "https://github.com/micromatch/braces", + "name": "cache-loader", + "url": "https://github.com/webpack-contrib/cache-loader", "description": "", "pathes": [ "." @@ -3530,8 +3313,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "brorand", - "url": "https://github.com/indutny/brorand", + "name": "caller-callsite", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -3544,8 +3327,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "browser-env", - "url": "https://github.com/lukechilds/browser-env#readme", + "name": "caller-path", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -3554,12 +3337,12 @@ }, { "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "browser-process-hrtime", - "url": "Unknown", + "name": "callsites", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -3568,12 +3351,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "browser-stdout", - "url": "Unknown", + "name": "camel-case", + "url": "https://github.com/blakeembrey/camel-case", "description": "", "pathes": [ "." @@ -3586,8 +3369,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "browserify-aes", - "url": "https://github.com/crypto-browserify/browserify-aes", + "name": "camelcase", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -3600,8 +3383,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "browserify-cipher", - "url": "Unknown", + "name": "camelcase", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -3614,8 +3397,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "browserify-des", - "url": "https://github.com/crypto-browserify/browserify-des#readme", + "name": "caniuse-api", + "url": "Unknown", "description": "", "pathes": [ "." @@ -3628,7 +3411,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "browserify-rsa", + "name": "caniuse-api", "url": "Unknown", "description": "", "pathes": [ @@ -3638,11 +3421,10 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "CC-BY-4.0" }, "dependency": { - "name": "browserify-sign", + "name": "caniuse-db", "url": "Unknown", "description": "", "pathes": [ @@ -3652,12 +3434,11 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "CC-BY-4.0" }, "dependency": { - "name": "browserify-zlib", - "url": "https://github.com/devongovett/browserify-zlib", + "name": "caniuse-lite", + "url": "http://beneb.info", "description": "", "pathes": [ "." @@ -3666,11 +3447,11 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, "dependency": { - "name": "browserslist", + "name": "caseless", "url": "Unknown", "description": "", "pathes": [ @@ -3684,7 +3465,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "browserslist", + "name": "chalk", "url": "Unknown", "description": "", "pathes": [ @@ -3698,8 +3479,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "buffer", - "url": "https://github.com/feross/buffer", + "name": "chalk", + "url": "Unknown", "description": "", "pathes": [ "." @@ -3712,8 +3493,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "buffer-equal", - "url": "http://substack.net", + "name": "chalk", + "url": "Unknown", "description": "", "pathes": [ "." @@ -3726,8 +3507,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "buffer-from", - "url": "Unknown", + "name": "check-types", + "url": "https://gitlab.com/philbooth/check-types.js", "description": "", "pathes": [ "." @@ -3740,8 +3521,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "buffer-json", - "url": "https://github.com/jprichardson/buffer-json#readme", + "name": "chokidar", + "url": "https://github.com/paulmillr/chokidar", "description": "", "pathes": [ "." @@ -3754,8 +3535,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "buffer-xor", - "url": "https://github.com/crypto-browserify/buffer-xor", + "name": "chokidar", + "url": "https://github.com/paulmillr/chokidar", "description": "", "pathes": [ "." @@ -3764,12 +3545,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "builtin-modules", - "url": "sindresorhus.com", + "name": "chownr", + "url": "http://blog.izs.me/", "description": "", "pathes": [ "." @@ -3782,8 +3563,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "builtin-status-codes", - "url": "bendrucker.me", + "name": "chrome-trace-event", + "url": "Unknown", "description": "", "pathes": [ "." @@ -3796,8 +3577,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "bytes", - "url": "http://tjholowaychuk.com", + "name": "ci-info", + "url": "https://github.com/watson/ci-info", "description": "", "pathes": [ "." @@ -3810,8 +3591,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "bytes", - "url": "http://tjholowaychuk.com", + "name": "cipher-base", + "url": "https://github.com/crypto-browserify/cipher-base#readme", "description": "", "pathes": [ "." @@ -3820,12 +3601,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cacache", - "url": "Unknown", + "name": "clap", + "url": "https://github.com/lahmatiy/clap", "description": "", "pathes": [ "." @@ -3838,8 +3619,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cache-base", - "url": "https://github.com/jonschlinkert/cache-base", + "name": "class-utils", + "url": "https://github.com/jonschlinkert/class-utils", "description": "", "pathes": [ "." @@ -3852,8 +3633,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cache-loader", - "url": "https://github.com/webpack-contrib/cache-loader", + "name": "clean-css", + "url": "https://github.com/jakubpawlowicz/clean-css", "description": "", "pathes": [ "." @@ -3866,8 +3647,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "caching-transform", - "url": "github.com/jamestalmage", + "name": "cli-boxes", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -3880,8 +3661,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "caller-callsite", - "url": "sindresorhus.com", + "name": "clone", + "url": "http://paul.vorba.ch/", "description": "", "pathes": [ "." @@ -3894,8 +3675,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "caller-path", - "url": "http://sindresorhus.com", + "name": "co", + "url": "Unknown", "description": "", "pathes": [ "." @@ -3908,8 +3689,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "caller-path", - "url": "sindresorhus.com", + "name": "coa", + "url": "http://github.com/veged/coa", "description": "", "pathes": [ "." @@ -3922,8 +3703,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "callsites", - "url": "http://sindresorhus.com", + "name": "coa", + "url": "http://github.com/veged/coa", "description": "", "pathes": [ "." @@ -3936,7 +3717,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "callsites", + "name": "code-point-at", "url": "sindresorhus.com", "description": "", "pathes": [ @@ -3950,8 +3731,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "camel-case", - "url": "https://github.com/blakeembrey/camel-case", + "name": "collection-visit", + "url": "https://github.com/jonschlinkert/collection-visit", "description": "", "pathes": [ "." @@ -3964,8 +3745,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "camelcase", - "url": "http://sindresorhus.com", + "name": "color", + "url": "Unknown", "description": "", "pathes": [ "." @@ -3978,8 +3759,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "camelcase", - "url": "http://sindresorhus.com", + "name": "color", + "url": "Unknown", "description": "", "pathes": [ "." @@ -3992,8 +3773,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "camelcase", - "url": "sindresorhus.com", + "name": "color-convert", + "url": "Unknown", "description": "", "pathes": [ "." @@ -4006,8 +3787,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "camelcase", - "url": "sindresorhus.com", + "name": "color-name", + "url": "https://github.com/dfcreative/color-name", "description": "", "pathes": [ "." @@ -4020,8 +3801,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "caniuse-api", - "url": "Unknown", + "name": "color-name", + "url": "https://github.com/colorjs/color-name", "description": "", "pathes": [ "." @@ -4034,7 +3815,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "caniuse-api", + "name": "color-string", "url": "Unknown", "description": "", "pathes": [ @@ -4044,10 +3825,11 @@ }, { "license": { - "name": "CC-BY-4.0" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "caniuse-db", + "name": "color-string", "url": "Unknown", "description": "", "pathes": [ @@ -4057,11 +3839,12 @@ }, { "license": { - "name": "CC-BY-4.0" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "caniuse-lite", - "url": "http://beneb.info", + "name": "colormin", + "url": "https://github.com/ben-eb/colormin", "description": "", "pathes": [ "." @@ -4070,12 +3853,12 @@ }, { "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "caseless", - "url": "Unknown", + "name": "colors", + "url": "https://github.com/Marak/colors.js", "description": "", "pathes": [ "." @@ -4084,12 +3867,12 @@ }, { "license": { - "name": "BSD", - "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "caseless", - "url": "Unknown", + "name": "combined-stream", + "url": "https://github.com/felixge/node-combined-stream", "description": "", "pathes": [ "." @@ -4102,8 +3885,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "center-align", - "url": "https://github.com/jonschlinkert/center-align", + "name": "commander", + "url": "Unknown", "description": "", "pathes": [ "." @@ -4116,8 +3899,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "chai", - "url": "http://chaijs.com/", + "name": "commander", + "url": "Unknown", "description": "", "pathes": [ "." @@ -4130,7 +3913,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "chalk", + "name": "commander", "url": "Unknown", "description": "", "pathes": [ @@ -4144,8 +3927,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "chalk", - "url": "Unknown", + "name": "commondir", + "url": "http://substack.net", "description": "", "pathes": [ "." @@ -4158,7 +3941,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "chalk", + "name": "component-emitter", "url": "Unknown", "description": "", "pathes": [ @@ -4172,8 +3955,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "chardet", - "url": "https://github.com/runk/node-chardet", + "name": "compressible", + "url": "Unknown", "description": "", "pathes": [ "." @@ -4186,8 +3969,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "check-error", - "url": "http://alogicalparadox.com", + "name": "compression", + "url": "Unknown", "description": "", "pathes": [ "." @@ -4200,8 +3983,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "check-types", - "url": "https://gitlab.com/philbooth/check-types.js", + "name": "concat-map", + "url": "http://substack.net", "description": "", "pathes": [ "." @@ -4214,8 +3997,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "chokidar", - "url": "https://github.com/paulmillr/chokidar", + "name": "concat-stream", + "url": "Unknown", "description": "", "pathes": [ "." @@ -4228,8 +4011,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "chokidar", - "url": "https://github.com/paulmillr/chokidar", + "name": "connect", + "url": "http://tjholowaychuk.com", "description": "", "pathes": [ "." @@ -4238,12 +4021,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "chownr", - "url": "http://blog.izs.me/", + "name": "consola", + "url": "Unknown", "description": "", "pathes": [ "." @@ -4256,8 +4039,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "chrome-trace-event", - "url": "Unknown", + "name": "console-browserify", + "url": "https://github.com/Raynos/console-browserify", "description": "", "pathes": [ "." @@ -4266,12 +4049,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "ci-info", - "url": "https://github.com/watson/ci-info", + "name": "console-control-strings", + "url": "http://re-becca.org/", "description": "", "pathes": [ "." @@ -4284,8 +4067,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "ci-info", - "url": "https://github.com/watson/ci-info", + "name": "consolidate", + "url": "https://github.com/tj/consolidate.js", "description": "", "pathes": [ "." @@ -4298,8 +4081,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cipher-base", - "url": "https://github.com/crypto-browserify/cipher-base#readme", + "name": "constants-browserify", + "url": "https://github.com/juliangruber/constants-browserify", "description": "", "pathes": [ "." @@ -4312,8 +4095,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "circular-json", - "url": "https://github.com/WebReflection/circular-json", + "name": "content-disposition", + "url": "Unknown", "description": "", "pathes": [ "." @@ -4326,8 +4109,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "clap", - "url": "https://github.com/lahmatiy/clap", + "name": "content-type", + "url": "Unknown", "description": "", "pathes": [ "." @@ -4340,8 +4123,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "class-utils", - "url": "https://github.com/jonschlinkert/class-utils", + "name": "convert-source-map", + "url": "https://github.com/thlorenz/convert-source-map", "description": "", "pathes": [ "." @@ -4354,8 +4137,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "clean-css", - "url": "https://github.com/jakubpawlowicz/clean-css", + "name": "cookie", + "url": "Unknown", "description": "", "pathes": [ "." @@ -4368,8 +4151,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cli-boxes", - "url": "sindresorhus.com", + "name": "cookie", + "url": "Unknown", "description": "", "pathes": [ "." @@ -4382,9 +4165,9 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cli-cursor", - "url": "sindresorhus.com", - "description": "", + "name": "cookie-signature", + "url": "Unknown", + "description": "", "pathes": [ "." ] @@ -4396,8 +4179,8 @@ "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "cli-width", - "url": "https://github.com/knownasilya/cli-width", + "name": "copy-concurrently", + "url": "https://www.npmjs.com/package/copy-concurrently", "description": "", "pathes": [ "." @@ -4406,12 +4189,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cliui", - "url": "Unknown", + "name": "copy-descriptor", + "url": "https://github.com/jonschlinkert/copy-descriptor", "description": "", "pathes": [ "." @@ -4420,11 +4203,11 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cliui", + "name": "core-js", "url": "Unknown", "description": "", "pathes": [ @@ -4434,11 +4217,11 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cliui", + "name": "core-js-compat", "url": "Unknown", "description": "", "pathes": [ @@ -4452,8 +4235,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "clone", - "url": "http://paul.vorba.ch/", + "name": "core-js-pure", + "url": "Unknown", "description": "", "pathes": [ "." @@ -4466,8 +4249,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "co", - "url": "Unknown", + "name": "core-util-is", + "url": "http://blog.izs.me/", "description": "", "pathes": [ "." @@ -4480,8 +4263,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "coa", - "url": "http://github.com/veged/coa", + "name": "cosmiconfig", + "url": "https://github.com/davidtheclark/cosmiconfig#readme", "description": "", "pathes": [ "." @@ -4494,8 +4277,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "coa", - "url": "http://github.com/veged/coa", + "name": "cosmiconfig", + "url": "https://github.com/davidtheclark/cosmiconfig#readme", "description": "", "pathes": [ "." @@ -4508,8 +4291,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "code-point-at", - "url": "sindresorhus.com", + "name": "create-ecdh", + "url": "https://github.com/crypto-browserify/createECDH", "description": "", "pathes": [ "." @@ -4522,8 +4305,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "codecov.io", - "url": "https://github.com/cainus/codecov.io", + "name": "create-hash", + "url": "https://github.com/crypto-browserify/createHash", "description": "", "pathes": [ "." @@ -4536,8 +4319,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "collection-visit", - "url": "https://github.com/jonschlinkert/collection-visit", + "name": "create-hmac", + "url": "https://github.com/crypto-browserify/createHmac", "description": "", "pathes": [ "." @@ -4550,8 +4333,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "color", - "url": "Unknown", + "name": "cross-spawn", + "url": "http://indigounited.com", "description": "", "pathes": [ "." @@ -4564,8 +4347,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "color", - "url": "Unknown", + "name": "cross-spawn", + "url": "https://github.com/moxystudio/node-cross-spawn", "description": "", "pathes": [ "." @@ -4574,11 +4357,11 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "color-convert", + "name": "cryptiles", "url": "Unknown", "description": "", "pathes": [ @@ -4592,8 +4375,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "color-name", - "url": "https://github.com/dfcreative/color-name", + "name": "crypto-browserify", + "url": "https://github.com/crypto-browserify/crypto-browserify", "description": "", "pathes": [ "." @@ -4602,12 +4385,11 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "CC0-1.0" }, "dependency": { - "name": "color-name", - "url": "https://github.com/colorjs/color-name", + "name": "css-blank-pseudo", + "url": "https://github.com/csstools/css-blank-pseudo#readme", "description": "", "pathes": [ "." @@ -4620,8 +4402,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "color-string", - "url": "Unknown", + "name": "css-color-names", + "url": "http://www.daveeddy.com", "description": "", "pathes": [ "." @@ -4634,8 +4416,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "color-string", - "url": "Unknown", + "name": "css-declaration-sorter", + "url": "https://selwyn.cc/", "description": "", "pathes": [ "." @@ -4644,12 +4426,11 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "CC0-1.0" }, "dependency": { - "name": "colormin", - "url": "https://github.com/ben-eb/colormin", + "name": "css-has-pseudo", + "url": "https://github.com/csstools/css-has-pseudo#readme", "description": "", "pathes": [ "." @@ -4662,8 +4443,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "colors", - "url": "https://github.com/Marak/colors.js", + "name": "css-loader", + "url": "https://github.com/webpack-contrib/css-loader", "description": "", "pathes": [ "." @@ -4672,12 +4453,11 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "CC0-1.0" }, "dependency": { - "name": "combined-stream", - "url": "https://github.com/felixge/node-combined-stream", + "name": "css-prefers-color-scheme", + "url": "https://github.com/csstools/css-prefers-color-scheme#readme", "description": "", "pathes": [ "." @@ -4686,12 +4466,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "combined-stream", - "url": "https://github.com/felixge/node-combined-stream", + "name": "css-select", + "url": "Unknown", "description": "", "pathes": [ "." @@ -4700,11 +4480,11 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "commander", + "name": "css-select", "url": "Unknown", "description": "", "pathes": [ @@ -4718,8 +4498,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "commander", - "url": "Unknown", + "name": "css-select-base-adapter", + "url": "https://github.com/nrkn/css-select-base-adapter#readme", "description": "", "pathes": [ "." @@ -4732,8 +4512,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "commander", - "url": "Unknown", + "name": "css-tree", + "url": "https://github.com/csstree/csstree", "description": "", "pathes": [ "." @@ -4746,8 +4526,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "commander", - "url": "Unknown", + "name": "css-tree", + "url": "https://github.com/csstree/csstree", "description": "", "pathes": [ "." @@ -4760,8 +4540,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "commondir", - "url": "http://substack.net", + "name": "css-unit-converter", + "url": "https://github.com/andyjansson/css-unit-converter", "description": "", "pathes": [ "." @@ -4774,8 +4554,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "component-emitter", - "url": "Unknown", + "name": "css-url-regex", + "url": "https://github.com/johnotander/css-url-regex", "description": "", "pathes": [ "." @@ -4784,12 +4564,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "compressible", - "url": "Unknown", + "name": "css-what", + "url": "http://feedic.com", "description": "", "pathes": [ "." @@ -4798,12 +4578,11 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "CC0-1.0" }, "dependency": { - "name": "compression", - "url": "Unknown", + "name": "cssdb", + "url": "https://github.com/csstools/cssdb#readme", "description": "", "pathes": [ "." @@ -4816,8 +4595,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "concat-map", - "url": "http://substack.net", + "name": "cssesc", + "url": "https://mths.be/cssesc", "description": "", "pathes": [ "." @@ -4830,8 +4609,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "concat-stream", - "url": "Unknown", + "name": "cssesc", + "url": "https://mths.be/cssesc", "description": "", "pathes": [ "." @@ -4844,8 +4623,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "concat-stream", - "url": "Unknown", + "name": "cssnano", + "url": "https://github.com/ben-eb/cssnano", "description": "", "pathes": [ "." @@ -4858,8 +4637,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "connect", - "url": "http://tjholowaychuk.com", + "name": "cssnano", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -4872,8 +4651,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "consola", - "url": "Unknown", + "name": "cssnano-preset-default", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -4886,8 +4665,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "console-browserify", - "url": "https://github.com/Raynos/console-browserify", + "name": "cssnano-util-get-arguments", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -4896,12 +4675,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "console-control-strings", - "url": "http://re-becca.org/", + "name": "cssnano-util-get-match", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -4914,8 +4693,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "consolidate", - "url": "https://github.com/tj/consolidate.js", + "name": "cssnano-util-raw-cache", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -4928,8 +4707,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "constants-browserify", - "url": "https://github.com/juliangruber/constants-browserify", + "name": "cssnano-util-same-parent", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -4942,8 +4721,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "contains-path", - "url": "https://github.com/jonschlinkert/contains-path", + "name": "csso", + "url": "https://github.com/css/csso", "description": "", "pathes": [ "." @@ -4956,8 +4735,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "content-disposition", - "url": "Unknown", + "name": "csso", + "url": "https://github.com/css/csso", "description": "", "pathes": [ "." @@ -4970,8 +4749,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "content-type", - "url": "Unknown", + "name": "cuint", + "url": "https://github.com/pierrec/js-cuint", "description": "", "pathes": [ "." @@ -4980,12 +4759,11 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "MIT*" }, "dependency": { - "name": "content-type-parser", - "url": "https://domenic.me/", + "name": "cyclist", + "url": "Unknown", "description": "", "pathes": [ "." @@ -4998,8 +4776,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "convert-source-map", - "url": "https://github.com/thlorenz/convert-source-map", + "name": "dashdash", + "url": "http://trentm.com", "description": "", "pathes": [ "." @@ -5012,8 +4790,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "convert-source-map", - "url": "https://github.com/thlorenz/convert-source-map", + "name": "data2xml", + "url": "https://github.com/chilts/data2xml", "description": "", "pathes": [ "." @@ -5026,7 +4804,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cookie", + "name": "date-fns", "url": "Unknown", "description": "", "pathes": [ @@ -5040,8 +4818,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cookie", - "url": "Unknown", + "name": "date-now", + "url": "https://github.com/Colingo/date-now", "description": "", "pathes": [ "." @@ -5054,8 +4832,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cookie-signature", - "url": "Unknown", + "name": "de-indent", + "url": "https://github.com/yyx990803/de-indent#readme", "description": "", "pathes": [ "." @@ -5064,12 +4842,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "copy-concurrently", - "url": "https://www.npmjs.com/package/copy-concurrently", + "name": "debug", + "url": "Unknown", "description": "", "pathes": [ "." @@ -5082,8 +4860,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "copy-descriptor", - "url": "https://github.com/jonschlinkert/copy-descriptor", + "name": "debug", + "url": "Unknown", "description": "", "pathes": [ "." @@ -5096,7 +4874,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "core-js", + "name": "debug", "url": "Unknown", "description": "", "pathes": [ @@ -5110,8 +4888,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "core-js-compat", - "url": "Unknown", + "name": "decamelize", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -5124,8 +4902,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "core-js-pure", - "url": "Unknown", + "name": "decode-uri-component", + "url": "github.com/SamVerschueren", "description": "", "pathes": [ "." @@ -5138,8 +4916,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "core-util-is", - "url": "http://blog.izs.me/", + "name": "decouple", + "url": "Unknown", "description": "", "pathes": [ "." @@ -5152,8 +4930,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cosmiconfig", - "url": "https://github.com/davidtheclark/cosmiconfig#readme", + "name": "deep-extend", + "url": "https://github.com/unclechu/node-deep-extend", "description": "", "pathes": [ "." @@ -5166,8 +4944,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cosmiconfig", - "url": "https://github.com/davidtheclark/cosmiconfig#readme", + "name": "deepmerge", + "url": "https://github.com/TehShrike/deepmerge", "description": "", "pathes": [ "." @@ -5176,11 +4954,11 @@ }, { "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "coveralls", + "name": "define-properties", "url": "Unknown", "description": "", "pathes": [ @@ -5194,8 +4972,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "create-ecdh", - "url": "https://github.com/crypto-browserify/createECDH", + "name": "define-property", + "url": "https://github.com/jonschlinkert/define-property", "description": "", "pathes": [ "." @@ -5208,8 +4986,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "create-hash", - "url": "https://github.com/crypto-browserify/createHash", + "name": "define-property", + "url": "https://github.com/jonschlinkert/define-property", "description": "", "pathes": [ "." @@ -5222,8 +5000,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "create-hmac", - "url": "https://github.com/crypto-browserify/createHmac", + "name": "define-property", + "url": "https://github.com/jonschlinkert/define-property", "description": "", "pathes": [ "." @@ -5236,8 +5014,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cross-spawn", - "url": "http://indigounited.com", + "name": "defined", + "url": "https://github.com/substack/defined", "description": "", "pathes": [ "." @@ -5250,8 +5028,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cross-spawn", - "url": "http://indigounited.com", + "name": "defu", + "url": "Unknown", "description": "", "pathes": [ "." @@ -5264,8 +5042,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cross-spawn", - "url": "https://github.com/moxystudio/node-cross-spawn", + "name": "delayed-stream", + "url": "https://github.com/felixge/node-delayed-stream", "description": "", "pathes": [ "." @@ -5274,12 +5052,12 @@ }, { "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cryptiles", - "url": "http://hueniverse.com", + "name": "delegates", + "url": "Unknown", "description": "", "pathes": [ "." @@ -5288,11 +5066,11 @@ }, { "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cryptiles", + "name": "depd", "url": "Unknown", "description": "", "pathes": [ @@ -5306,8 +5084,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "crypto-browserify", - "url": "https://github.com/crypto-browserify/crypto-browserify", + "name": "des.js", + "url": "https://github.com/indutny/des.js#readme", "description": "", "pathes": [ "." @@ -5316,11 +5094,12 @@ }, { "license": { - "name": "CC0-1.0" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "css-blank-pseudo", - "url": "https://github.com/csstools/css-blank-pseudo#readme", + "name": "destroy", + "url": "http://jongleberry.com", "description": "", "pathes": [ "." @@ -5333,8 +5112,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "css-color-names", - "url": "http://www.daveeddy.com", + "name": "detect-indent", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -5343,12 +5122,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, "dependency": { - "name": "css-declaration-sorter", - "url": "https://selwyn.cc/", + "name": "detect-libc", + "url": "Unknown", "description": "", "pathes": [ "." @@ -5357,11 +5136,12 @@ }, { "license": { - "name": "CC0-1.0" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "css-has-pseudo", - "url": "https://github.com/csstools/css-has-pseudo#readme", + "name": "diffie-hellman", + "url": "https://github.com/crypto-browserify/diffie-hellman", "description": "", "pathes": [ "." @@ -5374,8 +5154,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "css-loader", - "url": "https://github.com/webpack-contrib/css-loader", + "name": "dom-converter", + "url": "Unknown", "description": "", "pathes": [ "." @@ -5388,7 +5168,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "css-parse", + "name": "dom-serializer", "url": "Unknown", "description": "", "pathes": [ @@ -5398,11 +5178,12 @@ }, { "license": { - "name": "CC0-1.0" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "css-prefers-color-scheme", - "url": "https://github.com/csstools/css-prefers-color-scheme#readme", + "name": "dom-walk", + "url": "https://github.com/Raynos/dom-walk", "description": "", "pathes": [ "." @@ -5411,12 +5192,12 @@ }, { "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "css-select", - "url": "Unknown", + "name": "domain-browser", + "url": "https://github.com/bevry/domain-browser", "description": "", "pathes": [ "." @@ -5429,7 +5210,7 @@ "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "css-select", + "name": "domelementtype", "url": "Unknown", "description": "", "pathes": [ @@ -5439,12 +5220,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "css-select-base-adapter", - "url": "https://github.com/nrkn/css-select-base-adapter#readme", + "name": "domelementtype", + "url": "Unknown", "description": "", "pathes": [ "." @@ -5453,12 +5234,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "css-tree", - "url": "https://github.com/csstree/csstree", + "name": "domhandler", + "url": "Unknown", "description": "", "pathes": [ "." @@ -5467,12 +5248,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "css-tree", - "url": "https://github.com/csstree/csstree", + "name": "domutils", + "url": "Unknown", "description": "", "pathes": [ "." @@ -5481,12 +5262,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "css-unit-converter", - "url": "https://github.com/andyjansson/css-unit-converter", + "name": "domutils", + "url": "Unknown", "description": "", "pathes": [ "." @@ -5499,8 +5280,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "css-url-regex", - "url": "https://github.com/johnotander/css-url-regex", + "name": "dot-prop", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -5509,12 +5290,12 @@ }, { "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "css-what", - "url": "http://feedic.com", + "name": "duplexer", + "url": "https://github.com/Raynos/duplexer", "description": "", "pathes": [ "." @@ -5523,11 +5304,12 @@ }, { "license": { - "name": "CC0-1.0" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cssdb", - "url": "https://github.com/csstools/cssdb#readme", + "name": "duplexify", + "url": "https://github.com/mafintosh/duplexify", "description": "", "pathes": [ "." @@ -5540,8 +5322,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cssesc", - "url": "https://mths.be/cssesc", + "name": "ecc-jsbn", + "url": "https://github.com/quartzjer/ecc-jsbn", "description": "", "pathes": [ "." @@ -5554,8 +5336,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cssesc", - "url": "https://mths.be/cssesc", + "name": "ee-first", + "url": "http://jongleberry.com", "description": "", "pathes": [ "." @@ -5564,12 +5346,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, "dependency": { - "name": "cssnano", - "url": "https://github.com/ben-eb/cssnano", + "name": "ejs", + "url": "https://github.com/mde/ejs", "description": "", "pathes": [ "." @@ -5578,12 +5360,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "cssnano", - "url": "https://github.com/cssnano/cssnano", + "name": "electron-to-chromium", + "url": "Unknown", "description": "", "pathes": [ "." @@ -5596,8 +5378,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cssnano-preset-default", - "url": "https://github.com/cssnano/cssnano", + "name": "elliptic", + "url": "https://github.com/indutny/elliptic", "description": "", "pathes": [ "." @@ -5610,8 +5392,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cssnano-util-get-arguments", - "url": "https://github.com/cssnano/cssnano", + "name": "emitter", + "url": "Unknown", "description": "", "pathes": [ "." @@ -5624,8 +5406,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cssnano-util-get-match", - "url": "https://github.com/cssnano/cssnano", + "name": "emoji-regex", + "url": "https://mths.be/emoji-regex", "description": "", "pathes": [ "." @@ -5638,8 +5420,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cssnano-util-raw-cache", - "url": "https://github.com/cssnano/cssnano", + "name": "emojis-list", + "url": "https://github.com/Kikobeats/emojis-list", "description": "", "pathes": [ "." @@ -5652,8 +5434,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cssnano-util-same-parent", - "url": "https://github.com/cssnano/cssnano", + "name": "encodeurl", + "url": "Unknown", "description": "", "pathes": [ "." @@ -5666,8 +5448,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "csso", - "url": "https://github.com/css/csso", + "name": "end-of-stream", + "url": "https://github.com/mafintosh/end-of-stream", "description": "", "pathes": [ "." @@ -5680,8 +5462,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "csso", - "url": "https://github.com/css/csso", + "name": "enhanced-resolve", + "url": "http://github.com/webpack/enhanced-resolve", "description": "", "pathes": [ "." @@ -5694,8 +5476,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cssom", - "url": "Unknown", + "name": "enhanced-resolve", + "url": "http://github.com/webpack/enhanced-resolve", "description": "", "pathes": [ "." @@ -5704,12 +5486,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "cssstyle", - "url": "https://github.com/chad3814/CSSStyleDeclaration", + "name": "entities", + "url": "Unknown", "description": "", "pathes": [ "." @@ -5718,12 +5500,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "ctype", - "url": "https://github.com/rmustacc/node-ctype", + "name": "entities", + "url": "Unknown", "description": "", "pathes": [ "." @@ -5736,8 +5518,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cuint", - "url": "https://github.com/pierrec/js-cuint", + "name": "errno", + "url": "Unknown", "description": "", "pathes": [ "." @@ -5746,10 +5528,11 @@ }, { "license": { - "name": "MIT*" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cyclist", + "name": "error-ex", "url": "Unknown", "description": "", "pathes": [ @@ -5763,8 +5546,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "dashdash", - "url": "http://trentm.com", + "name": "error-stack-parser", + "url": "https://www.stacktracejs.com/", "description": "", "pathes": [ "." @@ -5777,8 +5560,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "data2xml", - "url": "https://github.com/chilts/data2xml", + "name": "es-abstract", + "url": "http://ljharb.codes", "description": "", "pathes": [ "." @@ -5791,7 +5574,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "date-fns", + "name": "es-to-primitive", "url": "Unknown", "description": "", "pathes": [ @@ -5805,8 +5588,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "date-now", - "url": "https://github.com/Colingo/date-now", + "name": "es6-promise", + "url": "Conversion to ES6 API by Jake Archibald", "description": "", "pathes": [ "." @@ -5819,8 +5602,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "de-indent", - "url": "https://github.com/yyx990803/de-indent#readme", + "name": "escape-html", + "url": "Unknown", "description": "", "pathes": [ "." @@ -5833,8 +5616,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "debug", - "url": "Unknown", + "name": "escape-string-regexp", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -5843,12 +5626,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "debug", - "url": "Unknown", + "name": "eslint-scope", + "url": "http://github.com/eslint/eslint-scope", "description": "", "pathes": [ "." @@ -5861,7 +5644,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "debug", + "name": "esm", "url": "Unknown", "description": "", "pathes": [ @@ -5871,12 +5654,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "debug", - "url": "Unknown", + "name": "esprima", + "url": "http://esprima.org/", "description": "", "pathes": [ "." @@ -5885,12 +5668,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "debug", - "url": "Unknown", + "name": "esprima", + "url": "http://esprima.org/", "description": "", "pathes": [ "." @@ -5899,12 +5682,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "debug-log", - "url": "sindresorhus.com", + "name": "esrecurse", + "url": "https://github.com/estools/esrecurse", "description": "", "pathes": [ "." @@ -5913,12 +5696,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "decamelize", - "url": "sindresorhus.com", + "name": "estraverse", + "url": "https://github.com/estools/estraverse", "description": "", "pathes": [ "." @@ -5927,12 +5710,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "decode-uri-component", - "url": "github.com/SamVerschueren", + "name": "esutils", + "url": "https://github.com/estools/esutils", "description": "", "pathes": [ "." @@ -5945,7 +5728,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "decouple", + "name": "etag", "url": "Unknown", "description": "", "pathes": [ @@ -5959,7 +5742,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "deep-eql", + "name": "eventemitter3", "url": "Unknown", "description": "", "pathes": [ @@ -5973,8 +5756,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "deep-equal", - "url": "http://substack.net", + "name": "events", + "url": "http://jeditoolkit.com", "description": "", "pathes": [ "." @@ -5987,8 +5770,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "deep-extend", - "url": "https://github.com/unclechu/node-deep-extend", + "name": "eventsource-polyfill", + "url": "https://github.com/amvtek/EventSource", "description": "", "pathes": [ "." @@ -6001,8 +5784,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "deep-is", - "url": "http://thlorenz.com", + "name": "evp_bytestokey", + "url": "https://github.com/crypto-browserify/EVP_BytesToKey", "description": "", "pathes": [ "." @@ -6015,8 +5798,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "deepmerge", - "url": "https://github.com/TehShrike/deepmerge", + "name": "execa", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -6029,8 +5812,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "default-require-extensions", - "url": "github.com/jamestalmage", + "name": "execa", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -6043,7 +5826,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "define-properties", + "name": "exif-parser", "url": "Unknown", "description": "", "pathes": [ @@ -6057,8 +5840,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "define-property", - "url": "https://github.com/jonschlinkert/define-property", + "name": "exit", + "url": "https://github.com/cowboy/node-exit", "description": "", "pathes": [ "." @@ -6071,8 +5854,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "define-property", - "url": "https://github.com/jonschlinkert/define-property", + "name": "expand-brackets", + "url": "https://github.com/jonschlinkert/expand-brackets", "description": "", "pathes": [ "." @@ -6085,8 +5868,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "define-property", - "url": "https://github.com/jonschlinkert/define-property", + "name": "expand-brackets", + "url": "https://github.com/jonschlinkert/expand-brackets", "description": "", "pathes": [ "." @@ -6099,8 +5882,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "defined", - "url": "https://github.com/substack/defined", + "name": "expand-range", + "url": "https://github.com/jonschlinkert/expand-range", "description": "", "pathes": [ "." @@ -6113,8 +5896,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "defined", - "url": "https://github.com/substack/defined", + "name": "express", + "url": "http://expressjs.com/", "description": "", "pathes": [ "." @@ -6127,8 +5910,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "defu", - "url": "Unknown", + "name": "extend", + "url": "http://www.justmoon.net", "description": "", "pathes": [ "." @@ -6141,8 +5924,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "del", - "url": "sindresorhus.com", + "name": "extend-shallow", + "url": "https://github.com/jonschlinkert/extend-shallow", "description": "", "pathes": [ "." @@ -6155,8 +5938,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "delayed-stream", - "url": "https://github.com/felixge/node-delayed-stream", + "name": "extend-shallow", + "url": "https://github.com/jonschlinkert/extend-shallow", "description": "", "pathes": [ "." @@ -6169,8 +5952,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "delayed-stream", - "url": "https://github.com/felixge/node-delayed-stream", + "name": "extglob", + "url": "https://github.com/jonschlinkert/extglob", "description": "", "pathes": [ "." @@ -6183,8 +5966,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "delegates", - "url": "Unknown", + "name": "extglob", + "url": "https://github.com/micromatch/extglob", "description": "", "pathes": [ "." @@ -6197,8 +5980,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "depd", - "url": "Unknown", + "name": "extract-css-chunks-webpack-plugin", + "url": "http://github.com/faceyspacey/extract-css-chunks-webpack-plugin", "description": "", "pathes": [ "." @@ -6211,8 +5994,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "des.js", - "url": "https://github.com/indutny/des.js#readme", + "name": "extsprintf", + "url": "Unknown", "description": "", "pathes": [ "." @@ -6225,8 +6008,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "destroy", - "url": "http://jongleberry.com", + "name": "extsprintf", + "url": "Unknown", "description": "", "pathes": [ "." @@ -6239,8 +6022,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "detect-indent", - "url": "sindresorhus.com", + "name": "fast-deep-equal", + "url": "https://github.com/epoberezkin/fast-deep-equal#readme", "description": "", "pathes": [ "." @@ -6253,8 +6036,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "detect-indent", - "url": "sindresorhus.com", + "name": "fast-deep-equal", + "url": "https://github.com/epoberezkin/fast-deep-equal#readme", "description": "", "pathes": [ "." @@ -6263,12 +6046,12 @@ }, { "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "detect-libc", - "url": "Unknown", + "name": "fast-json-stable-stringify", + "url": "https://github.com/epoberezkin/fast-json-stable-stringify", "description": "", "pathes": [ "." @@ -6277,11 +6060,11 @@ }, { "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "diff", + "name": "figgy-pudding", "url": "Unknown", "description": "", "pathes": [ @@ -6295,8 +6078,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "diffie-hellman", - "url": "https://github.com/crypto-browserify/diffie-hellman", + "name": "figures", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -6305,12 +6088,12 @@ }, { "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "doctrine", - "url": "https://github.com/eslint/doctrine", + "name": "file-loader", + "url": "https://github.com/webpack-contrib/file-loader", "description": "", "pathes": [ "." @@ -6319,12 +6102,12 @@ }, { "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "doctrine", - "url": "https://github.com/eslint/doctrine", + "name": "file-type", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -6337,8 +6120,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "dom-converter", - "url": "Unknown", + "name": "filename-regex", + "url": "https://github.com/regexhq/filename-regex", "description": "", "pathes": [ "." @@ -6347,12 +6130,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "dom-serializer", - "url": "Unknown", + "name": "filesize", + "url": "https://filesizejs.com/", "description": "", "pathes": [ "." @@ -6365,8 +6148,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "dom-walk", - "url": "https://github.com/Raynos/dom-walk", + "name": "fill-range", + "url": "https://github.com/jonschlinkert/fill-range", "description": "", "pathes": [ "." @@ -6379,8 +6162,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "domain-browser", - "url": "https://github.com/bevry/domain-browser", + "name": "fill-range", + "url": "https://github.com/jonschlinkert/fill-range", "description": "", "pathes": [ "." @@ -6389,12 +6172,12 @@ }, { "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "domelementtype", - "url": "Unknown", + "name": "fill-range", + "url": "https://github.com/jonschlinkert/fill-range", "description": "", "pathes": [ "." @@ -6403,11 +6186,11 @@ }, { "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "domelementtype", + "name": "finalhandler", "url": "Unknown", "description": "", "pathes": [ @@ -6421,21 +6204,7 @@ "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", + "name": "find-cache-dir", "url": "Unknown", "description": "", "pathes": [ @@ -6445,12 +6214,12 @@ }, { "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "domutils", - "url": "Unknown", + "name": "find-up", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -6459,12 +6228,12 @@ }, { "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "domutils", - "url": "Unknown", + "name": "flatten", + "url": "http://jesusabdullah.net", "description": "", "pathes": [ "." @@ -6477,8 +6246,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "dot-prop", - "url": "sindresorhus.com", + "name": "flush-write-stream", + "url": "https://github.com/mafintosh/flush-write-stream", "description": "", "pathes": [ "." @@ -6491,8 +6260,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "duplexer", - "url": "https://github.com/Raynos/duplexer", + "name": "follow-redirects", + "url": "https://github.com/olalonde/follow-redirects", "description": "", "pathes": [ "." @@ -6505,8 +6274,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "duplexify", - "url": "https://github.com/mafintosh/duplexify", + "name": "for-each", + "url": "https://github.com/Raynos/for-each", "description": "", "pathes": [ "." @@ -6519,8 +6288,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "ecc-jsbn", - "url": "https://github.com/quartzjer/ecc-jsbn", + "name": "for-in", + "url": "https://github.com/jonschlinkert/for-in", "description": "", "pathes": [ "." @@ -6533,8 +6302,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "ee-first", - "url": "http://jongleberry.com", + "name": "for-own", + "url": "https://github.com/jonschlinkert/for-own", "description": "", "pathes": [ "." @@ -6547,8 +6316,8 @@ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, "dependency": { - "name": "ejs", - "url": "https://github.com/mde/ejs", + "name": "forever-agent", + "url": "http://www.futurealoof.com", "description": "", "pathes": [ "." @@ -6557,12 +6326,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "electron-to-chromium", - "url": "Unknown", + "name": "form-data", + "url": "http://debuggable.com/", "description": "", "pathes": [ "." @@ -6575,8 +6344,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "elliptic", - "url": "https://github.com/indutny/elliptic", + "name": "forwarded", + "url": "Unknown", "description": "", "pathes": [ "." @@ -6589,8 +6358,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "emitter", - "url": "Unknown", + "name": "fragment-cache", + "url": "https://github.com/jonschlinkert/fragment-cache", "description": "", "pathes": [ "." @@ -6603,8 +6372,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "emoji-regex", - "url": "https://mths.be/emoji-regex", + "name": "fresh", + "url": "http://tjholowaychuk.com", "description": "", "pathes": [ "." @@ -6617,4019 +6386,8 @@ "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", + "name": "from2", + "url": "https://github.com/hughsk/from2", "description": "", "pathes": [ "." @@ -10642,8 +6400,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "jsesc", - "url": "https://mths.be/jsesc", + "name": "front-matter", + "url": "https://github.com/jxson/front-matter", "description": "", "pathes": [ "." @@ -10656,21 +6414,8 @@ "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", + "name": "fs-extra", + "url": "https://github.com/jprichardson/node-fs-extra", "description": "", "pathes": [ "." @@ -10683,8 +6428,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "json-schema-traverse", - "url": "https://github.com/epoberezkin/json-schema-traverse#readme", + "name": "fs-extra", + "url": "https://github.com/jprichardson/node-fs-extra", "description": "", "pathes": [ "." @@ -10697,8 +6442,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "json-schema-traverse", - "url": "https://github.com/epoberezkin/json-schema-traverse#readme", + "name": "fs-extra", + "url": "https://github.com/jprichardson/node-fs-extra", "description": "", "pathes": [ "." @@ -10711,8 +6456,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "json-stable-stringify-without-jsonify", - "url": "https://github.com/samn/json-stable-stringify", + "name": "fs-extra", + "url": "https://github.com/jprichardson/node-fs-extra", "description": "", "pathes": [ "." @@ -10725,92 +6470,8 @@ "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", + "name": "fs-minipass", + "url": "https://github.com/npm/fs-minipass#readme", "description": "", "pathes": [ "." @@ -10819,12 +6480,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "jsonfile", - "url": "Unknown", + "name": "fs-write-stream-atomic", + "url": "https://github.com/npm/fs-write-stream-atomic", "description": "", "pathes": [ "." @@ -10833,11 +6494,12 @@ }, { "license": { - "name": "Public Domain" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "jsonify", - "url": "http://crockford.com/", + "name": "fs.realpath", + "url": "http://blog.izs.me/", "description": "", "pathes": [ "." @@ -10846,12 +6508,10 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "unknown" }, "dependency": { - "name": "jsprim", - "url": "Unknown", + "name": "fsevents", "description": "", "pathes": [ "." @@ -10860,12 +6520,10 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "unknown" }, "dependency": { - "name": "kind-of", - "url": "https://github.com/jonschlinkert/kind-of", + "name": "fsevents", "description": "", "pathes": [ "." @@ -10878,8 +6536,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "kind-of", - "url": "https://github.com/jonschlinkert/kind-of", + "name": "function-bind", + "url": "https://github.com/Raynos/function-bind", "description": "", "pathes": [ "." @@ -10888,12 +6546,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "kind-of", - "url": "https://github.com/jonschlinkert/kind-of", + "name": "gauge", + "url": "https://github.com/iarna/gauge", "description": "", "pathes": [ "." @@ -10906,8 +6564,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "kind-of", - "url": "https://github.com/jonschlinkert/kind-of", + "name": "get-stream", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -10920,8 +6578,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "klaw", - "url": "https://github.com/jprichardson/node-klaw#readme", + "name": "get-stream", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -10934,8 +6592,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "last-call-webpack-plugin", - "url": "http://github.com/NMFR/last-call-webpack-plugin", + "name": "get-value", + "url": "https://github.com/jonschlinkert/get-value", "description": "", "pathes": [ "." @@ -10948,8 +6606,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "launch-editor", - "url": "https://github.com/yyx990803/launch-editor#readme", + "name": "getpass", + "url": "Unknown", "description": "", "pathes": [ "." @@ -10958,12 +6616,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "launch-editor-middleware", - "url": "https://github.com/yyx990803/launch-editor#readme", + "name": "glob", + "url": "http://blog.izs.me/", "description": "", "pathes": [ "." @@ -10972,12 +6630,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "lazy-cache", - "url": "https://github.com/jonschlinkert/lazy-cache", + "name": "glob", + "url": "http://blog.izs.me/", "description": "", "pathes": [ "." @@ -10990,8 +6648,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lcid", - "url": "sindresorhus.com", + "name": "glob-base", + "url": "https://github.com/jonschlinkert/glob-base", "description": "", "pathes": [ "." @@ -11000,12 +6658,12 @@ }, { "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "lcov-parse", - "url": "Unknown", + "name": "glob-parent", + "url": "https://github.com/es128/glob-parent", "description": "", "pathes": [ "." @@ -11014,11 +6672,12 @@ }, { "license": { - "name": "WTFPL" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "left-pad", - "url": "Unknown", + "name": "glob-parent", + "url": "https://github.com/es128/glob-parent", "description": "", "pathes": [ "." @@ -11027,12 +6686,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "levn", - "url": "https://github.com/gkz/levn", + "name": "glob-parent", + "url": "https://gulpjs.com/", "description": "", "pathes": [ "." @@ -11045,8 +6704,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "linkify-it", - "url": "Unknown", + "name": "global", + "url": "https://github.com/Raynos/global", "description": "", "pathes": [ "." @@ -11059,8 +6718,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "load-bmfont", - "url": "https://github.com/Jam3/load-bmfont", + "name": "globals", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -11069,12 +6728,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "load-json-file", - "url": "sindresorhus.com", + "name": "graceful-fs", + "url": "Unknown", "description": "", "pathes": [ "." @@ -11087,7 +6746,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "load-json-file", + "name": "gzip-size", "url": "sindresorhus.com", "description": "", "pathes": [ @@ -11101,8 +6760,8 @@ "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "loader-fs-cache", - "url": "Unknown", + "name": "har-schema", + "url": "https://github.com/ahmadnassri/har-schema", "description": "", "pathes": [ "." @@ -11111,12 +6770,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "loader-runner", - "url": "https://github.com/webpack/loader-runner#readme", + "name": "har-validator", + "url": "https://github.com/ahmadnassri/har-validator", "description": "", "pathes": [ "." @@ -11125,11 +6784,11 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "loader-utils", + "name": "hard-source-webpack-plugin", "url": "Unknown", "description": "", "pathes": [ @@ -11143,8 +6802,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "loader-utils", - "url": "Unknown", + "name": "has", + "url": "https://github.com/tarruda/has", "description": "", "pathes": [ "." @@ -11157,7 +6816,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "locate-path", + "name": "has-ansi", "url": "sindresorhus.com", "description": "", "pathes": [ @@ -11171,7 +6830,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "locate-path", + "name": "has-flag", "url": "sindresorhus.com", "description": "", "pathes": [ @@ -11185,8 +6844,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lodash", - "url": "https://lodash.com/", + "name": "has-flag", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -11199,8 +6858,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lodash", - "url": "https://lodash.com/", + "name": "has-symbols", + "url": "http://ljharb.codes", "description": "", "pathes": [ "." @@ -11209,12 +6868,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "lodash._baseassign", - "url": "https://lodash.com/", + "name": "has-unicode", + "url": "https://github.com/iarna/has-unicode", "description": "", "pathes": [ "." @@ -11227,8 +6886,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lodash._basecopy", - "url": "https://lodash.com/", + "name": "has-value", + "url": "https://github.com/jonschlinkert/has-value", "description": "", "pathes": [ "." @@ -11241,8 +6900,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lodash._basecreate", - "url": "https://lodash.com/", + "name": "has-value", + "url": "https://github.com/jonschlinkert/has-value", "description": "", "pathes": [ "." @@ -11255,8 +6914,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lodash._getnative", - "url": "https://lodash.com/", + "name": "has-values", + "url": "https://github.com/jonschlinkert/has-values", "description": "", "pathes": [ "." @@ -11269,8 +6928,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lodash._isiterateecall", - "url": "https://lodash.com/", + "name": "has-values", + "url": "https://github.com/jonschlinkert/has-values", "description": "", "pathes": [ "." @@ -11283,8 +6942,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lodash._reinterpolate", - "url": "https://lodash.com/", + "name": "hash-base", + "url": "https://github.com/crypto-browserify/hash-base", "description": "", "pathes": [ "." @@ -11297,8 +6956,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lodash.assign", - "url": "https://lodash.com/", + "name": "hash-sum", + "url": "https://github.com/bevacqua/hash-sum", "description": "", "pathes": [ "." @@ -11311,8 +6970,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lodash.clonedeep", - "url": "https://lodash.com/", + "name": "hash.js", + "url": "https://github.com/indutny/hash.js", "description": "", "pathes": [ "." @@ -11321,12 +6980,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "lodash.cond", - "url": "https://lodash.com/", + "name": "hawk", + "url": "http://hueniverse.com", "description": "", "pathes": [ "." @@ -11339,8 +6998,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lodash.create", - "url": "https://lodash.com/", + "name": "he", + "url": "https://mths.be/he", "description": "", "pathes": [ "." @@ -11353,8 +7012,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lodash.isarguments", - "url": "https://lodash.com/", + "name": "hex-color-regex", + "url": "http://www.tunnckocore.tk", "description": "", "pathes": [ "." @@ -11363,12 +7022,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "lodash.isarray", - "url": "https://lodash.com/", + "name": "highlight.js", + "url": "https://highlightjs.org/", "description": "", "pathes": [ "." @@ -11381,8 +7040,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lodash.isplainobject", - "url": "https://lodash.com/", + "name": "hmac-drbg", + "url": "https://github.com/indutny/hmac-drbg#readme", "description": "", "pathes": [ "." @@ -11391,12 +7050,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "lodash.kebabcase", - "url": "https://lodash.com/", + "name": "hoek", + "url": "Unknown", "description": "", "pathes": [ "." @@ -11409,8 +7068,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lodash.keys", - "url": "https://lodash.com/", + "name": "hoopy", + "url": "https://gitlab.com/philbooth/hoopy#readme", "description": "", "pathes": [ "." @@ -11423,8 +7082,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lodash.memoize", - "url": "https://lodash.com/", + "name": "hsl-regex", + "url": "https://github.com/regexps/hsl-regex", "description": "", "pathes": [ "." @@ -11437,8 +7096,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lodash.merge", - "url": "https://lodash.com/", + "name": "hsla-regex", + "url": "https://github.com/regexps/hsla-regex", "description": "", "pathes": [ "." @@ -11451,8 +7110,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lodash.sortby", - "url": "https://lodash.com/", + "name": "html-comment-regex", + "url": "https://github.com/stevemao/html-comment-regex", "description": "", "pathes": [ "." @@ -11465,8 +7124,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lodash.template", - "url": "https://lodash.com/", + "name": "html-entities", + "url": "Unknown", "description": "", "pathes": [ "." @@ -11479,8 +7138,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lodash.templatesettings", - "url": "https://lodash.com/", + "name": "html-minifier", + "url": "https://kangax.github.io/html-minifier/", "description": "", "pathes": [ "." @@ -11493,8 +7152,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lodash.uniq", - "url": "https://lodash.com/", + "name": "html-minifier", + "url": "https://kangax.github.io/html-minifier/", "description": "", "pathes": [ "." @@ -11507,8 +7166,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lodash.uniqueid", - "url": "https://lodash.com/", + "name": "html-tags", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -11517,12 +7176,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "log-driver", - "url": "https://github.com/cainus/logdriver", + "name": "html-webpack-plugin", + "url": "https://github.com/jantimon/html-webpack-plugin", "description": "", "pathes": [ "." @@ -11535,8 +7194,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "longest", - "url": "https://github.com/jonschlinkert/longest", + "name": "htmlparser2", + "url": "Unknown", "description": "", "pathes": [ "." @@ -11549,8 +7208,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "loose-envify", - "url": "https://github.com/zertosh/loose-envify", + "name": "http-errors", + "url": "http://jongleberry.com", "description": "", "pathes": [ "." @@ -11563,8 +7222,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lower-case", - "url": "https://github.com/blakeembrey/lower-case", + "name": "http-proxy", + "url": "Unknown", "description": "", "pathes": [ "." @@ -11573,12 +7232,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lru-cache", - "url": "Unknown", + "name": "http-proxy-middleware", + "url": "https://github.com/chimurai/http-proxy-middleware", "description": "", "pathes": [ "." @@ -11587,12 +7246,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lru-cache", - "url": "Unknown", + "name": "http-signature", + "url": "https://github.com/joyent/node-http-signature/", "description": "", "pathes": [ "." @@ -11601,12 +7260,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lru-cache", - "url": "Unknown", + "name": "https-browserify", + "url": "https://github.com/substack/https-browserify", "description": "", "pathes": [ "." @@ -11619,8 +7278,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "make-dir", - "url": "sindresorhus.com", + "name": "iconv-lite", + "url": "https://github.com/ashtuchkin/iconv-lite", "description": "", "pathes": [ "." @@ -11629,12 +7288,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "make-dir", - "url": "sindresorhus.com", + "name": "icss-replace-symbols", + "url": "https://github.com/css-modules/icss-replace-symbols#readme", "description": "", "pathes": [ "." @@ -11643,12 +7302,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "mamacro", - "url": "Unknown", + "name": "icss-utils", + "url": "https://github.com/css-modules/icss-utils#readme", "description": "", "pathes": [ "." @@ -11657,12 +7316,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "map-cache", - "url": "https://github.com/jonschlinkert/map-cache", + "name": "ieee754", + "url": "http://feross.org", "description": "", "pathes": [ "." @@ -11675,8 +7334,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "map-visit", - "url": "https://github.com/jonschlinkert/map-visit", + "name": "iferr", + "url": "https://github.com/shesek/iferr", "description": "", "pathes": [ "." @@ -11689,7 +7348,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "markdown-it", + "name": "ignore", "url": "Unknown", "description": "", "pathes": [ @@ -11699,11 +7358,12 @@ }, { "license": { - "name": "Unlicense" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "markdown-it-anchor", - "url": "https://github.com/valeriangalliat/markdown-it-anchor", + "name": "ignore-walk", + "url": "http://blog.izs.me/", "description": "", "pathes": [ "." @@ -11716,8 +7376,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "math-expression-evaluator", - "url": "https://github.com/redhivesoftware/math-expression-evaluator#readme", + "name": "import-cwd", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -11730,8 +7390,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "math-random", - "url": "Unknown", + "name": "import-fresh", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -11744,7 +7404,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "md5-hex", + "name": "import-from", "url": "sindresorhus.com", "description": "", "pathes": [ @@ -11758,8 +7418,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "md5-o-matic", - "url": "https://github.com/trentmillar/md5-o-matic", + "name": "imurmurhash", + "url": "https://github.com/jensyt/imurmurhash-js", "description": "", "pathes": [ "." @@ -11772,8 +7432,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "md5.js", - "url": "https://github.com/crypto-browserify/md5.js", + "name": "indexes-of", + "url": "https://github.com/dominictarr/indexes-of", "description": "", "pathes": [ "." @@ -11782,12 +7442,11 @@ }, { "license": { - "name": "Mozilla Public License 2.0", - "url": "https://www.mozilla.org/media/MPL/2.0/index.815ca599c9df.txt" + "name": "MIT*" }, "dependency": { - "name": "mdn-data", - "url": "https://developer.mozilla.org/", + "name": "indexof", + "url": "Unknown", "description": "", "pathes": [ "." @@ -11796,12 +7455,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "mdurl", - "url": "Unknown", + "name": "inflight", + "url": "https://github.com/isaacs/inflight", "description": "", "pathes": [ "." @@ -11810,11 +7469,11 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "media-typer", + "name": "inherits", "url": "Unknown", "description": "", "pathes": [ @@ -11824,12 +7483,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "mem", - "url": "sindresorhus.com", + "name": "inherits", + "url": "Unknown", "description": "", "pathes": [ "." @@ -11838,12 +7497,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "memory-fs", - "url": "https://github.com/webpack/memory-fs", + "name": "ini", + "url": "http://blog.izs.me/", "description": "", "pathes": [ "." @@ -11856,8 +7515,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "merge-descriptors", - "url": "http://jongleberry.com", + "name": "invariant", + "url": "Unknown", "description": "", "pathes": [ "." @@ -11870,8 +7529,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "merge-source-map", - "url": "Unknown", + "name": "ip", + "url": "https://github.com/indutny/node-ip", "description": "", "pathes": [ "." @@ -11884,8 +7543,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "methods", - "url": "Unknown", + "name": "ip-regex", + "url": "http://sindresorhus.com", "description": "", "pathes": [ "." @@ -11898,8 +7557,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "micromatch", - "url": "https://github.com/jonschlinkert/micromatch", + "name": "ipaddr.js", + "url": "Unknown", "description": "", "pathes": [ "." @@ -11912,8 +7571,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "micromatch", - "url": "https://github.com/micromatch/micromatch", + "name": "is-absolute-url", + "url": "http://sindresorhus.com", "description": "", "pathes": [ "." @@ -11926,8 +7585,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "miller-rabin", - "url": "https://github.com/indutny/miller-rabin", + "name": "is-accessor-descriptor", + "url": "https://github.com/jonschlinkert/is-accessor-descriptor", "description": "", "pathes": [ "." @@ -11940,8 +7599,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "mime", - "url": "http://github.com/broofa", + "name": "is-accessor-descriptor", + "url": "https://github.com/jonschlinkert/is-accessor-descriptor", "description": "", "pathes": [ "." @@ -11954,8 +7613,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "mime", - "url": "http://github.com/broofa", + "name": "is-arrayish", + "url": "http://github.com/qix-", "description": "", "pathes": [ "." @@ -11968,8 +7627,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "mime", - "url": "http://github.com/broofa", + "name": "is-arrayish", + "url": "http://github.com/qix-", "description": "", "pathes": [ "." @@ -11982,8 +7641,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "mime-db", - "url": "Unknown", + "name": "is-binary-path", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -11996,8 +7655,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "mime-db", - "url": "Unknown", + "name": "is-binary-path", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -12010,8 +7669,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "mime-types", - "url": "http://jongleberry.com", + "name": "is-buffer", + "url": "http://feross.org/", "description": "", "pathes": [ "." @@ -12024,8 +7683,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "mime-types", - "url": "Unknown", + "name": "is-callable", + "url": "http://ljharb.codes", "description": "", "pathes": [ "." @@ -12038,8 +7697,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "mime-types", - "url": "Unknown", + "name": "is-color-stop", + "url": "https://github.com/pigcan/is-color-stop#readme", "description": "", "pathes": [ "." @@ -12052,8 +7711,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "mimic-fn", - "url": "sindresorhus.com", + "name": "is-data-descriptor", + "url": "https://github.com/jonschlinkert/is-data-descriptor", "description": "", "pathes": [ "." @@ -12066,8 +7725,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "min-document", - "url": "https://github.com/Raynos/min-document", + "name": "is-data-descriptor", + "url": "https://github.com/jonschlinkert/is-data-descriptor", "description": "", "pathes": [ "." @@ -12076,12 +7735,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "minimalistic-assert", - "url": "https://github.com/calvinmetcalf/minimalistic-assert", + "name": "is-date-object", + "url": "Unknown", "description": "", "pathes": [ "." @@ -12094,8 +7753,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "minimalistic-crypto-utils", - "url": "https://github.com/indutny/minimalistic-crypto-utils#readme", + "name": "is-descriptor", + "url": "https://github.com/jonschlinkert/is-descriptor", "description": "", "pathes": [ "." @@ -12104,12 +7763,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "minimatch", - "url": "http://blog.izs.me", + "name": "is-descriptor", + "url": "https://github.com/jonschlinkert/is-descriptor", "description": "", "pathes": [ "." @@ -12122,8 +7781,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "minimist", - "url": "https://github.com/substack/minimist", + "name": "is-directory", + "url": "https://github.com/jonschlinkert/is-directory", "description": "", "pathes": [ "." @@ -12136,8 +7795,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "minimist", - "url": "https://github.com/substack/minimist", + "name": "is-dotfile", + "url": "https://github.com/jonschlinkert/is-dotfile", "description": "", "pathes": [ "." @@ -12150,8 +7809,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "minimist", - "url": "https://github.com/substack/minimist", + "name": "is-equal-shallow", + "url": "https://github.com/jonschlinkert/is-equal-shallow", "description": "", "pathes": [ "." @@ -12160,12 +7819,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "minipass", - "url": "http://blog.izs.me/", + "name": "is-extendable", + "url": "https://github.com/jonschlinkert/is-extendable", "description": "", "pathes": [ "." @@ -12178,8 +7837,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "minizlib", - "url": "http://blog.izs.me/", + "name": "is-extendable", + "url": "https://github.com/jonschlinkert/is-extendable", "description": "", "pathes": [ "." @@ -12188,12 +7847,12 @@ }, { "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "mississippi", - "url": "https://github.com/maxogden/mississippi#readme", + "name": "is-extglob", + "url": "https://github.com/jonschlinkert/is-extglob", "description": "", "pathes": [ "." @@ -12206,8 +7865,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "mixin-deep", - "url": "https://github.com/jonschlinkert/mixin-deep", + "name": "is-extglob", + "url": "https://github.com/jonschlinkert/is-extglob", "description": "", "pathes": [ "." @@ -12220,8 +7879,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "mkdirp", - "url": "http://substack.net", + "name": "is-fullwidth-code-point", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -12234,8 +7893,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "mocha", - "url": "https://mochajs.org/", + "name": "is-fullwidth-code-point", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -12248,8 +7907,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "mocha-webpack", - "url": "Unknown", + "name": "is-function", + "url": "https://github.com/grncdr/js-is-function", "description": "", "pathes": [ "." @@ -12262,8 +7921,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "moment", - "url": "http://momentjs.com/", + "name": "is-glob", + "url": "https://github.com/jonschlinkert/is-glob", "description": "", "pathes": [ "." @@ -12272,12 +7931,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "move-concurrently", - "url": "https://www.npmjs.com/package/move-concurrently", + "name": "is-glob", + "url": "https://github.com/jonschlinkert/is-glob", "description": "", "pathes": [ "." @@ -12290,8 +7949,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "ms", - "url": "Unknown", + "name": "is-glob", + "url": "https://github.com/micromatch/is-glob", "description": "", "pathes": [ "." @@ -12304,7 +7963,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "ms", + "name": "is-https", "url": "Unknown", "description": "", "pathes": [ @@ -12318,22 +7977,8 @@ "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/", + "name": "is-number", + "url": "https://github.com/jonschlinkert/is-number", "description": "", "pathes": [ "." @@ -12346,8 +7991,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "nan", - "url": "Unknown", + "name": "is-number", + "url": "https://github.com/jonschlinkert/is-number", "description": "", "pathes": [ "." @@ -12360,8 +8005,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "nanomatch", - "url": "https://github.com/micromatch/nanomatch", + "name": "is-number", + "url": "https://github.com/jonschlinkert/is-number", "description": "", "pathes": [ "." @@ -12374,8 +8019,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "natural-compare", - "url": "https://github.com/litejs/natural-compare-lite", + "name": "is-number", + "url": "https://github.com/jonschlinkert/is-number", "description": "", "pathes": [ "." @@ -12388,8 +8033,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "needle", - "url": "Unknown", + "name": "is-obj", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -12402,8 +8047,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "negotiator", - "url": "Unknown", + "name": "is-plain-obj", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -12416,8 +8061,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "neo-async", - "url": "https://github.com/suguru03/neo-async", + "name": "is-plain-object", + "url": "https://github.com/jonschlinkert/is-plain-object", "description": "", "pathes": [ "." @@ -12430,8 +8075,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "nice-try", - "url": "https://github.com/electerious/nice-try", + "name": "is-posix-bracket", + "url": "https://github.com/jonschlinkert/is-posix-bracket", "description": "", "pathes": [ "." @@ -12444,8 +8089,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "no-case", - "url": "https://github.com/blakeembrey/no-case", + "name": "is-primitive", + "url": "https://github.com/jonschlinkert/is-primitive", "description": "", "pathes": [ "." @@ -12458,8 +8103,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "node-fetch", - "url": "https://github.com/bitinn/node-fetch", + "name": "is-promise", + "url": "Unknown", "description": "", "pathes": [ "." @@ -12472,8 +8117,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "node-libs-browser", - "url": "http://github.com/webpack/node-libs-browser", + "name": "is-regex", + "url": "https://github.com/ljharb/is-regex", "description": "", "pathes": [ "." @@ -12486,8 +8131,8 @@ "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "node-object-hash", - "url": "https://github.com/SkeLLLa/node-object-hash", + "name": "is-resolvable", + "url": "https://github.com/shinnn", "description": "", "pathes": [ "." @@ -12496,12 +8141,12 @@ }, { "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "node-pre-gyp", - "url": "Unknown", + "name": "is-retry-allowed", + "url": "github.com/floatdrop", "description": "", "pathes": [ "." @@ -12514,8 +8159,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "node-releases", - "url": "Unknown", + "name": "is-stream", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -12528,8 +8173,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "node-uuid", - "url": "https://github.com/broofa/node-uuid", + "name": "is-svg", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -12538,12 +8183,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "nopt", - "url": "http://blog.izs.me/", + "name": "is-svg", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -12552,11 +8197,11 @@ }, { "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "normalize-package-data", + "name": "is-symbol", "url": "Unknown", "description": "", "pathes": [ @@ -12570,8 +8215,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "normalize-path", - "url": "https://github.com/jonschlinkert/normalize-path", + "name": "is-typedarray", + "url": "https://github.com/hughsk/is-typedarray", "description": "", "pathes": [ "." @@ -12584,8 +8229,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "normalize-path", - "url": "https://github.com/jonschlinkert/normalize-path", + "name": "is-windows", + "url": "https://github.com/jonschlinkert/is-windows", "description": "", "pathes": [ "." @@ -12598,8 +8243,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "normalize-path", - "url": "https://github.com/jonschlinkert/normalize-path", + "name": "is-wsl", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -12612,8 +8257,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "normalize-range", - "url": "github.com/jamestalmage", + "name": "isarray", + "url": "https://github.com/juliangruber/isarray", "description": "", "pathes": [ "." @@ -12622,12 +8267,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "normalize-url", - "url": "sindresorhus.com", + "name": "isexe", + "url": "https://github.com/isaacs/isexe#readme", "description": "", "pathes": [ "." @@ -12640,8 +8285,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "normalize-url", - "url": "sindresorhus.com", + "name": "isobject", + "url": "https://github.com/jonschlinkert/isobject", "description": "", "pathes": [ "." @@ -12654,8 +8299,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "normalize-url", - "url": "sindresorhus.com", + "name": "isobject", + "url": "https://github.com/jonschlinkert/isobject", "description": "", "pathes": [ "." @@ -12668,8 +8313,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "normalize.css", - "url": "https://necolas.github.io/normalize.css", + "name": "isstream", + "url": "https://github.com/rvagg/isstream", "description": "", "pathes": [ "." @@ -12678,12 +8323,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "npm-bundled", - "url": "http://blog.izs.me/", + "name": "jimp", + "url": "Unknown", "description": "", "pathes": [ "." @@ -12692,12 +8337,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "npm-packlist", - "url": "https://www.npmjs.com/package/npm-packlist", + "name": "jpeg-js", + "url": "Unknown", "description": "", "pathes": [ "." @@ -12706,12 +8351,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "npm-run-path", - "url": "sindresorhus.com", + "name": "js-base64", + "url": "Unknown", "description": "", "pathes": [ "." @@ -12720,12 +8365,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "npmlog", - "url": "http://blog.izs.me/", + "name": "js-levenshtein", + "url": "Unknown", "description": "", "pathes": [ "." @@ -12734,12 +8379,12 @@ }, { "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "nth-check", - "url": "https://github.com/fb55/nth-check", + "name": "js-tokens", + "url": "Unknown", "description": "", "pathes": [ "." @@ -12752,8 +8397,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "num2fraction", - "url": "http://iyunlu.com/view", + "name": "js-yaml", + "url": "https://github.com/nodeca/js-yaml", "description": "", "pathes": [ "." @@ -12766,8 +8411,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "number-is-nan", - "url": "sindresorhus.com", + "name": "js-yaml", + "url": "https://github.com/nodeca/js-yaml", "description": "", "pathes": [ "." @@ -12780,8 +8425,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "nuxt", - "url": "Unknown", + "name": "js-yaml", + "url": "https://github.com/nodeca/js-yaml", "description": "", "pathes": [ "." @@ -12794,8 +8439,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "nuxtent", - "url": "https://github.com/nuxt-community/nuxtent-module#readme", + "name": "jsbn", + "url": "Unknown", "description": "", "pathes": [ "." @@ -12808,8 +8453,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "nwmatcher", - "url": "http://javascript.nwbox.com/NWMatcher/", + "name": "jsesc", + "url": "http://mths.be/jsesc", "description": "", "pathes": [ "." @@ -12818,12 +8463,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "nyc", - "url": "Unknown", + "name": "jsesc", + "url": "https://mths.be/jsesc", "description": "", "pathes": [ "." @@ -12832,11 +8477,12 @@ }, { "license": { - "name": "Apache*" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "oauth-sign", - "url": "http://www.futurealoof.com", + "name": "json-parse-better-errors", + "url": "Unknown", "description": "", "pathes": [ "." @@ -12845,12 +8491,11 @@ }, { "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "BSD*" }, "dependency": { - "name": "oauth-sign", - "url": "http://www.futurealoof.com", + "name": "json-schema", + "url": "Unknown", "description": "", "pathes": [ "." @@ -12863,8 +8508,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "object-assign", - "url": "sindresorhus.com", + "name": "json-schema-traverse", + "url": "https://github.com/epoberezkin/json-schema-traverse#readme", "description": "", "pathes": [ "." @@ -12877,8 +8522,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "object-copy", - "url": "https://github.com/jonschlinkert/object-copy", + "name": "json-schema-traverse", + "url": "https://github.com/epoberezkin/json-schema-traverse#readme", "description": "", "pathes": [ "." @@ -12887,12 +8532,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "object-hash", - "url": "https://github.com/puleos/object-hash", + "name": "json-stringify-safe", + "url": "https://github.com/isaacs/json-stringify-safe", "description": "", "pathes": [ "." @@ -12905,8 +8550,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "object-keys", - "url": "http://ljharb.codes", + "name": "json5", + "url": "http://json5.org/", "description": "", "pathes": [ "." @@ -12919,8 +8564,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "object-visit", - "url": "https://github.com/jonschlinkert/object-visit", + "name": "json5", + "url": "http://json5.org/", "description": "", "pathes": [ "." @@ -12933,8 +8578,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "object.getownpropertydescriptors", - "url": "Unknown", + "name": "json5", + "url": "http://json5.org/", "description": "", "pathes": [ "." @@ -12947,8 +8592,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "object.omit", - "url": "https://github.com/jonschlinkert/object.omit", + "name": "jsonfile", + "url": "Unknown", "description": "", "pathes": [ "." @@ -12961,8 +8606,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "object.pick", - "url": "https://github.com/jonschlinkert/object.pick", + "name": "jsonfile", + "url": "Unknown", "description": "", "pathes": [ "." @@ -12971,12 +8616,11 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Public Domain" }, "dependency": { - "name": "object.values", - "url": "Unknown", + "name": "jsonify", + "url": "http://crockford.com/", "description": "", "pathes": [ "." @@ -12989,7 +8633,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "on-finished", + "name": "jsprim", "url": "Unknown", "description": "", "pathes": [ @@ -13003,8 +8647,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "on-headers", - "url": "Unknown", + "name": "kind-of", + "url": "https://github.com/jonschlinkert/kind-of", "description": "", "pathes": [ "." @@ -13013,12 +8657,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "once", - "url": "http://blog.izs.me/", + "name": "kind-of", + "url": "https://github.com/jonschlinkert/kind-of", "description": "", "pathes": [ "." @@ -13031,8 +8675,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "onetime", - "url": "sindresorhus.com", + "name": "kind-of", + "url": "https://github.com/jonschlinkert/kind-of", "description": "", "pathes": [ "." @@ -13041,11 +8685,12 @@ }, { "license": { - "name": "(WTFPL OR MIT)" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "opener", - "url": "https://domenic.me/", + "name": "kind-of", + "url": "https://github.com/jonschlinkert/kind-of", "description": "", "pathes": [ "." @@ -13058,8 +8703,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "optimist", - "url": "http://substack.net", + "name": "last-call-webpack-plugin", + "url": "http://github.com/NMFR/last-call-webpack-plugin", "description": "", "pathes": [ "." @@ -13072,8 +8717,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "optimize-css-assets-webpack-plugin", - "url": "http://github.com/NMFR/optimize-css-assets-webpack-plugin", + "name": "launch-editor", + "url": "https://github.com/yyx990803/launch-editor#readme", "description": "", "pathes": [ "." @@ -13086,8 +8731,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "optionator", - "url": "https://github.com/gkz/optionator", + "name": "launch-editor-middleware", + "url": "https://github.com/yyx990803/launch-editor#readme", "description": "", "pathes": [ "." @@ -13100,7 +8745,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "os-browserify", + "name": "linkify-it", "url": "Unknown", "description": "", "pathes": [ @@ -13114,8 +8759,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "os-homedir", - "url": "sindresorhus.com", + "name": "load-bmfont", + "url": "https://github.com/Jam3/load-bmfont", "description": "", "pathes": [ "." @@ -13128,8 +8773,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "os-locale", - "url": "sindresorhus.com", + "name": "loader-runner", + "url": "https://github.com/webpack/loader-runner#readme", "description": "", "pathes": [ "." @@ -13142,8 +8787,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "os-locale", - "url": "sindresorhus.com", + "name": "loader-utils", + "url": "Unknown", "description": "", "pathes": [ "." @@ -13156,8 +8801,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "os-tmpdir", - "url": "sindresorhus.com", + "name": "loader-utils", + "url": "Unknown", "description": "", "pathes": [ "." @@ -13166,12 +8811,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "osenv", - "url": "http://blog.izs.me/", + "name": "locate-path", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -13184,8 +8829,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "p-finally", - "url": "sindresorhus.com", + "name": "lodash", + "url": "https://lodash.com/", "description": "", "pathes": [ "." @@ -13198,8 +8843,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "p-limit", - "url": "sindresorhus.com", + "name": "lodash", + "url": "https://lodash.com/", "description": "", "pathes": [ "." @@ -13212,8 +8857,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "p-limit", - "url": "sindresorhus.com", + "name": "lodash._reinterpolate", + "url": "https://lodash.com/", "description": "", "pathes": [ "." @@ -13226,8 +8871,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "p-locate", - "url": "sindresorhus.com", + "name": "lodash.isplainobject", + "url": "https://lodash.com/", "description": "", "pathes": [ "." @@ -13240,8 +8885,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "p-locate", - "url": "sindresorhus.com", + "name": "lodash.kebabcase", + "url": "https://lodash.com/", "description": "", "pathes": [ "." @@ -13254,8 +8899,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "p-try", - "url": "sindresorhus.com", + "name": "lodash.memoize", + "url": "https://lodash.com/", "description": "", "pathes": [ "." @@ -13268,8 +8913,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "p-try", - "url": "sindresorhus.com", + "name": "lodash.merge", + "url": "https://lodash.com/", "description": "", "pathes": [ "." @@ -13278,11 +8923,12 @@ }, { "license": { - "name": "(MIT AND Zlib)" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "pako", - "url": "https://github.com/nodeca/pako", + "name": "lodash.template", + "url": "https://lodash.com/", "description": "", "pathes": [ "." @@ -13295,8 +8941,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "parallel-transform", - "url": "Unknown", + "name": "lodash.templatesettings", + "url": "https://lodash.com/", "description": "", "pathes": [ "." @@ -13309,8 +8955,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "param-case", - "url": "https://github.com/blakeembrey/param-case", + "name": "lodash.uniq", + "url": "https://lodash.com/", "description": "", "pathes": [ "." @@ -13319,12 +8965,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "parse-asn1", - "url": "Unknown", + "name": "lodash.uniqueid", + "url": "https://lodash.com/", "description": "", "pathes": [ "." @@ -13337,8 +8983,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "parse-bmfont-ascii", - "url": "https://github.com/mattdesl/parse-bmfont-ascii", + "name": "loose-envify", + "url": "https://github.com/zertosh/loose-envify", "description": "", "pathes": [ "." @@ -13351,8 +8997,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "parse-bmfont-binary", - "url": "https://github.com/Jam3/parse-bmfont-binary", + "name": "lower-case", + "url": "https://github.com/blakeembrey/lower-case", "description": "", "pathes": [ "." @@ -13361,12 +9007,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "parse-bmfont-xml", - "url": "https://github.com/mattdesl/parse-bmfont-xml", + "name": "lru-cache", + "url": "Unknown", "description": "", "pathes": [ "." @@ -13375,12 +9021,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "parse-glob", - "url": "https://github.com/jonschlinkert/parse-glob", + "name": "lru-cache", + "url": "Unknown", "description": "", "pathes": [ "." @@ -13389,12 +9035,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "parse-headers", - "url": "https://github.com/kesla/parse-headers", + "name": "lru-cache", + "url": "Unknown", "description": "", "pathes": [ "." @@ -13407,7 +9053,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "parse-json", + "name": "make-dir", "url": "sindresorhus.com", "description": "", "pathes": [ @@ -13421,7 +9067,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "parse-json", + "name": "make-dir", "url": "sindresorhus.com", "description": "", "pathes": [ @@ -13435,8 +9081,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "parse5", - "url": "https://github.com/inikulin/parse5", + "name": "mamacro", + "url": "Unknown", "description": "", "pathes": [ "." @@ -13449,8 +9095,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "parseurl", - "url": "Unknown", + "name": "map-cache", + "url": "https://github.com/jonschlinkert/map-cache", "description": "", "pathes": [ "." @@ -13463,8 +9109,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "pascalcase", - "url": "https://github.com/jonschlinkert/pascalcase", + "name": "map-visit", + "url": "https://github.com/jonschlinkert/map-visit", "description": "", "pathes": [ "." @@ -13477,8 +9123,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "path-browserify", - "url": "https://github.com/substack/path-browserify", + "name": "markdown-it", + "url": "Unknown", "description": "", "pathes": [ "." @@ -13487,12 +9133,11 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Unlicense" }, "dependency": { - "name": "path-dirname", - "url": "Unknown", + "name": "markdown-it-anchor", + "url": "https://github.com/valeriangalliat/markdown-it-anchor", "description": "", "pathes": [ "." @@ -13505,8 +9150,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "path-exists", - "url": "sindresorhus.com", + "name": "math-expression-evaluator", + "url": "https://github.com/redhivesoftware/math-expression-evaluator#readme", "description": "", "pathes": [ "." @@ -13519,8 +9164,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "path-exists", - "url": "sindresorhus.com", + "name": "math-random", + "url": "Unknown", "description": "", "pathes": [ "." @@ -13533,8 +9178,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "path-is-absolute", - "url": "sindresorhus.com", + "name": "md5.js", + "url": "https://github.com/crypto-browserify/md5.js", "description": "", "pathes": [ "." @@ -13543,11 +9188,12 @@ }, { "license": { - "name": "(WTFPL OR MIT)" + "name": "Mozilla Public License 2.0", + "url": "https://www.mozilla.org/media/MPL/2.0/index.815ca599c9df.txt" }, "dependency": { - "name": "path-is-inside", - "url": "https://domenic.me", + "name": "mdn-data", + "url": "https://developer.mozilla.org/", "description": "", "pathes": [ "." @@ -13560,8 +9206,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "path-key", - "url": "sindresorhus.com", + "name": "mdurl", + "url": "Unknown", "description": "", "pathes": [ "." @@ -13574,8 +9220,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "path-parse", - "url": "https://github.com/jbgutierrez/path-parse#readme", + "name": "media-typer", + "url": "Unknown", "description": "", "pathes": [ "." @@ -13588,8 +9234,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "path-to-regexp", - "url": "Unknown", + "name": "memory-fs", + "url": "https://github.com/webpack/memory-fs", "description": "", "pathes": [ "." @@ -13602,8 +9248,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "path-to-regexp", - "url": "Unknown", + "name": "merge-descriptors", + "url": "http://jongleberry.com", "description": "", "pathes": [ "." @@ -13616,8 +9262,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "path-type", - "url": "sindresorhus.com", + "name": "merge-source-map", + "url": "Unknown", "description": "", "pathes": [ "." @@ -13630,8 +9276,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "path-type", - "url": "sindresorhus.com", + "name": "methods", + "url": "Unknown", "description": "", "pathes": [ "." @@ -13644,8 +9290,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "pathval", - "url": "https://github.com/chaijs/pathval", + "name": "micromatch", + "url": "https://github.com/jonschlinkert/micromatch", "description": "", "pathes": [ "." @@ -13658,8 +9304,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "pbkdf2", - "url": "https://github.com/crypto-browserify/pbkdf2", + "name": "micromatch", + "url": "https://github.com/micromatch/micromatch", "description": "", "pathes": [ "." @@ -13672,8 +9318,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "performance-now", - "url": "https://github.com/braveg1rl/performance-now", + "name": "miller-rabin", + "url": "https://github.com/indutny/miller-rabin", "description": "", "pathes": [ "." @@ -13686,8 +9332,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "picomatch", - "url": "https://github.com/micromatch/picomatch", + "name": "mime", + "url": "http://github.com/broofa", "description": "", "pathes": [ "." @@ -13700,8 +9346,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "pify", - "url": "sindresorhus.com", + "name": "mime", + "url": "http://github.com/broofa", "description": "", "pathes": [ "." @@ -13714,8 +9360,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "pify", - "url": "sindresorhus.com", + "name": "mime-db", + "url": "Unknown", "description": "", "pathes": [ "." @@ -13728,8 +9374,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "pify", - "url": "sindresorhus.com", + "name": "mime-db", + "url": "Unknown", "description": "", "pathes": [ "." @@ -13742,8 +9388,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "pinkie", - "url": "github.com/floatdrop", + "name": "mime-types", + "url": "Unknown", "description": "", "pathes": [ "." @@ -13756,8 +9402,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "pinkie-promise", - "url": "github.com/floatdrop", + "name": "mime-types", + "url": "Unknown", "description": "", "pathes": [ "." @@ -13766,12 +9412,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "pixelmatch", - "url": "https://github.com/mapbox/pixelmatch#readme", + "name": "min-document", + "url": "https://github.com/Raynos/min-document", "description": "", "pathes": [ "." @@ -13780,12 +9426,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "pkg-dir", - "url": "sindresorhus.com", + "name": "minimalistic-assert", + "url": "https://github.com/calvinmetcalf/minimalistic-assert", "description": "", "pathes": [ "." @@ -13798,8 +9444,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "pkg-dir", - "url": "sindresorhus.com", + "name": "minimalistic-crypto-utils", + "url": "https://github.com/indutny/minimalistic-crypto-utils#readme", "description": "", "pathes": [ "." @@ -13808,12 +9454,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "pluralize", - "url": "http://blakeembrey.me", + "name": "minimatch", + "url": "http://blog.izs.me", "description": "", "pathes": [ "." @@ -13826,8 +9472,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "pn", - "url": "Unknown", + "name": "minimist", + "url": "https://github.com/substack/minimist", "description": "", "pathes": [ "." @@ -13840,8 +9486,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "pngjs", - "url": "https://github.com/lukeapage/pngjs", + "name": "minimist", + "url": "https://github.com/substack/minimist", "description": "", "pathes": [ "." @@ -13850,12 +9496,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "popper.js", - "url": "https://popper.js.org/", + "name": "minipass", + "url": "http://blog.izs.me/", "description": "", "pathes": [ "." @@ -13868,8 +9514,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "posix-character-classes", - "url": "https://github.com/jonschlinkert/posix-character-classes", + "name": "minizlib", + "url": "http://blog.izs.me/", "description": "", "pathes": [ "." @@ -13878,12 +9524,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "postcss", - "url": "http://postcss.org/", + "name": "mississippi", + "url": "https://github.com/maxogden/mississippi#readme", "description": "", "pathes": [ "." @@ -13896,8 +9542,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss", - "url": "https://postcss.org/", + "name": "mixin-deep", + "url": "https://github.com/jonschlinkert/mixin-deep", "description": "", "pathes": [ "." @@ -13910,8 +9556,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-attribute-case-insensitive", - "url": "https://github.com/Semigradsky/postcss-attribute-case-insensitive#readme", + "name": "mkdirp", + "url": "http://substack.net", "description": "", "pathes": [ "." @@ -13924,8 +9570,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-calc", - "url": "Unknown", + "name": "moment", + "url": "http://momentjs.com/", "description": "", "pathes": [ "." @@ -13934,12 +9580,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "postcss-calc", - "url": "Unknown", + "name": "move-concurrently", + "url": "https://www.npmjs.com/package/move-concurrently", "description": "", "pathes": [ "." @@ -13948,11 +9594,12 @@ }, { "license": { - "name": "CC0-1.0" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-color-functional-notation", - "url": "https://github.com/jonathantneal/postcss-color-functional-notation#readme", + "name": "ms", + "url": "Unknown", "description": "", "pathes": [ "." @@ -13961,12 +9608,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-color-gray", - "url": "https://github.com/postcss/postcss-color-gray#readme", + "name": "ms", + "url": "Unknown", "description": "", "pathes": [ "." @@ -13979,8 +9626,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-color-hex-alpha", - "url": "https://github.com/postcss/postcss-color-hex-alpha#readme", + "name": "mustache", + "url": "https://github.com/janl/mustache.js", "description": "", "pathes": [ "." @@ -13989,11 +9636,12 @@ }, { "license": { - "name": "CC0-1.0" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-color-mod-function", - "url": "https://github.com/jonathantneal/postcss-color-mod-function#readme", + "name": "nan", + "url": "Unknown", "description": "", "pathes": [ "." @@ -14006,8 +9654,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-color-rebeccapurple", - "url": "Unknown", + "name": "nanomatch", + "url": "https://github.com/micromatch/nanomatch", "description": "", "pathes": [ "." @@ -14020,8 +9668,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-colormin", - "url": "https://github.com/ben-eb/postcss-colormin", + "name": "needle", + "url": "Unknown", "description": "", "pathes": [ "." @@ -14034,8 +9682,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-colormin", - "url": "https://github.com/cssnano/cssnano", + "name": "negotiator", + "url": "Unknown", "description": "", "pathes": [ "." @@ -14048,8 +9696,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-convert-values", - "url": "https://github.com/ben-eb/postcss-convert-values", + "name": "neo-async", + "url": "https://github.com/suguru03/neo-async", "description": "", "pathes": [ "." @@ -14062,8 +9710,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-convert-values", - "url": "https://github.com/cssnano/cssnano", + "name": "nice-try", + "url": "https://github.com/electerious/nice-try", "description": "", "pathes": [ "." @@ -14076,8 +9724,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-custom-media", - "url": "https://github.com/postcss/postcss-custom-media#readme", + "name": "no-case", + "url": "https://github.com/blakeembrey/no-case", "description": "", "pathes": [ "." @@ -14090,8 +9738,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-custom-properties", - "url": "https://github.com/postcss/postcss-custom-properties#readme", + "name": "node-fetch", + "url": "https://github.com/bitinn/node-fetch", "description": "", "pathes": [ "." @@ -14104,8 +9752,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-custom-selectors", - "url": "https://github.com/postcss/postcss-custom-selectors#readme", + "name": "node-libs-browser", + "url": "http://github.com/webpack/node-libs-browser", "description": "", "pathes": [ "." @@ -14114,11 +9762,12 @@ }, { "license": { - "name": "CC0-1.0" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "postcss-dir-pseudo-class", - "url": "https://github.com/jonathantneal/postcss-dir-pseudo-class#readme", + "name": "node-object-hash", + "url": "https://github.com/SkeLLLa/node-object-hash", "description": "", "pathes": [ "." @@ -14127,12 +9776,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "postcss-discard-comments", - "url": "https://github.com/ben-eb/postcss-discard-comments", + "name": "node-pre-gyp", + "url": "Unknown", "description": "", "pathes": [ "." @@ -14145,8 +9794,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-discard-comments", - "url": "https://github.com/cssnano/cssnano", + "name": "node-releases", + "url": "Unknown", "description": "", "pathes": [ "." @@ -14155,12 +9804,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "postcss-discard-duplicates", - "url": "https://github.com/ben-eb/postcss-discard-duplicates", + "name": "nopt", + "url": "http://blog.izs.me/", "description": "", "pathes": [ "." @@ -14173,8 +9822,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-discard-duplicates", - "url": "https://github.com/cssnano/cssnano", + "name": "normalize-path", + "url": "https://github.com/jonschlinkert/normalize-path", "description": "", "pathes": [ "." @@ -14187,8 +9836,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-discard-empty", - "url": "https://github.com/ben-eb/postcss-discard-empty", + "name": "normalize-path", + "url": "https://github.com/jonschlinkert/normalize-path", "description": "", "pathes": [ "." @@ -14201,8 +9850,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-discard-empty", - "url": "https://github.com/cssnano/cssnano", + "name": "normalize-range", + "url": "github.com/jamestalmage", "description": "", "pathes": [ "." @@ -14215,8 +9864,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-discard-overridden", - "url": "https://github.com/Justineo/postcss-discard-overridden", + "name": "normalize-url", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -14229,8 +9878,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-discard-overridden", - "url": "https://github.com/cssnano/cssnano", + "name": "normalize-url", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -14243,8 +9892,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-discard-unused", - "url": "https://github.com/ben-eb/postcss-discard-unused", + "name": "normalize-url", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -14253,11 +9902,12 @@ }, { "license": { - "name": "CC0-1.0" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-double-position-gradients", - "url": "https://github.com/jonathantneal/postcss-double-position-gradients#readme", + "name": "normalize.css", + "url": "https://necolas.github.io/normalize.css", "description": "", "pathes": [ "." @@ -14266,11 +9916,12 @@ }, { "license": { - "name": "CC0-1.0" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "postcss-env-function", - "url": "https://github.com/jonathantneal/postcss-env-function#readme", + "name": "npm-bundled", + "url": "http://blog.izs.me/", "description": "", "pathes": [ "." @@ -14279,12 +9930,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "postcss-filter-plugins", - "url": "https://github.com/postcss/postcss-filter-plugins", + "name": "npm-packlist", + "url": "https://www.npmjs.com/package/npm-packlist", "description": "", "pathes": [ "." @@ -14293,11 +9944,12 @@ }, { "license": { - "name": "CC0-1.0" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-focus-visible", - "url": "https://github.com/jonathantneal/postcss-focus-visible#readme", + "name": "npm-run-path", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -14306,11 +9958,12 @@ }, { "license": { - "name": "CC0-1.0" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "postcss-focus-within", - "url": "https://github.com/jonathantneal/postcss-focus-within#readme", + "name": "npmlog", + "url": "http://blog.izs.me/", "description": "", "pathes": [ "." @@ -14319,12 +9972,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "postcss-font-variant", - "url": "Unknown", + "name": "nth-check", + "url": "https://github.com/fb55/nth-check", "description": "", "pathes": [ "." @@ -14333,11 +9986,12 @@ }, { "license": { - "name": "CC0-1.0" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-gap-properties", - "url": "https://github.com/jonathantneal/postcss-gap-properties#readme", + "name": "num2fraction", + "url": "http://iyunlu.com/view", "description": "", "pathes": [ "." @@ -14346,11 +10000,12 @@ }, { "license": { - "name": "CC0-1.0" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-image-set-function", - "url": "https://github.com/jonathantneal/postcss-image-set-function#readme", + "name": "number-is-nan", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -14363,7 +10018,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-import", + "name": "nuxt", "url": "Unknown", "description": "", "pathes": [ @@ -14377,8 +10032,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-import-resolver", - "url": "Unknown", + "name": "nuxtent", + "url": "https://github.com/nuxt-community/nuxtent-module#readme", "description": "", "pathes": [ "." @@ -14387,12 +10042,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, "dependency": { - "name": "postcss-initial", - "url": "Unknown", + "name": "oauth-sign", + "url": "http://www.futurealoof.com", "description": "", "pathes": [ "." @@ -14401,11 +10056,12 @@ }, { "license": { - "name": "CC0-1.0" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-lab-function", - "url": "https://github.com/jonathantneal/postcss-lab-function#readme", + "name": "object-assign", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -14418,8 +10074,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-load-config", - "url": "https://github.com/michael-ciniawsky/postcss-load-config#readme", + "name": "object-copy", + "url": "https://github.com/jonschlinkert/object-copy", "description": "", "pathes": [ "." @@ -14432,8 +10088,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-loader", - "url": "https://github.com/postcss/postcss-loader#readme", + "name": "object-keys", + "url": "http://ljharb.codes", "description": "", "pathes": [ "." @@ -14442,11 +10098,12 @@ }, { "license": { - "name": "CC0-1.0" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-logical", - "url": "https://github.com/jonathantneal/postcss-logical#readme", + "name": "object-visit", + "url": "https://github.com/jonschlinkert/object-visit", "description": "", "pathes": [ "." @@ -14459,7 +10116,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-media-minmax", + "name": "object.getownpropertydescriptors", "url": "Unknown", "description": "", "pathes": [ @@ -14473,8 +10130,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-merge-idents", - "url": "https://github.com/ben-eb/postcss-merge-idents", + "name": "object.omit", + "url": "https://github.com/jonschlinkert/object.omit", "description": "", "pathes": [ "." @@ -14487,8 +10144,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-merge-longhand", - "url": "https://github.com/ben-eb/postcss-merge-longhand", + "name": "object.pick", + "url": "https://github.com/jonschlinkert/object.pick", "description": "", "pathes": [ "." @@ -14501,8 +10158,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-merge-longhand", - "url": "https://github.com/cssnano/cssnano", + "name": "object.values", + "url": "Unknown", "description": "", "pathes": [ "." @@ -14515,8 +10172,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-merge-rules", - "url": "https://github.com/ben-eb/postcss-merge-rules", + "name": "on-finished", + "url": "Unknown", "description": "", "pathes": [ "." @@ -14529,8 +10186,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-merge-rules", - "url": "https://github.com/cssnano/cssnano", + "name": "on-headers", + "url": "Unknown", "description": "", "pathes": [ "." @@ -14539,12 +10196,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "postcss-message-helpers", - "url": "Unknown", + "name": "once", + "url": "http://blog.izs.me/", "description": "", "pathes": [ "." @@ -14553,12 +10210,11 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "(WTFPL OR MIT)" }, "dependency": { - "name": "postcss-minify-font-values", - "url": "https://github.com/TrySound/postcss-minify-font-values", + "name": "opener", + "url": "https://domenic.me/", "description": "", "pathes": [ "." @@ -14571,8 +10227,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-minify-font-values", - "url": "https://github.com/cssnano/cssnano", + "name": "optimize-css-assets-webpack-plugin", + "url": "http://github.com/NMFR/optimize-css-assets-webpack-plugin", "description": "", "pathes": [ "." @@ -14585,8 +10241,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-minify-gradients", - "url": "https://github.com/ben-eb/postcss-minify-gradients", + "name": "os-browserify", + "url": "Unknown", "description": "", "pathes": [ "." @@ -14599,8 +10255,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-minify-gradients", - "url": "https://github.com/cssnano/cssnano", + "name": "os-homedir", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -14613,8 +10269,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-minify-params", - "url": "https://github.com/ben-eb/postcss-minify-params", + "name": "os-tmpdir", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -14623,12 +10279,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, - "dependency": { - "name": "postcss-minify-params", - "url": "https://github.com/cssnano/cssnano", + "dependency": { + "name": "osenv", + "url": "http://blog.izs.me/", "description": "", "pathes": [ "." @@ -14641,8 +10297,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-minify-selectors", - "url": "https://github.com/ben-eb/postcss-minify-selectors", + "name": "p-finally", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -14655,8 +10311,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-minify-selectors", - "url": "https://github.com/cssnano/cssnano", + "name": "p-limit", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -14665,12 +10321,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-modules-extract-imports", - "url": "https://github.com/css-modules/postcss-modules-extract-imports", + "name": "p-locate", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -14683,8 +10339,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-modules-local-by-default", - "url": "Unknown", + "name": "p-try", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -14693,12 +10349,11 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "(MIT AND Zlib)" }, "dependency": { - "name": "postcss-modules-scope", - "url": "https://github.com/css-modules/postcss-modules-scope", + "name": "pako", + "url": "https://github.com/nodeca/pako", "description": "", "pathes": [ "." @@ -14707,12 +10362,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-modules-values", - "url": "https://github.com/css-modules/postcss-modules-values#readme", + "name": "parallel-transform", + "url": "Unknown", "description": "", "pathes": [ "." @@ -14721,11 +10376,12 @@ }, { "license": { - "name": "CC0-1.0" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-nesting", - "url": "https://github.com/jonathantneal/postcss-nesting#readme", + "name": "param-case", + "url": "https://github.com/blakeembrey/param-case", "description": "", "pathes": [ "." @@ -14734,12 +10390,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "postcss-normalize-charset", - "url": "https://github.com/ben-eb/postcss-charset", + "name": "parse-asn1", + "url": "Unknown", "description": "", "pathes": [ "." @@ -14752,8 +10408,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-normalize-charset", - "url": "https://github.com/cssnano/cssnano", + "name": "parse-bmfont-ascii", + "url": "https://github.com/mattdesl/parse-bmfont-ascii", "description": "", "pathes": [ "." @@ -14766,8 +10422,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-normalize-display-values", - "url": "https://github.com/cssnano/cssnano", + "name": "parse-bmfont-binary", + "url": "https://github.com/Jam3/parse-bmfont-binary", "description": "", "pathes": [ "." @@ -14780,8 +10436,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-normalize-positions", - "url": "https://github.com/cssnano/cssnano", + "name": "parse-bmfont-xml", + "url": "https://github.com/mattdesl/parse-bmfont-xml", "description": "", "pathes": [ "." @@ -14794,8 +10450,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-normalize-repeat-style", - "url": "https://github.com/cssnano/cssnano", + "name": "parse-glob", + "url": "https://github.com/jonschlinkert/parse-glob", "description": "", "pathes": [ "." @@ -14808,8 +10464,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-normalize-string", - "url": "https://github.com/cssnano/cssnano", + "name": "parse-headers", + "url": "https://github.com/kesla/parse-headers", "description": "", "pathes": [ "." @@ -14822,8 +10478,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-normalize-timing-functions", - "url": "https://github.com/cssnano/cssnano", + "name": "parse-json", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -14836,8 +10492,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-normalize-unicode", - "url": "https://github.com/cssnano/cssnano", + "name": "parseurl", + "url": "Unknown", "description": "", "pathes": [ "." @@ -14850,8 +10506,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-normalize-url", - "url": "https://github.com/ben-eb/postcss-normalize-url", + "name": "pascalcase", + "url": "https://github.com/jonschlinkert/pascalcase", "description": "", "pathes": [ "." @@ -14864,8 +10520,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-normalize-url", - "url": "https://github.com/cssnano/cssnano", + "name": "path-browserify", + "url": "https://github.com/substack/path-browserify", "description": "", "pathes": [ "." @@ -14878,8 +10534,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-normalize-whitespace", - "url": "https://github.com/cssnano/cssnano", + "name": "path-dirname", + "url": "Unknown", "description": "", "pathes": [ "." @@ -14892,8 +10548,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-ordered-values", - "url": "https://github.com/ben-eb/postcss-ordered-values", + "name": "path-exists", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -14906,8 +10562,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-ordered-values", - "url": "https://github.com/cssnano/cssnano", + "name": "path-is-absolute", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -14916,11 +10572,12 @@ }, { "license": { - "name": "CC0-1.0" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-overflow-shorthand", - "url": "https://github.com/jonathantneal/postcss-overflow-shorthand#readme", + "name": "path-key", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -14933,8 +10590,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-page-break", - "url": "https://github.com/shrpne/postcss-page-break", + "name": "path-parse", + "url": "https://github.com/jbgutierrez/path-parse#readme", "description": "", "pathes": [ "." @@ -14943,11 +10600,12 @@ }, { "license": { - "name": "CC0-1.0" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-place", - "url": "https://github.com/jonathantneal/postcss-place#readme", + "name": "path-to-regexp", + "url": "Unknown", "description": "", "pathes": [ "." @@ -14956,11 +10614,12 @@ }, { "license": { - "name": "CC0-1.0" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-preset-env", - "url": "https://github.com/csstools/postcss-preset-env#readme", + "name": "path-to-regexp", + "url": "Unknown", "description": "", "pathes": [ "." @@ -14969,11 +10628,12 @@ }, { "license": { - "name": "CC0-1.0" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-pseudo-class-any-link", - "url": "https://github.com/jonathantneal/postcss-pseudo-class-any-link#readme", + "name": "pbkdf2", + "url": "https://github.com/crypto-browserify/pbkdf2", "description": "", "pathes": [ "." @@ -14986,8 +10646,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-reduce-idents", - "url": "https://github.com/ben-eb/postcss-reduce-idents", + "name": "performance-now", + "url": "https://github.com/braveg1rl/performance-now", "description": "", "pathes": [ "." @@ -15000,8 +10660,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-reduce-initial", - "url": "https://github.com/ben-eb/postcss-reduce-initial", + "name": "picomatch", + "url": "https://github.com/micromatch/picomatch", "description": "", "pathes": [ "." @@ -15014,8 +10674,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-reduce-initial", - "url": "https://github.com/cssnano/cssnano", + "name": "pify", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -15028,8 +10688,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-reduce-transforms", - "url": "https://github.com/ben-eb/postcss-reduce-transforms", + "name": "pify", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -15042,8 +10702,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-reduce-transforms", - "url": "https://github.com/cssnano/cssnano", + "name": "pify", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -15052,12 +10712,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "postcss-replace-overflow-wrap", - "url": "https://github.com/MattDiMu/postcss-replace-overflow-wrap", + "name": "pixelmatch", + "url": "https://github.com/mapbox/pixelmatch#readme", "description": "", "pathes": [ "." @@ -15070,8 +10730,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-selector-matches", - "url": "Unknown", + "name": "pkg-dir", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -15084,8 +10744,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-selector-not", - "url": "Unknown", + "name": "pngjs", + "url": "https://github.com/lukeapage/pngjs", "description": "", "pathes": [ "." @@ -15098,8 +10758,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-selector-parser", - "url": "https://github.com/postcss/postcss-selector-parser", + "name": "popper.js", + "url": "https://popper.js.org/", "description": "", "pathes": [ "." @@ -15112,8 +10772,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-selector-parser", - "url": "https://github.com/postcss/postcss-selector-parser", + "name": "posix-character-classes", + "url": "https://github.com/jonschlinkert/posix-character-classes", "description": "", "pathes": [ "." @@ -15126,8 +10786,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-selector-parser", - "url": "https://github.com/postcss/postcss-selector-parser", + "name": "postcss", + "url": "http://postcss.org/", "description": "", "pathes": [ "." @@ -15140,8 +10800,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-selector-parser", - "url": "https://github.com/postcss/postcss-selector-parser", + "name": "postcss", + "url": "https://postcss.org/", "description": "", "pathes": [ "." @@ -15154,8 +10814,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-svgo", - "url": "https://github.com/ben-eb/postcss-svgo", + "name": "postcss-attribute-case-insensitive", + "url": "https://github.com/Semigradsky/postcss-attribute-case-insensitive#readme", "description": "", "pathes": [ "." @@ -15168,8 +10828,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-svgo", - "url": "https://github.com/cssnano/cssnano", + "name": "postcss-calc", + "url": "Unknown", "description": "", "pathes": [ "." @@ -15182,8 +10842,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-unique-selectors", - "url": "https://github.com/ben-eb/postcss-unique-selectors", + "name": "postcss-calc", + "url": "Unknown", "description": "", "pathes": [ "." @@ -15192,12 +10852,11 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "CC0-1.0" }, "dependency": { - "name": "postcss-unique-selectors", - "url": "https://github.com/cssnano/cssnano", + "name": "postcss-color-functional-notation", + "url": "https://github.com/jonathantneal/postcss-color-functional-notation#readme", "description": "", "pathes": [ "." @@ -15206,12 +10865,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "postcss-url", - "url": "Unknown", + "name": "postcss-color-gray", + "url": "https://github.com/postcss/postcss-color-gray#readme", "description": "", "pathes": [ "." @@ -15224,8 +10883,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-value-parser", - "url": "https://github.com/TrySound/postcss-value-parser", + "name": "postcss-color-hex-alpha", + "url": "https://github.com/postcss/postcss-color-hex-alpha#readme", "description": "", "pathes": [ "." @@ -15234,12 +10893,11 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "CC0-1.0" }, "dependency": { - "name": "postcss-values-parser", - "url": "shellscape", + "name": "postcss-color-mod-function", + "url": "https://github.com/jonathantneal/postcss-color-mod-function#readme", "description": "", "pathes": [ "." @@ -15252,8 +10910,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-zindex", - "url": "https://github.com/ben-eb/postcss-zindex", + "name": "postcss-color-rebeccapurple", + "url": "Unknown", "description": "", "pathes": [ "." @@ -15266,8 +10924,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "prelude-ls", - "url": "http://preludels.com/", + "name": "postcss-colormin", + "url": "https://github.com/ben-eb/postcss-colormin", "description": "", "pathes": [ "." @@ -15280,8 +10938,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "prepend-http", - "url": "sindresorhus.com", + "name": "postcss-colormin", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -15294,8 +10952,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "prepend-http", - "url": "sindresorhus.com", + "name": "postcss-convert-values", + "url": "https://github.com/ben-eb/postcss-convert-values", "description": "", "pathes": [ "." @@ -15308,8 +10966,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "preserve", - "url": "https://github.com/jonschlinkert/preserve", + "name": "postcss-convert-values", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -15322,8 +10980,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "prettier", - "url": "https://prettier.io/", + "name": "postcss-custom-media", + "url": "https://github.com/postcss/postcss-custom-media#readme", "description": "", "pathes": [ "." @@ -15336,8 +10994,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "pretty-bytes", - "url": "sindresorhus.com", + "name": "postcss-custom-properties", + "url": "https://github.com/postcss/postcss-custom-properties#readme", "description": "", "pathes": [ "." @@ -15350,8 +11008,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "pretty-error", - "url": "Unknown", + "name": "postcss-custom-selectors", + "url": "https://github.com/postcss/postcss-custom-selectors#readme", "description": "", "pathes": [ "." @@ -15360,12 +11018,11 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "CC0-1.0" }, "dependency": { - "name": "pretty-time", - "url": "https://github.com/jonschlinkert/pretty-time", + "name": "postcss-dir-pseudo-class", + "url": "https://github.com/jonathantneal/postcss-dir-pseudo-class#readme", "description": "", "pathes": [ "." @@ -15378,8 +11035,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "private", - "url": "http://github.com/benjamn/private", + "name": "postcss-discard-comments", + "url": "https://github.com/ben-eb/postcss-discard-comments", "description": "", "pathes": [ "." @@ -15392,8 +11049,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "process", - "url": "Unknown", + "name": "postcss-discard-comments", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -15406,8 +11063,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "process", - "url": "Unknown", + "name": "postcss-discard-duplicates", + "url": "https://github.com/ben-eb/postcss-discard-duplicates", "description": "", "pathes": [ "." @@ -15420,8 +11077,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "process-nextick-args", - "url": "https://github.com/calvinmetcalf/process-nextick-args", + "name": "postcss-discard-duplicates", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -15434,8 +11091,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "progress", - "url": "Unknown", + "name": "postcss-discard-empty", + "url": "https://github.com/ben-eb/postcss-discard-empty", "description": "", "pathes": [ "." @@ -15444,12 +11101,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "promise-inflight", - "url": "https://github.com/iarna/promise-inflight#readme", + "name": "postcss-discard-empty", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -15462,8 +11119,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "proper-lockfile", - "url": "https://github.com/moxystudio/node-proper-lockfile", + "name": "postcss-discard-overridden", + "url": "https://github.com/Justineo/postcss-discard-overridden", "description": "", "pathes": [ "." @@ -15476,8 +11133,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "proxy-addr", - "url": "Unknown", + "name": "postcss-discard-overridden", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -15490,8 +11147,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "prr", - "url": "https://github.com/rvagg/prr", + "name": "postcss-discard-unused", + "url": "https://github.com/ben-eb/postcss-discard-unused", "description": "", "pathes": [ "." @@ -15500,12 +11157,11 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "CC0-1.0" }, "dependency": { - "name": "pseudomap", - "url": "https://github.com/isaacs/pseudomap#readme", + "name": "postcss-double-position-gradients", + "url": "https://github.com/jonathantneal/postcss-double-position-gradients#readme", "description": "", "pathes": [ "." @@ -15514,12 +11170,11 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "CC0-1.0" }, "dependency": { - "name": "public-encrypt", - "url": "https://github.com/crypto-browserify/publicEncrypt", + "name": "postcss-env-function", + "url": "https://github.com/jonathantneal/postcss-env-function#readme", "description": "", "pathes": [ "." @@ -15532,8 +11187,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "pump", - "url": "Unknown", + "name": "postcss-filter-plugins", + "url": "https://github.com/postcss/postcss-filter-plugins", "description": "", "pathes": [ "." @@ -15542,12 +11197,11 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "CC0-1.0" }, "dependency": { - "name": "pump", - "url": "Unknown", + "name": "postcss-focus-visible", + "url": "https://github.com/jonathantneal/postcss-focus-visible#readme", "description": "", "pathes": [ "." @@ -15556,12 +11210,11 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "CC0-1.0" }, "dependency": { - "name": "pumpify", - "url": "https://github.com/mafintosh/pumpify", + "name": "postcss-focus-within", + "url": "https://github.com/jonathantneal/postcss-focus-within#readme", "description": "", "pathes": [ "." @@ -15574,8 +11227,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "punycode", - "url": "https://mths.be/punycode", + "name": "postcss-font-variant", + "url": "Unknown", "description": "", "pathes": [ "." @@ -15584,12 +11237,11 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "CC0-1.0" }, "dependency": { - "name": "punycode", - "url": "https://mths.be/punycode", + "name": "postcss-gap-properties", + "url": "https://github.com/jonathantneal/postcss-gap-properties#readme", "description": "", "pathes": [ "." @@ -15598,12 +11250,11 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "CC0-1.0" }, "dependency": { - "name": "punycode", - "url": "https://mths.be/punycode", + "name": "postcss-image-set-function", + "url": "https://github.com/jonathantneal/postcss-image-set-function#readme", "description": "", "pathes": [ "." @@ -15616,8 +11267,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "q", - "url": "https://github.com/kriskowal/q", + "name": "postcss-import", + "url": "Unknown", "description": "", "pathes": [ "." @@ -15626,11 +11277,12 @@ }, { "license": { - "name": "SEE LICENSE IN LICENSE" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "qs", - "url": "https://github.com/hapijs/qs", + "name": "postcss-import-resolver", + "url": "Unknown", "description": "", "pathes": [ "." @@ -15639,12 +11291,12 @@ }, { "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "qs", - "url": "https://github.com/ljharb/qs", + "name": "postcss-initial", + "url": "Unknown", "description": "", "pathes": [ "." @@ -15653,12 +11305,11 @@ }, { "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "CC0-1.0" }, "dependency": { - "name": "qs", - "url": "https://github.com/ljharb/qs", + "name": "postcss-lab-function", + "url": "https://github.com/jonathantneal/postcss-lab-function#readme", "description": "", "pathes": [ "." @@ -15671,8 +11322,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "query-string", - "url": "sindresorhus.com", + "name": "postcss-load-config", + "url": "https://github.com/michael-ciniawsky/postcss-load-config#readme", "description": "", "pathes": [ "." @@ -15685,8 +11336,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "query-string", - "url": "sindresorhus.com", + "name": "postcss-loader", + "url": "https://github.com/postcss/postcss-loader#readme", "description": "", "pathes": [ "." @@ -15695,12 +11346,11 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "CC0-1.0" }, "dependency": { - "name": "querystring", - "url": "Unknown", + "name": "postcss-logical", + "url": "https://github.com/jonathantneal/postcss-logical#readme", "description": "", "pathes": [ "." @@ -15713,7 +11363,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "querystring-es3", + "name": "postcss-media-minmax", "url": "Unknown", "description": "", "pathes": [ @@ -15727,8 +11377,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "randomatic", - "url": "https://github.com/jonschlinkert/randomatic", + "name": "postcss-merge-idents", + "url": "https://github.com/ben-eb/postcss-merge-idents", "description": "", "pathes": [ "." @@ -15741,8 +11391,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "randombytes", - "url": "https://github.com/crypto-browserify/randombytes", + "name": "postcss-merge-longhand", + "url": "https://github.com/ben-eb/postcss-merge-longhand", "description": "", "pathes": [ "." @@ -15755,8 +11405,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "randomfill", - "url": "https://github.com/crypto-browserify/randomfill", + "name": "postcss-merge-longhand", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -15769,8 +11419,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "range-parser", - "url": "http://tjholowaychuk.com", + "name": "postcss-merge-rules", + "url": "https://github.com/ben-eb/postcss-merge-rules", "description": "", "pathes": [ "." @@ -15783,8 +11433,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "raw-body", - "url": "http://jongleberry.com", + "name": "postcss-merge-rules", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -15797,7 +11447,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "raw-loader", + "name": "postcss-message-helpers", "url": "Unknown", "description": "", "pathes": [ @@ -15805,27 +11455,14 @@ ] } }, - { - "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", + "name": "postcss-minify-font-values", + "url": "https://github.com/TrySound/postcss-minify-font-values", "description": "", "pathes": [ "." @@ -15838,8 +11475,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "read-chunk", - "url": "http://sindresorhus.com", + "name": "postcss-minify-font-values", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -15852,8 +11489,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "read-pkg", - "url": "sindresorhus.com", + "name": "postcss-minify-gradients", + "url": "https://github.com/ben-eb/postcss-minify-gradients", "description": "", "pathes": [ "." @@ -15866,8 +11503,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "read-pkg", - "url": "sindresorhus.com", + "name": "postcss-minify-gradients", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -15880,8 +11517,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "read-pkg-up", - "url": "sindresorhus.com", + "name": "postcss-minify-params", + "url": "https://github.com/ben-eb/postcss-minify-params", "description": "", "pathes": [ "." @@ -15894,8 +11531,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "read-pkg-up", - "url": "sindresorhus.com", + "name": "postcss-minify-params", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -15908,8 +11545,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "readable-stream", - "url": "http://blog.izs.me/", + "name": "postcss-minify-selectors", + "url": "https://github.com/ben-eb/postcss-minify-selectors", "description": "", "pathes": [ "." @@ -15922,8 +11559,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "readable-stream", - "url": "Unknown", + "name": "postcss-minify-selectors", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -15932,12 +11569,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "readable-stream", - "url": "Unknown", + "name": "postcss-modules-extract-imports", + "url": "https://github.com/css-modules/postcss-modules-extract-imports", "description": "", "pathes": [ "." @@ -15950,8 +11587,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "readdirp", - "url": "https://github.com/paulmillr/readdirp", + "name": "postcss-modules-local-by-default", + "url": "Unknown", "description": "", "pathes": [ "." @@ -15960,12 +11597,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "readdirp", - "url": "https://github.com/paulmillr/readdirp", + "name": "postcss-modules-scope", + "url": "https://github.com/css-modules/postcss-modules-scope", "description": "", "pathes": [ "." @@ -15974,12 +11611,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "reduce-css-calc", - "url": "Unknown", + "name": "postcss-modules-values", + "url": "https://github.com/css-modules/postcss-modules-values#readme", "description": "", "pathes": [ "." @@ -15988,12 +11625,11 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "CC0-1.0" }, "dependency": { - "name": "reduce-function-call", - "url": "Unknown", + "name": "postcss-nesting", + "url": "https://github.com/jonathantneal/postcss-nesting#readme", "description": "", "pathes": [ "." @@ -16006,8 +11642,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "regenerate", - "url": "https://mths.be/regenerate", + "name": "postcss-normalize-charset", + "url": "https://github.com/ben-eb/postcss-charset", "description": "", "pathes": [ "." @@ -16020,8 +11656,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "regenerate-unicode-properties", - "url": "https://github.com/mathiasbynens/regenerate-unicode-properties", + "name": "postcss-normalize-charset", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -16034,8 +11670,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "regenerator-runtime", - "url": "Unknown", + "name": "postcss-normalize-display-values", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -16048,8 +11684,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "regenerator-runtime", - "url": "Unknown", + "name": "postcss-normalize-positions", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -16062,8 +11698,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "regenerator-transform", - "url": "Unknown", + "name": "postcss-normalize-repeat-style", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -16076,8 +11712,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "regex-cache", - "url": "https://github.com/jonschlinkert/regex-cache", + "name": "postcss-normalize-string", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -16090,8 +11726,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "regex-not", - "url": "https://github.com/jonschlinkert/regex-not", + "name": "postcss-normalize-timing-functions", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -16104,8 +11740,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "regexp-tree", - "url": "https://github.com/DmitrySoshnikov/regexp-tree", + "name": "postcss-normalize-unicode", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -16118,8 +11754,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "regexpu-core", - "url": "https://mths.be/regexpu", + "name": "postcss-normalize-url", + "url": "https://github.com/ben-eb/postcss-normalize-url", "description": "", "pathes": [ "." @@ -16132,8 +11768,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "regjsgen", - "url": "https://github.com/bnjmnt4n/regjsgen", + "name": "postcss-normalize-url", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -16142,12 +11778,12 @@ }, { "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "regjsparser", - "url": "https://github.com/jviereck/regjsparser", + "name": "postcss-normalize-whitespace", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -16160,8 +11796,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "relateurl", - "url": "https://github.com/stevenvachon/relateurl", + "name": "postcss-ordered-values", + "url": "https://github.com/ben-eb/postcss-ordered-values", "description": "", "pathes": [ "." @@ -16170,12 +11806,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "remove-trailing-separator", - "url": "https://github.com/darsain/remove-trailing-separator#readme", + "name": "postcss-ordered-values", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -16184,12 +11820,11 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "CC0-1.0" }, "dependency": { - "name": "renderkid", - "url": "Unknown", + "name": "postcss-overflow-shorthand", + "url": "https://github.com/jonathantneal/postcss-overflow-shorthand#readme", "description": "", "pathes": [ "." @@ -16202,8 +11837,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "repeat-element", - "url": "https://github.com/jonschlinkert/repeat-element", + "name": "postcss-page-break", + "url": "https://github.com/shrpne/postcss-page-break", "description": "", "pathes": [ "." @@ -16212,12 +11847,11 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "CC0-1.0" }, "dependency": { - "name": "repeat-string", - "url": "https://github.com/jonschlinkert/repeat-string", + "name": "postcss-place", + "url": "https://github.com/jonathantneal/postcss-place#readme", "description": "", "pathes": [ "." @@ -16226,12 +11860,11 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "CC0-1.0" }, "dependency": { - "name": "repeating", - "url": "sindresorhus.com", + "name": "postcss-preset-env", + "url": "https://github.com/csstools/postcss-preset-env#readme", "description": "", "pathes": [ "." @@ -16240,12 +11873,11 @@ }, { "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "CC0-1.0" }, "dependency": { - "name": "request", - "url": "Unknown", + "name": "postcss-pseudo-class-any-link", + "url": "https://github.com/jonathantneal/postcss-pseudo-class-any-link#readme", "description": "", "pathes": [ "." @@ -16254,12 +11886,12 @@ }, { "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "request", - "url": "Unknown", + "name": "postcss-reduce-idents", + "url": "https://github.com/ben-eb/postcss-reduce-idents", "description": "", "pathes": [ "." @@ -16268,12 +11900,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "request-promise-core", - "url": "https://github.com/request/promise-core#readme", + "name": "postcss-reduce-initial", + "url": "https://github.com/ben-eb/postcss-reduce-initial", "description": "", "pathes": [ "." @@ -16282,12 +11914,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "request-promise-native", - "url": "https://github.com/request/request-promise-native#readme", + "name": "postcss-reduce-initial", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -16300,8 +11932,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "require-directory", - "url": "https://github.com/troygoode/node-require-directory/", + "name": "postcss-reduce-transforms", + "url": "https://github.com/ben-eb/postcss-reduce-transforms", "description": "", "pathes": [ "." @@ -16314,8 +11946,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "require-from-string", - "url": "github.com/floatdrop", + "name": "postcss-reduce-transforms", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -16324,12 +11956,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "require-main-filename", - "url": "https://github.com/yargs/require-main-filename#readme", + "name": "postcss-replace-overflow-wrap", + "url": "https://github.com/MattDiMu/postcss-replace-overflow-wrap", "description": "", "pathes": [ "." @@ -16342,8 +11974,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "require-uncached", - "url": "sindresorhus.com", + "name": "postcss-selector-matches", + "url": "Unknown", "description": "", "pathes": [ "." @@ -16356,8 +11988,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "requires-port", - "url": "https://github.com/unshiftio/requires-port", + "name": "postcss-selector-not", + "url": "Unknown", "description": "", "pathes": [ "." @@ -16370,8 +12002,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "resolve", - "url": "http://substack.net", + "name": "postcss-selector-parser", + "url": "https://github.com/postcss/postcss-selector-parser", "description": "", "pathes": [ "." @@ -16384,8 +12016,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "resolve", - "url": "http://substack.net", + "name": "postcss-selector-parser", + "url": "https://github.com/postcss/postcss-selector-parser", "description": "", "pathes": [ "." @@ -16398,8 +12030,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "resolve-from", - "url": "sindresorhus.com", + "name": "postcss-selector-parser", + "url": "https://github.com/postcss/postcss-selector-parser", "description": "", "pathes": [ "." @@ -16412,8 +12044,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "resolve-from", - "url": "sindresorhus.com", + "name": "postcss-selector-parser", + "url": "https://github.com/postcss/postcss-selector-parser", "description": "", "pathes": [ "." @@ -16426,8 +12058,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "resolve-from", - "url": "sindresorhus.com", + "name": "postcss-svgo", + "url": "https://github.com/ben-eb/postcss-svgo", "description": "", "pathes": [ "." @@ -16440,8 +12072,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "resolve-url", - "url": "Unknown", + "name": "postcss-svgo", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -16454,8 +12086,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "restore-cursor", - "url": "sindresorhus.com", + "name": "postcss-unique-selectors", + "url": "https://github.com/ben-eb/postcss-unique-selectors", "description": "", "pathes": [ "." @@ -16468,8 +12100,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "resumer", - "url": "https://github.com/substack/resumer", + "name": "postcss-unique-selectors", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -16482,8 +12114,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "ret", - "url": "https://github.com/fent", + "name": "postcss-url", + "url": "Unknown", "description": "", "pathes": [ "." @@ -16496,8 +12128,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "retry", - "url": "https://github.com/tim-kos/node-retry", + "name": "postcss-value-parser", + "url": "https://github.com/TrySound/postcss-value-parser", "description": "", "pathes": [ "." @@ -16510,8 +12142,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "rgb-regex", - "url": "https://github.com/regexps/rgb-regex", + "name": "postcss-values-parser", + "url": "shellscape", "description": "", "pathes": [ "." @@ -16524,8 +12156,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "rgba-regex", - "url": "https://github.com/johnotander/rgba-regex", + "name": "postcss-zindex", + "url": "https://github.com/ben-eb/postcss-zindex", "description": "", "pathes": [ "." @@ -16538,8 +12170,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "right-align", - "url": "https://github.com/jonschlinkert/right-align", + "name": "prepend-http", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -16548,12 +12180,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "rimraf", - "url": "http://blog.izs.me/", + "name": "prepend-http", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -16562,12 +12194,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "rimraf", - "url": "http://blog.izs.me/", + "name": "preserve", + "url": "https://github.com/jonschlinkert/preserve", "description": "", "pathes": [ "." @@ -16580,8 +12212,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "ripemd160", - "url": "Unknown", + "name": "prettier", + "url": "https://prettier.io/", "description": "", "pathes": [ "." @@ -16594,8 +12226,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "run-async", - "url": "Unknown", + "name": "pretty-bytes", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -16604,12 +12236,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "run-queue", - "url": "https://npmjs.com/package/run-queue", + "name": "pretty-error", + "url": "Unknown", "description": "", "pathes": [ "." @@ -16622,8 +12254,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "rupture", - "url": "Unknown", + "name": "pretty-time", + "url": "https://github.com/jonschlinkert/pretty-time", "description": "", "pathes": [ "." @@ -16632,12 +12264,12 @@ }, { "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "rx-lite", - "url": "https://github.com/Reactive-Extensions/RxJS", + "name": "private", + "url": "http://github.com/benjamn/private", "description": "", "pathes": [ "." @@ -16646,12 +12278,12 @@ }, { "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "rx-lite-aggregates", - "url": "https://github.com/Reactive-Extensions/RxJS", + "name": "process", + "url": "Unknown", "description": "", "pathes": [ "." @@ -16664,8 +12296,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "safe-buffer", - "url": "https://github.com/feross/safe-buffer", + "name": "process", + "url": "Unknown", "description": "", "pathes": [ "." @@ -16678,8 +12310,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "safe-regex", - "url": "https://github.com/substack/safe-regex", + "name": "process-nextick-args", + "url": "https://github.com/calvinmetcalf/process-nextick-args", "description": "", "pathes": [ "." @@ -16688,12 +12320,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "safer-buffer", - "url": "https://github.com/ChALkeR", + "name": "promise-inflight", + "url": "https://github.com/iarna/promise-inflight#readme", "description": "", "pathes": [ "." @@ -16702,12 +12334,12 @@ }, { "license": { - "name": "BSD", - "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "sax", - "url": "http://blog.izs.me/", + "name": "proper-lockfile", + "url": "https://github.com/moxystudio/node-proper-lockfile", "description": "", "pathes": [ "." @@ -16716,12 +12348,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "sax", - "url": "http://blog.izs.me/", + "name": "proxy-addr", + "url": "Unknown", "description": "", "pathes": [ "." @@ -16734,8 +12366,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "schema-utils", - "url": "https://github.com/webpack-contrib/schema-utils", + "name": "prr", + "url": "https://github.com/rvagg/prr", "description": "", "pathes": [ "." @@ -16748,8 +12380,8 @@ "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "semver", - "url": "Unknown", + "name": "pseudomap", + "url": "https://github.com/isaacs/pseudomap#readme", "description": "", "pathes": [ "." @@ -16758,12 +12390,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "semver", - "url": "Unknown", + "name": "public-encrypt", + "url": "https://github.com/crypto-browserify/publicEncrypt", "description": "", "pathes": [ "." @@ -16772,11 +12404,11 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "semver", + "name": "pump", "url": "Unknown", "description": "", "pathes": [ @@ -16786,11 +12418,11 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "semver", + "name": "pump", "url": "Unknown", "description": "", "pathes": [ @@ -16804,8 +12436,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "send", - "url": "Unknown", + "name": "pumpify", + "url": "https://github.com/mafintosh/pumpify", "description": "", "pathes": [ "." @@ -16814,12 +12446,12 @@ }, { "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "serialize-javascript", - "url": "https://github.com/yahoo/serialize-javascript", + "name": "punycode", + "url": "https://mths.be/punycode", "description": "", "pathes": [ "." @@ -16832,8 +12464,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "serve-placeholder", - "url": "Unknown", + "name": "punycode", + "url": "https://mths.be/punycode", "description": "", "pathes": [ "." @@ -16846,8 +12478,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "serve-static", - "url": "Unknown", + "name": "punycode", + "url": "https://mths.be/punycode", "description": "", "pathes": [ "." @@ -16856,12 +12488,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "server-destroy", - "url": "http://blog.izs.me", + "name": "q", + "url": "https://github.com/kriskowal/q", "description": "", "pathes": [ "." @@ -16870,12 +12502,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "set-blocking", - "url": "https://github.com/yargs/set-blocking#readme", + "name": "qs", + "url": "https://github.com/ljharb/qs", "description": "", "pathes": [ "." @@ -16884,12 +12516,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "set-value", - "url": "https://github.com/jonschlinkert/set-value", + "name": "qs", + "url": "https://github.com/ljharb/qs", "description": "", "pathes": [ "." @@ -16902,8 +12534,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "set-value", - "url": "https://github.com/jonschlinkert/set-value", + "name": "query-string", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -16916,8 +12548,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "setimmediate", - "url": "Unknown", + "name": "query-string", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -16926,12 +12558,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "setprototypeof", - "url": "https://github.com/wesleytodd/setprototypeof", + "name": "querystring", + "url": "Unknown", "description": "", "pathes": [ "." @@ -16940,11 +12572,12 @@ }, { "license": { - "name": "(MIT AND BSD-3-Clause)" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "sha.js", - "url": "https://github.com/crypto-browserify/sha.js", + "name": "querystring-es3", + "url": "Unknown", "description": "", "pathes": [ "." @@ -16957,8 +12590,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "shebang-command", - "url": "github.com/kevva", + "name": "randomatic", + "url": "https://github.com/jonschlinkert/randomatic", "description": "", "pathes": [ "." @@ -16971,8 +12604,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "shebang-regex", - "url": "sindresorhus.com", + "name": "randombytes", + "url": "https://github.com/crypto-browserify/randombytes", "description": "", "pathes": [ "." @@ -16985,8 +12618,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "shell-quote", - "url": "http://substack.net", + "name": "randomfill", + "url": "https://github.com/crypto-browserify/randomfill", "description": "", "pathes": [ "." @@ -16995,12 +12628,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "signal-exit", - "url": "https://github.com/tapjs/signal-exit", + "name": "range-parser", + "url": "http://tjholowaychuk.com", "description": "", "pathes": [ "." @@ -17013,8 +12646,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "simple-swizzle", - "url": "http://github.com/qix-", + "name": "raw-body", + "url": "http://jongleberry.com", "description": "", "pathes": [ "." @@ -17027,7 +12660,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "sitemap", + "name": "raw-loader", "url": "Unknown", "description": "", "pathes": [ @@ -17037,12 +12670,11 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "(BSD-2-Clause OR MIT OR Apache-2.0)" }, "dependency": { - "name": "slice-ansi", - "url": "Unknown", + "name": "rc", + "url": "dominictarr.com", "description": "", "pathes": [ "." @@ -17051,12 +12683,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "slide", - "url": "http://blog.izs.me/", + "name": "read-cache", + "url": "https://github.com/TrySound/read-cache#readme", "description": "", "pathes": [ "." @@ -17069,8 +12701,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "slideout", - "url": "Unknown", + "name": "read-chunk", + "url": "http://sindresorhus.com", "description": "", "pathes": [ "." @@ -17083,8 +12715,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "snapdragon", - "url": "https://github.com/jonschlinkert/snapdragon", + "name": "readable-stream", + "url": "Unknown", "description": "", "pathes": [ "." @@ -17097,8 +12729,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "snapdragon-node", - "url": "https://github.com/jonschlinkert/snapdragon-node", + "name": "readable-stream", + "url": "Unknown", "description": "", "pathes": [ "." @@ -17111,8 +12743,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "snapdragon-util", - "url": "https://github.com/jonschlinkert/snapdragon-util", + "name": "readdirp", + "url": "https://github.com/paulmillr/readdirp", "description": "", "pathes": [ "." @@ -17121,12 +12753,12 @@ }, { "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "sntp", - "url": "http://hueniverse.com", + "name": "readdirp", + "url": "https://github.com/paulmillr/readdirp", "description": "", "pathes": [ "." @@ -17135,12 +12767,12 @@ }, { "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "sntp", - "url": "http://hueniverse.com", + "name": "reduce-css-calc", + "url": "Unknown", "description": "", "pathes": [ "." @@ -17153,8 +12785,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "sort-keys", - "url": "sindresorhus.com", + "name": "reduce-function-call", + "url": "Unknown", "description": "", "pathes": [ "." @@ -17167,8 +12799,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "sort-keys", - "url": "sindresorhus.com", + "name": "regenerate", + "url": "https://mths.be/regenerate", "description": "", "pathes": [ "." @@ -17181,8 +12813,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "source-list-map", - "url": "https://github.com/webpack/source-list-map", + "name": "regenerate-unicode-properties", + "url": "https://github.com/mathiasbynens/regenerate-unicode-properties", "description": "", "pathes": [ "." @@ -17195,8 +12827,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "source-list-map", - "url": "https://github.com/webpack/source-list-map", + "name": "regenerator-runtime", + "url": "Unknown", "description": "", "pathes": [ "." @@ -17205,12 +12837,12 @@ }, { "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "source-map", - "url": "https://github.com/mozilla/source-map", + "name": "regenerator-transform", + "url": "Unknown", "description": "", "pathes": [ "." @@ -17219,12 +12851,12 @@ }, { "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "source-map", - "url": "https://github.com/mozilla/source-map", + "name": "regex-cache", + "url": "https://github.com/jonschlinkert/regex-cache", "description": "", "pathes": [ "." @@ -17233,12 +12865,12 @@ }, { "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "source-map", - "url": "https://github.com/mozilla/source-map", + "name": "regex-not", + "url": "https://github.com/jonschlinkert/regex-not", "description": "", "pathes": [ "." @@ -17247,12 +12879,12 @@ }, { "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "source-map", - "url": "https://github.com/mozilla/source-map", + "name": "regexp-tree", + "url": "https://github.com/DmitrySoshnikov/regexp-tree", "description": "", "pathes": [ "." @@ -17261,12 +12893,12 @@ }, { "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "source-map", - "url": "https://github.com/mozilla/source-map", + "name": "regexpu-core", + "url": "https://mths.be/regexpu", "description": "", "pathes": [ "." @@ -17279,8 +12911,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "source-map-resolve", - "url": "Unknown", + "name": "regjsgen", + "url": "https://github.com/bnjmnt4n/regjsgen", "description": "", "pathes": [ "." @@ -17289,12 +12921,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "source-map-support", - "url": "Unknown", + "name": "regjsparser", + "url": "https://github.com/jviereck/regjsparser", "description": "", "pathes": [ "." @@ -17307,8 +12939,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "source-map-url", - "url": "Unknown", + "name": "relateurl", + "url": "https://github.com/stevenvachon/relateurl", "description": "", "pathes": [ "." @@ -17321,8 +12953,8 @@ "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "spawn-wrap", - "url": "https://github.com/isaacs/spawn-wrap#readme", + "name": "remove-trailing-separator", + "url": "https://github.com/darsain/remove-trailing-separator#readme", "description": "", "pathes": [ "." @@ -17331,12 +12963,12 @@ }, { "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "spdx-correct", - "url": "https://kemitchell.com", + "name": "renderkid", + "url": "Unknown", "description": "", "pathes": [ "." @@ -17345,11 +12977,12 @@ }, { "license": { - "name": "CC-BY-3.0" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "spdx-exceptions", - "url": "Unknown", + "name": "repeat-element", + "url": "https://github.com/jonschlinkert/repeat-element", "description": "", "pathes": [ "." @@ -17362,8 +12995,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "spdx-expression-parse", - "url": "http://kemitchell.com", + "name": "repeat-string", + "url": "https://github.com/jonschlinkert/repeat-string", "description": "", "pathes": [ "." @@ -17372,11 +13005,12 @@ }, { "license": { - "name": "CC0-1.0" + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, "dependency": { - "name": "spdx-license-ids", - "url": "https://github.com/shinnn", + "name": "request", + "url": "Unknown", "description": "", "pathes": [ "." @@ -17385,11 +13019,12 @@ }, { "license": { - "name": "MIT*" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "split", - "url": "http://github.com/dominictarr/split", + "name": "require-from-string", + "url": "github.com/floatdrop", "description": "", "pathes": [ "." @@ -17402,8 +13037,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "split-string", - "url": "https://github.com/jonschlinkert/split-string", + "name": "requires-port", + "url": "https://github.com/unshiftio/requires-port", "description": "", "pathes": [ "." @@ -17412,12 +13047,26 @@ }, { "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "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": "sprintf-js", - "url": "http://alexei.ro/", + "name": "resolve-from", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -17430,8 +13079,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "sshpk", - "url": "https://github.com/arekinath/node-sshpk#readme", + "name": "resolve-url", + "url": "Unknown", "description": "", "pathes": [ "." @@ -17440,12 +13089,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "ssri", - "url": "Unknown", + "name": "ret", + "url": "https://github.com/fent", "description": "", "pathes": [ "." @@ -17458,8 +13107,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "stable", - "url": "Unknown", + "name": "retry", + "url": "https://github.com/tim-kos/node-retry", "description": "", "pathes": [ "." @@ -17472,8 +13121,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "stack-trace", - "url": "https://github.com/felixge/node-stack-trace", + "name": "rgb-regex", + "url": "https://github.com/regexps/rgb-regex", "description": "", "pathes": [ "." @@ -17486,8 +13135,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "stackframe", - "url": "https://www.stacktracejs.com/", + "name": "rgba-regex", + "url": "https://github.com/johnotander/rgba-regex", "description": "", "pathes": [ "." @@ -17496,12 +13145,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "static-extend", - "url": "https://github.com/jonschlinkert/static-extend", + "name": "rimraf", + "url": "http://blog.izs.me/", "description": "", "pathes": [ "." @@ -17510,12 +13159,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "statuses", - "url": "Unknown", + "name": "rimraf", + "url": "http://blog.izs.me/", "description": "", "pathes": [ "." @@ -17528,7 +13177,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "std-env", + "name": "ripemd160", "url": "Unknown", "description": "", "pathes": [ @@ -17542,8 +13191,8 @@ "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "stealthy-require", - "url": "https://github.com/analog-nico/stealthy-require#readme", + "name": "run-queue", + "url": "https://npmjs.com/package/run-queue", "description": "", "pathes": [ "." @@ -17556,8 +13205,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "stream-browserify", - "url": "https://github.com/browserify/stream-browserify", + "name": "safe-buffer", + "url": "https://github.com/feross/safe-buffer", "description": "", "pathes": [ "." @@ -17570,8 +13219,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "stream-combiner", - "url": "https://github.com/dominictarr/stream-combiner", + "name": "safe-regex", + "url": "https://github.com/substack/safe-regex", "description": "", "pathes": [ "." @@ -17584,8 +13233,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "stream-each", - "url": "https://github.com/mafintosh/stream-each", + "name": "safer-buffer", + "url": "https://github.com/ChALkeR", "description": "", "pathes": [ "." @@ -17594,12 +13243,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "stream-http", - "url": "https://github.com/jhiesey/stream-http#readme", + "name": "sax", + "url": "http://blog.izs.me/", "description": "", "pathes": [ "." @@ -17612,8 +13261,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "stream-shift", - "url": "https://github.com/mafintosh/stream-shift", + "name": "schema-utils", + "url": "https://github.com/webpack-contrib/schema-utils", "description": "", "pathes": [ "." @@ -17622,12 +13271,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "stream-to", - "url": "http://jongleberry.com", + "name": "semver", + "url": "Unknown", "description": "", "pathes": [ "." @@ -17636,12 +13285,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "stream-to-buffer", - "url": "http://jongleberry.com", + "name": "semver", + "url": "Unknown", "description": "", "pathes": [ "." @@ -17650,12 +13299,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "strict-uri-encode", - "url": "github.com/kevva", + "name": "semver", + "url": "Unknown", "description": "", "pathes": [ "." @@ -17668,8 +13317,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "string", - "url": "http://stringjs.com/", + "name": "send", + "url": "Unknown", "description": "", "pathes": [ "." @@ -17678,12 +13327,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "string-width", - "url": "sindresorhus.com", + "name": "serialize-javascript", + "url": "https://github.com/yahoo/serialize-javascript", "description": "", "pathes": [ "." @@ -17696,8 +13345,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "string-width", - "url": "sindresorhus.com", + "name": "serve-placeholder", + "url": "Unknown", "description": "", "pathes": [ "." @@ -17710,8 +13359,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "string-width", - "url": "sindresorhus.com", + "name": "serve-static", + "url": "Unknown", "description": "", "pathes": [ "." @@ -17720,12 +13369,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "string_decoder", - "url": "https://github.com/rvagg/string_decoder", + "name": "server-destroy", + "url": "http://blog.izs.me", "description": "", "pathes": [ "." @@ -17734,12 +13383,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "string_decoder", - "url": "https://github.com/nodejs/string_decoder", + "name": "set-blocking", + "url": "https://github.com/yargs/set-blocking#readme", "description": "", "pathes": [ "." @@ -17752,8 +13401,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "string_decoder", - "url": "https://github.com/nodejs/string_decoder", + "name": "set-value", + "url": "https://github.com/jonschlinkert/set-value", "description": "", "pathes": [ "." @@ -17766,8 +13415,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "stringstream", - "url": "http://github.com/mhart", + "name": "set-value", + "url": "https://github.com/jonschlinkert/set-value", "description": "", "pathes": [ "." @@ -17780,8 +13429,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "stringstream", - "url": "http://github.com/mhart", + "name": "setimmediate", + "url": "Unknown", "description": "", "pathes": [ "." @@ -17790,12 +13439,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "strip-ansi", - "url": "sindresorhus.com", + "name": "setprototypeof", + "url": "https://github.com/wesleytodd/setprototypeof", "description": "", "pathes": [ "." @@ -17804,12 +13453,11 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "(MIT AND BSD-3-Clause)" }, "dependency": { - "name": "strip-ansi", - "url": "sindresorhus.com", + "name": "sha.js", + "url": "https://github.com/crypto-browserify/sha.js", "description": "", "pathes": [ "." @@ -17822,8 +13470,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "strip-ansi", - "url": "sindresorhus.com", + "name": "shebang-command", + "url": "github.com/kevva", "description": "", "pathes": [ "." @@ -17836,7 +13484,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "strip-bom", + "name": "shebang-regex", "url": "sindresorhus.com", "description": "", "pathes": [ @@ -17850,8 +13498,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "strip-bom", - "url": "sindresorhus.com", + "name": "shell-quote", + "url": "http://substack.net", "description": "", "pathes": [ "." @@ -17860,12 +13508,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "strip-eof", - "url": "sindresorhus.com", + "name": "signal-exit", + "url": "https://github.com/tapjs/signal-exit", "description": "", "pathes": [ "." @@ -17878,8 +13526,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "strip-indent", - "url": "sindresorhus.com", + "name": "simple-swizzle", + "url": "http://github.com/qix-", "description": "", "pathes": [ "." @@ -17892,8 +13540,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "strip-json-comments", - "url": "sindresorhus.com", + "name": "sitemap", + "url": "Unknown", "description": "", "pathes": [ "." @@ -17906,8 +13554,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "style-resources-loader", - "url": "https://github.com/yenshih/style-resources-loader", + "name": "slideout", + "url": "Unknown", "description": "", "pathes": [ "." @@ -17920,8 +13568,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "stylehacks", - "url": "https://github.com/cssnano/cssnano", + "name": "snapdragon", + "url": "https://github.com/jonschlinkert/snapdragon", "description": "", "pathes": [ "." @@ -17934,8 +13582,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "stylus", - "url": "https://github.com/stylus/stylus", + "name": "snapdragon-node", + "url": "https://github.com/jonschlinkert/snapdragon-node", "description": "", "pathes": [ "." @@ -17948,8 +13596,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "stylus-loader", - "url": "http://dontkry.com", + "name": "snapdragon-util", + "url": "https://github.com/jonschlinkert/snapdragon-util", "description": "", "pathes": [ "." @@ -17958,12 +13606,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "supports-color", - "url": "sindresorhus.com", + "name": "sntp", + "url": "http://hueniverse.com", "description": "", "pathes": [ "." @@ -17976,7 +13624,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "supports-color", + "name": "sort-keys", "url": "sindresorhus.com", "description": "", "pathes": [ @@ -17990,7 +13638,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "supports-color", + "name": "sort-keys", "url": "sindresorhus.com", "description": "", "pathes": [ @@ -18004,8 +13652,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "supports-color", - "url": "sindresorhus.com", + "name": "source-list-map", + "url": "https://github.com/webpack/source-list-map", "description": "", "pathes": [ "." @@ -18014,12 +13662,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "supports-color", - "url": "sindresorhus.com", + "name": "source-map", + "url": "https://github.com/mozilla/source-map", "description": "", "pathes": [ "." @@ -18028,12 +13676,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "svg-tags", - "url": "Unknown", + "name": "source-map", + "url": "https://github.com/mozilla/source-map", "description": "", "pathes": [ "." @@ -18042,12 +13690,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "svgo", - "url": "https://github.com/svg/svgo", + "name": "source-map", + "url": "https://github.com/mozilla/source-map", "description": "", "pathes": [ "." @@ -18060,8 +13708,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "svgo", - "url": "https://github.com/svg/svgo", + "name": "source-map-resolve", + "url": "Unknown", "description": "", "pathes": [ "." @@ -18074,8 +13722,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "symbol-tree", - "url": "https://github.com/jsdom/js-symbol-tree#symbol-tree", + "name": "source-map-support", + "url": "Unknown", "description": "", "pathes": [ "." @@ -18084,12 +13732,12 @@ }, { "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "table", - "url": "http://gajus.com", + "name": "source-map-url", + "url": "Unknown", "description": "", "pathes": [ "." @@ -18102,8 +13750,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "tapable", - "url": "https://github.com/webpack/tapable", + "name": "split-string", + "url": "https://github.com/jonschlinkert/split-string", "description": "", "pathes": [ "." @@ -18112,12 +13760,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "tapable", - "url": "https://github.com/webpack/tapable", + "name": "sprintf-js", + "url": "http://alexei.ro/", "description": "", "pathes": [ "." @@ -18130,8 +13778,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "tape", - "url": "https://github.com/substack/tape", + "name": "sshpk", + "url": "https://github.com/arekinath/node-sshpk#readme", "description": "", "pathes": [ "." @@ -18144,8 +13792,8 @@ "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "tar", - "url": "http://blog.izs.me/", + "name": "ssri", + "url": "Unknown", "description": "", "pathes": [ "." @@ -18158,8 +13806,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "term-size", - "url": "sindresorhus.com", + "name": "stable", + "url": "Unknown", "description": "", "pathes": [ "." @@ -18168,12 +13816,12 @@ }, { "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "terser", - "url": "https://github.com/fabiosantoscode/terser", + "name": "stack-trace", + "url": "https://github.com/felixge/node-stack-trace", "description": "", "pathes": [ "." @@ -18186,8 +13834,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "terser-webpack-plugin", - "url": "https://github.com/webpack-contrib/terser-webpack-plugin", + "name": "stackframe", + "url": "https://www.stacktracejs.com/", "description": "", "pathes": [ "." @@ -18196,12 +13844,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "test-exclude", - "url": "https://github.com/istanbuljs/istanbuljs#readme", + "name": "static-extend", + "url": "https://github.com/jonschlinkert/static-extend", "description": "", "pathes": [ "." @@ -18214,8 +13862,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "text-table", - "url": "https://github.com/substack/text-table", + "name": "statuses", + "url": "Unknown", "description": "", "pathes": [ "." @@ -18228,8 +13876,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "thread-loader", - "url": "https://github.com/webpack-contrib/thread-loader", + "name": "std-env", + "url": "Unknown", "description": "", "pathes": [ "." @@ -18242,8 +13890,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "through", - "url": "https://github.com/dominictarr/through", + "name": "stream-browserify", + "url": "https://github.com/browserify/stream-browserify", "description": "", "pathes": [ "." @@ -18256,8 +13904,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "through2", - "url": "https://github.com/rvagg", + "name": "stream-each", + "url": "https://github.com/mafintosh/stream-each", "description": "", "pathes": [ "." @@ -18270,8 +13918,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "time-fix-plugin", - "url": "Unknown", + "name": "stream-http", + "url": "https://github.com/jhiesey/stream-http#readme", "description": "", "pathes": [ "." @@ -18284,8 +13932,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "timers-browserify", - "url": "https://github.com/jryans/timers-browserify", + "name": "stream-shift", + "url": "https://github.com/mafintosh/stream-shift", "description": "", "pathes": [ "." @@ -18298,8 +13946,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "timsort", - "url": "https://github.com/mziccard/node-timsort", + "name": "stream-to", + "url": "http://jongleberry.com", "description": "", "pathes": [ "." @@ -18312,8 +13960,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "tinycolor2", - "url": "http://briangrinstead.com", + "name": "stream-to-buffer", + "url": "http://jongleberry.com", "description": "", "pathes": [ "." @@ -18326,8 +13974,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "tmp", - "url": "http://github.com/raszi/node-tmp", + "name": "strict-uri-encode", + "url": "github.com/kevva", "description": "", "pathes": [ "." @@ -18340,8 +13988,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "to-arraybuffer", - "url": "https://github.com/jhiesey/to-arraybuffer#readme", + "name": "string", + "url": "http://stringjs.com/", "description": "", "pathes": [ "." @@ -18354,7 +14002,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "to-fast-properties", + "name": "string-width", "url": "sindresorhus.com", "description": "", "pathes": [ @@ -18368,7 +14016,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "to-fast-properties", + "name": "string-width", "url": "sindresorhus.com", "description": "", "pathes": [ @@ -18382,8 +14030,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "to-object-path", - "url": "https://github.com/jonschlinkert/to-object-path", + "name": "string-width", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -18396,8 +14044,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "to-regex", - "url": "https://github.com/jonschlinkert/to-regex", + "name": "string_decoder", + "url": "https://github.com/nodejs/string_decoder", "description": "", "pathes": [ "." @@ -18410,8 +14058,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "to-regex-range", - "url": "https://github.com/micromatch/to-regex-range", + "name": "string_decoder", + "url": "https://github.com/nodejs/string_decoder", "description": "", "pathes": [ "." @@ -18424,8 +14072,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "to-regex-range", - "url": "https://github.com/micromatch/to-regex-range", + "name": "stringstream", + "url": "http://github.com/mhart", "description": "", "pathes": [ "." @@ -18438,8 +14086,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "toidentifier", - "url": "Unknown", + "name": "strip-ansi", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -18452,22 +14100,8 @@ "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", + "name": "strip-ansi", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -18480,8 +14114,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "tr46", - "url": "Unknown", + "name": "strip-ansi", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -18494,8 +14128,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "trim", - "url": "Unknown", + "name": "strip-eof", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -18508,7 +14142,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "trim-right", + "name": "strip-json-comments", "url": "sindresorhus.com", "description": "", "pathes": [ @@ -18522,8 +14156,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "tryer", - "url": "https://gitlab.com/philbooth/tryer", + "name": "style-resources-loader", + "url": "https://github.com/yenshih/style-resources-loader", "description": "", "pathes": [ "." @@ -18532,12 +14166,12 @@ }, { "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "tslib", - "url": "http://typescriptlang.org/", + "name": "stylehacks", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -18550,8 +14184,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "tty-browserify", - "url": "https://github.com/substack/tty-browserify", + "name": "supports-color", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -18560,12 +14194,12 @@ }, { "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "tunnel-agent", - "url": "http://www.futurealoof.com", + "name": "supports-color", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -18574,12 +14208,12 @@ }, { "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "tunnel-agent", - "url": "http://www.futurealoof.com", + "name": "supports-color", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -18588,11 +14222,12 @@ }, { "license": { - "name": "Unlicense" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "tweetnacl", - "url": "https://tweetnacl.js.org/", + "name": "supports-color", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -18605,8 +14240,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "type-check", - "url": "https://github.com/gkz/type-check", + "name": "svg-tags", + "url": "Unknown", "description": "", "pathes": [ "." @@ -18619,8 +14254,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "type-detect", - "url": "http://alogicalparadox.com", + "name": "svgo", + "url": "https://github.com/svg/svgo", "description": "", "pathes": [ "." @@ -18629,11 +14264,12 @@ }, { "license": { - "name": "(MIT OR CC0-1.0)" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "type-fest", - "url": "sindresorhus.com", + "name": "svgo", + "url": "https://github.com/svg/svgo", "description": "", "pathes": [ "." @@ -18646,8 +14282,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "type-is", - "url": "Unknown", + "name": "tapable", + "url": "https://github.com/webpack/tapable", "description": "", "pathes": [ "." @@ -18660,8 +14296,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "typedarray", - "url": "https://github.com/substack/typedarray", + "name": "tapable", + "url": "https://github.com/webpack/tapable", "description": "", "pathes": [ "." @@ -18670,11 +14306,12 @@ }, { "license": { - "name": "(GPL-2.0 OR MIT)" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "ua-parser-js", - "url": "http://github.com/faisalman/ua-parser-js", + "name": "tar", + "url": "http://blog.izs.me/", "description": "", "pathes": [ "." @@ -18687,8 +14324,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "uc.micro", - "url": "Unknown", + "name": "term-size", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -18701,8 +14338,8 @@ "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "uglify-js", - "url": "http://lisperator.net/uglifyjs", + "name": "terser", + "url": "https://github.com/fabiosantoscode/terser", "description": "", "pathes": [ "." @@ -18711,12 +14348,12 @@ }, { "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "uglify-js", - "url": "http://lisperator.net/", + "name": "terser-webpack-plugin", + "url": "https://github.com/webpack-contrib/terser-webpack-plugin", "description": "", "pathes": [ "." @@ -18725,12 +14362,12 @@ }, { "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "uglify-js", - "url": "http://lisperator.net/", + "name": "text-table", + "url": "https://github.com/substack/text-table", "description": "", "pathes": [ "." @@ -18743,8 +14380,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "uglify-to-browserify", - "url": "Unknown", + "name": "thread-loader", + "url": "https://github.com/webpack-contrib/thread-loader", "description": "", "pathes": [ "." @@ -18757,8 +14394,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "underscore", - "url": "http://underscorejs.org/", + "name": "through2", + "url": "https://github.com/rvagg", "description": "", "pathes": [ "." @@ -18771,8 +14408,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "unfetch", - "url": "https://github.com/developit/unfetch", + "name": "time-fix-plugin", + "url": "Unknown", "description": "", "pathes": [ "." @@ -18785,8 +14422,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "unicode-canonical-property-names-ecmascript", - "url": "https://github.com/mathiasbynens/unicode-canonical-property-names-ecmascript", + "name": "timers-browserify", + "url": "https://github.com/jryans/timers-browserify", "description": "", "pathes": [ "." @@ -18799,8 +14436,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "unicode-match-property-ecmascript", - "url": "https://github.com/mathiasbynens/unicode-match-property-ecmascript", + "name": "timsort", + "url": "https://github.com/mziccard/node-timsort", "description": "", "pathes": [ "." @@ -18813,8 +14450,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "unicode-match-property-value-ecmascript", - "url": "https://github.com/mathiasbynens/unicode-match-property-value-ecmascript", + "name": "tinycolor2", + "url": "http://briangrinstead.com", "description": "", "pathes": [ "." @@ -18827,8 +14464,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "unicode-property-aliases-ecmascript", - "url": "https://github.com/mathiasbynens/unicode-property-aliases-ecmascript", + "name": "to-arraybuffer", + "url": "https://github.com/jhiesey/to-arraybuffer#readme", "description": "", "pathes": [ "." @@ -18841,8 +14478,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "union-value", - "url": "https://github.com/jonschlinkert/union-value", + "name": "to-fast-properties", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -18855,8 +14492,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "uniq", - "url": "Unknown", + "name": "to-object-path", + "url": "https://github.com/jonschlinkert/to-object-path", "description": "", "pathes": [ "." @@ -18869,8 +14506,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "uniqs", - "url": "Unknown", + "name": "to-regex", + "url": "https://github.com/jonschlinkert/to-regex", "description": "", "pathes": [ "." @@ -18879,12 +14516,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "unique-filename", - "url": "https://github.com/iarna/unique-filename", + "name": "to-regex-range", + "url": "https://github.com/micromatch/to-regex-range", "description": "", "pathes": [ "." @@ -18893,12 +14530,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "unique-slug", - "url": "http://re-becca.org", + "name": "to-regex-range", + "url": "https://github.com/micromatch/to-regex-range", "description": "", "pathes": [ "." @@ -18911,8 +14548,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "universalify", - "url": "https://github.com/RyanZim/universalify#readme", + "name": "toidentifier", + "url": "Unknown", "description": "", "pathes": [ "." @@ -18925,7 +14562,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "unpipe", + "name": "toposort", "url": "Unknown", "description": "", "pathes": [ @@ -18935,12 +14572,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "unquote", - "url": "https://github.com/lakenen/node-unquote", + "name": "tough-cookie", + "url": "https://github.com/salesforce/tough-cookie", "description": "", "pathes": [ "." @@ -18953,8 +14590,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "unset-value", - "url": "https://github.com/jonschlinkert/unset-value", + "name": "trim", + "url": "Unknown", "description": "", "pathes": [ "." @@ -18967,8 +14604,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "upath", - "url": "http://github.com/anodynos/upath/", + "name": "trim-right", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -18981,8 +14618,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "upper-case", - "url": "https://github.com/blakeembrey/upper-case", + "name": "tryer", + "url": "https://gitlab.com/philbooth/tryer", "description": "", "pathes": [ "." @@ -18991,12 +14628,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, "dependency": { - "name": "uppercamelcase", - "url": "Unknown", + "name": "tslib", + "url": "http://typescriptlang.org/", "description": "", "pathes": [ "." @@ -19005,12 +14642,12 @@ }, { "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "uri-js", - "url": "https://github.com/garycourt/uri-js", + "name": "tty-browserify", + "url": "https://github.com/substack/tty-browserify", "description": "", "pathes": [ "." @@ -19019,12 +14656,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, "dependency": { - "name": "urix", - "url": "Unknown", + "name": "tunnel-agent", + "url": "http://www.futurealoof.com", "description": "", "pathes": [ "." @@ -19033,12 +14670,11 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Unlicense" }, "dependency": { - "name": "url", - "url": "Unknown", + "name": "tweetnacl", + "url": "https://tweetnacl.js.org/", "description": "", "pathes": [ "." @@ -19047,12 +14683,11 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "(MIT OR CC0-1.0)" }, "dependency": { - "name": "url-join", - "url": "http://joseoncode.com", + "name": "type-fest", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -19065,8 +14700,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "url-loader", - "url": "https://github.com/webpack-contrib/url-loader", + "name": "type-is", + "url": "Unknown", "description": "", "pathes": [ "." @@ -19079,8 +14714,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "url-regex", - "url": "https://github.com/kevva", + "name": "typedarray", + "url": "https://github.com/substack/typedarray", "description": "", "pathes": [ "." @@ -19089,12 +14724,11 @@ }, { "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "(GPL-2.0 OR MIT)" }, "dependency": { - "name": "urlgrey", - "url": "Unknown", + "name": "ua-parser-js", + "url": "http://github.com/faisalman/ua-parser-js", "description": "", "pathes": [ "." @@ -19107,8 +14741,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "use", - "url": "https://github.com/jonschlinkert/use", + "name": "uc.micro", + "url": "Unknown", "description": "", "pathes": [ "." @@ -19117,12 +14751,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "util", - "url": "https://github.com/defunctzombie/node-util", + "name": "uglify-js", + "url": "http://lisperator.net/", "description": "", "pathes": [ "." @@ -19131,12 +14765,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "util", - "url": "https://github.com/defunctzombie/node-util", + "name": "uglify-js", + "url": "http://lisperator.net/", "description": "", "pathes": [ "." @@ -19149,8 +14783,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "util-deprecate", - "url": "https://github.com/TooTallNate/util-deprecate", + "name": "underscore", + "url": "http://underscorejs.org/", "description": "", "pathes": [ "." @@ -19163,8 +14797,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "util.promisify", - "url": "https://github.com/ljharb/util.promisify#readme", + "name": "unfetch", + "url": "https://github.com/developit/unfetch", "description": "", "pathes": [ "." @@ -19177,8 +14811,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "utila", - "url": "Unknown", + "name": "unicode-canonical-property-names-ecmascript", + "url": "https://github.com/mathiasbynens/unicode-canonical-property-names-ecmascript", "description": "", "pathes": [ "." @@ -19191,8 +14825,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "utils-merge", - "url": "http://www.jaredhanson.net/", + "name": "unicode-match-property-ecmascript", + "url": "https://github.com/mathiasbynens/unicode-match-property-ecmascript", "description": "", "pathes": [ "." @@ -19205,8 +14839,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "uuid", - "url": "Unknown", + "name": "unicode-match-property-value-ecmascript", + "url": "https://github.com/mathiasbynens/unicode-match-property-value-ecmascript", "description": "", "pathes": [ "." @@ -19215,12 +14849,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "v-tooltip", - "url": "https://github.com/Akryum/vue-tooltip#readme", + "name": "unicode-property-aliases-ecmascript", + "url": "https://github.com/mathiasbynens/unicode-property-aliases-ecmascript", "description": "", "pathes": [ "." @@ -19229,12 +14863,12 @@ }, { "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "validate-npm-package-license", - "url": "https://kemitchell.com", + "name": "union-value", + "url": "https://github.com/jonschlinkert/union-value", "description": "", "pathes": [ "." @@ -19247,7 +14881,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "vary", + "name": "uniq", "url": "Unknown", "description": "", "pathes": [ @@ -19261,8 +14895,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "vendors", - "url": "https://wooorm.com", + "name": "uniqs", + "url": "Unknown", "description": "", "pathes": [ "." @@ -19271,12 +14905,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "verror", - "url": "Unknown", + "name": "unique-filename", + "url": "https://github.com/iarna/unique-filename", "description": "", "pathes": [ "." @@ -19285,12 +14919,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "vm-browserify", - "url": "http://substack.net", + "name": "unique-slug", + "url": "http://re-becca.org", "description": "", "pathes": [ "." @@ -19303,8 +14937,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "vue", - "url": "https://github.com/vuejs/vue#readme", + "name": "universalify", + "url": "https://github.com/RyanZim/universalify#readme", "description": "", "pathes": [ "." @@ -19317,8 +14951,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "vue-disqus", - "url": "https://github.com/ktquez/vue-disqus#readme", + "name": "unpipe", + "url": "Unknown", "description": "", "pathes": [ "." @@ -19331,8 +14965,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "vue-hot-reload-api", - "url": "https://github.com/vuejs/vue-hot-reload-api#readme", + "name": "unquote", + "url": "https://github.com/lakenen/node-unquote", "description": "", "pathes": [ "." @@ -19345,8 +14979,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "vue-loader", - "url": "https://github.com/vuejs/vue-loader", + "name": "unset-value", + "url": "https://github.com/jonschlinkert/unset-value", "description": "", "pathes": [ "." @@ -19359,8 +14993,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "vue-meta", - "url": "https://github.com/declandewet/vue-meta", + "name": "upath", + "url": "http://github.com/anodynos/upath/", "description": "", "pathes": [ "." @@ -19369,12 +15003,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "vue-moment", - "url": "https://github.com/brockpetrie/vue-moment#readme", + "name": "upper-case", + "url": "https://github.com/blakeembrey/upper-case", "description": "", "pathes": [ "." @@ -19387,7 +15021,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "vue-no-ssr", + "name": "uppercamelcase", "url": "Unknown", "description": "", "pathes": [ @@ -19397,12 +15031,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "vue-resize", - "url": "https://github.com/Akryum/vue-resize#readme", + "name": "uri-js", + "url": "https://github.com/garycourt/uri-js", "description": "", "pathes": [ "." @@ -19415,8 +15049,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "vue-router", - "url": "https://github.com/vuejs/vue-router#readme", + "name": "urix", + "url": "Unknown", "description": "", "pathes": [ "." @@ -19429,8 +15063,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "vue-scrollto", - "url": "http://igor-randjelovic.com", + "name": "url", + "url": "Unknown", "description": "", "pathes": [ "." @@ -19443,8 +15077,8 @@ "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", + "name": "url-join", + "url": "http://joseoncode.com", "description": "", "pathes": [ "." @@ -19453,11 +15087,12 @@ }, { "license": { - "name": "UNKNOWN" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "vue-slideout", - "url": "Unknown", + "name": "url-loader", + "url": "https://github.com/webpack-contrib/url-loader", "description": "", "pathes": [ "." @@ -19470,8 +15105,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "vue-style-loader", - "url": "Unknown", + "name": "url-regex", + "url": "https://github.com/kevva", "description": "", "pathes": [ "." @@ -19484,8 +15119,8 @@ "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", + "name": "use", + "url": "https://github.com/jonschlinkert/use", "description": "", "pathes": [ "." @@ -19498,8 +15133,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "vue-template-es2015-compiler", - "url": "Unknown", + "name": "util", + "url": "https://github.com/defunctzombie/node-util", "description": "", "pathes": [ "." @@ -19512,8 +15147,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "vuex", - "url": "https://github.com/vuejs/vuex#readme", + "name": "util", + "url": "https://github.com/defunctzombie/node-util", "description": "", "pathes": [ "." @@ -19526,8 +15161,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "w3c-hr-time", - "url": "Unknown", + "name": "util-deprecate", + "url": "https://github.com/TooTallNate/util-deprecate", "description": "", "pathes": [ "." @@ -19540,8 +15175,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "watchpack", - "url": "https://github.com/webpack/watchpack", + "name": "util.promisify", + "url": "https://github.com/ljharb/util.promisify#readme", "description": "", "pathes": [ "." @@ -19550,12 +15185,12 @@ }, { "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "webidl-conversions", - "url": "https://domenic.me/", + "name": "utila", + "url": "Unknown", "description": "", "pathes": [ "." @@ -19568,8 +15203,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "webpack", - "url": "https://github.com/webpack/webpack", + "name": "utils-merge", + "url": "http://www.jaredhanson.net/", "description": "", "pathes": [ "." @@ -19582,8 +15217,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "webpack-bundle-analyzer", - "url": "https://github.com/webpack-contrib/webpack-bundle-analyzer", + "name": "uuid", + "url": "Unknown", "description": "", "pathes": [ "." @@ -19591,13 +15226,13 @@ } }, { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "license": { + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "webpack-dev-middleware", - "url": "https://github.com/webpack/webpack-dev-middleware", + "name": "v-tooltip", + "url": "https://github.com/Akryum/vue-tooltip#readme", "description": "", "pathes": [ "." @@ -19610,7 +15245,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "webpack-hot-middleware", + "name": "vary", "url": "Unknown", "description": "", "pathes": [ @@ -19624,8 +15259,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "webpack-info-plugin", - "url": "https://github.com/zinserjan/webpack-info-plugin#readme", + "name": "vendors", + "url": "https://wooorm.com", "description": "", "pathes": [ "." @@ -19638,8 +15273,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "webpack-log", - "url": "https://github.com/webpack-contrib/webpack-log#readme", + "name": "verror", + "url": "Unknown", "description": "", "pathes": [ "." @@ -19652,8 +15287,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "webpack-node-externals", - "url": "https://github.com/liady/webpack-node-externals", + "name": "vm-browserify", + "url": "http://substack.net", "description": "", "pathes": [ "." @@ -19666,8 +15301,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "webpack-sources", - "url": "https://github.com/webpack/webpack-sources#readme", + "name": "vue", + "url": "https://github.com/vuejs/vue#readme", "description": "", "pathes": [ "." @@ -19680,8 +15315,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "webpack-sources", - "url": "https://github.com/webpack/webpack-sources#readme", + "name": "vue-disqus", + "url": "https://github.com/ktquez/vue-disqus#readme", "description": "", "pathes": [ "." @@ -19694,8 +15329,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "webpackbar", - "url": "https://github.com/nuxt/webpackbar", + "name": "vue-hot-reload-api", + "url": "https://github.com/vuejs/vue-hot-reload-api#readme", "description": "", "pathes": [ "." @@ -19708,8 +15343,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "whatwg-encoding", - "url": "https://domenic.me/", + "name": "vue-loader", + "url": "https://github.com/vuejs/vue-loader", "description": "", "pathes": [ "." @@ -19722,8 +15357,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "whatwg-url", - "url": "Unknown", + "name": "vue-meta", + "url": "https://github.com/declandewet/vue-meta", "description": "", "pathes": [ "." @@ -19732,12 +15367,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "when", - "url": "http://cujojs.com/", + "name": "vue-moment", + "url": "https://github.com/brockpetrie/vue-moment#readme", "description": "", "pathes": [ "." @@ -19750,7 +15385,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "whet.extend", + "name": "vue-no-ssr", "url": "Unknown", "description": "", "pathes": [ @@ -19760,12 +15395,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "which", - "url": "http://blog.izs.me", + "name": "vue-resize", + "url": "https://github.com/Akryum/vue-resize#readme", "description": "", "pathes": [ "." @@ -19774,12 +15409,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "which", - "url": "http://blog.izs.me", + "name": "vue-router", + "url": "https://github.com/vuejs/vue-router#readme", "description": "", "pathes": [ "." @@ -19788,12 +15423,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "which-module", - "url": "https://github.com/nexdrew/which-module#readme", + "name": "vue-scrollto", + "url": "http://igor-randjelovic.com", "description": "", "pathes": [ "." @@ -19802,12 +15437,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "which-module", - "url": "https://github.com/nexdrew/which-module#readme", + "name": "vue-server-renderer", + "url": "https://github.com/vuejs/vue/tree/dev/packages/vue-server-renderer#readme", "description": "", "pathes": [ "." @@ -19816,12 +15451,11 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "UNKNOWN" }, "dependency": { - "name": "wide-align", - "url": "http://re-becca.org/", + "name": "vue-slideout", + "url": "Unknown", "description": "", "pathes": [ "." @@ -19834,8 +15468,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "widest-line", - "url": "sindresorhus.com", + "name": "vue-style-loader", + "url": "Unknown", "description": "", "pathes": [ "." @@ -19848,8 +15482,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "window", - "url": "https://github.com/lukechilds/window#readme", + "name": "vue-template-compiler", + "url": "https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme", "description": "", "pathes": [ "." @@ -19862,8 +15496,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "window-size", - "url": "https://github.com/jonschlinkert/window-size", + "name": "vue-template-es2015-compiler", + "url": "Unknown", "description": "", "pathes": [ "." @@ -19876,8 +15510,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "window-size", - "url": "https://github.com/jonschlinkert/window-size", + "name": "vuex", + "url": "https://github.com/vuejs/vuex#readme", "description": "", "pathes": [ "." @@ -19890,8 +15524,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "wordwrap", - "url": "http://substack.net", + "name": "watchpack", + "url": "https://github.com/webpack/watchpack", "description": "", "pathes": [ "." @@ -19904,8 +15538,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "wordwrap", - "url": "http://substack.net", + "name": "webpack", + "url": "https://github.com/webpack/webpack", "description": "", "pathes": [ "." @@ -19918,8 +15552,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "wordwrap", - "url": "http://substack.net", + "name": "webpack-bundle-analyzer", + "url": "https://github.com/webpack-contrib/webpack-bundle-analyzer", "description": "", "pathes": [ "." @@ -19928,12 +15562,12 @@ }, { "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "workbox-build", - "url": "https://github.com/GoogleChrome/workbox/tree/master/packages/workbox-build", + "name": "webpack-dev-middleware", + "url": "https://github.com/webpack/webpack-dev-middleware", "description": "", "pathes": [ "." @@ -19942,12 +15576,12 @@ }, { "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "workbox-sw", - "url": "https://github.com/GoogleChrome/workbox/tree/master/packages/workbox-sw", + "name": "webpack-hot-middleware", + "url": "Unknown", "description": "", "pathes": [ "." @@ -19960,8 +15594,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "worker-farm", - "url": "https://github.com/rvagg/node-worker-farm", + "name": "webpack-log", + "url": "https://github.com/webpack-contrib/webpack-log#readme", "description": "", "pathes": [ "." @@ -19974,8 +15608,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "wrap-ansi", - "url": "sindresorhus.com", + "name": "webpack-node-externals", + "url": "https://github.com/liady/webpack-node-externals", "description": "", "pathes": [ "." @@ -19988,8 +15622,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "wrap-ansi", - "url": "sindresorhus.com", + "name": "webpack-sources", + "url": "https://github.com/webpack/webpack-sources#readme", "description": "", "pathes": [ "." @@ -19998,12 +15632,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "wrappy", - "url": "https://github.com/npm/wrappy", + "name": "webpackbar", + "url": "https://github.com/nuxt/webpackbar", "description": "", "pathes": [ "." @@ -20016,8 +15650,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "write", - "url": "https://github.com/jonschlinkert/write", + "name": "whet.extend", + "url": "Unknown", "description": "", "pathes": [ "." @@ -20030,8 +15664,8 @@ "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "write-file-atomic", - "url": "https://github.com/iarna/write-file-atomic", + "name": "which", + "url": "http://blog.izs.me", "description": "", "pathes": [ "." @@ -20044,8 +15678,8 @@ "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "write-file-atomic", - "url": "https://github.com/iarna/write-file-atomic", + "name": "wide-align", + "url": "http://re-becca.org/", "description": "", "pathes": [ "." @@ -20058,7 +15692,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "write-json-file", + "name": "widest-line", "url": "sindresorhus.com", "description": "", "pathes": [ @@ -20068,12 +15702,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, "dependency": { - "name": "ws", - "url": "https://github.com/websockets/ws", + "name": "workbox-build", + "url": "https://github.com/GoogleChrome/workbox/tree/master/packages/workbox-build", "description": "", "pathes": [ "." @@ -20082,12 +15716,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, "dependency": { - "name": "ws", - "url": "https://github.com/websockets/ws", + "name": "workbox-sw", + "url": "https://github.com/GoogleChrome/workbox/tree/master/packages/workbox-sw", "description": "", "pathes": [ "." @@ -20100,8 +15734,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "ws", - "url": "https://github.com/websockets/ws", + "name": "worker-farm", + "url": "https://github.com/rvagg/node-worker-farm", "description": "", "pathes": [ "." @@ -20114,8 +15748,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "xhr", - "url": "https://github.com/naugtur/xhr", + "name": "wrap-ansi", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -20124,12 +15758,12 @@ }, { "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "xml-name-validator", - "url": "https://domenic.me/", + "name": "wrappy", + "url": "https://github.com/npm/wrappy", "description": "", "pathes": [ "." @@ -20138,12 +15772,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "xml-parse-from-string", - "url": "https://github.com/Jam3/xml-parse-from-string", + "name": "write-file-atomic", + "url": "https://github.com/iarna/write-file-atomic", "description": "", "pathes": [ "." @@ -20156,8 +15790,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "xml2js", - "url": "https://github.com/Leonidas-from-XIV/node-xml2js", + "name": "write-json-file", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -20170,8 +15804,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "xmlbuilder", - "url": "http://github.com/oozcitak/xmlbuilder-js", + "name": "ws", + "url": "https://github.com/websockets/ws", "description": "", "pathes": [ "." @@ -20184,8 +15818,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "xtend", - "url": "https://github.com/Raynos/xtend", + "name": "ws", + "url": "https://github.com/websockets/ws", "description": "", "pathes": [ "." @@ -20198,22 +15832,8 @@ "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", + "name": "xhr", + "url": "https://github.com/naugtur/xhr", "description": "", "pathes": [ "." @@ -20222,12 +15842,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "y18n", - "url": "https://github.com/yargs/y18n", + "name": "xml-parse-from-string", + "url": "https://github.com/Jam3/xml-parse-from-string", "description": "", "pathes": [ "." @@ -20236,12 +15856,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "yallist", - "url": "http://blog.izs.me/", + "name": "xml2js", + "url": "https://github.com/Leonidas-from-XIV/node-xml2js", "description": "", "pathes": [ "." @@ -20250,12 +15870,12 @@ }, { "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "yallist", - "url": "http://blog.izs.me/", + "name": "xmlbuilder", + "url": "http://github.com/oozcitak/xmlbuilder-js", "description": "", "pathes": [ "." @@ -20268,8 +15888,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "yargs", - "url": "http://yargs.js.org/", + "name": "xtend", + "url": "https://github.com/Raynos/xtend", "description": "", "pathes": [ "." @@ -20282,8 +15902,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "yargs", - "url": "http://CodeTunnel.com", + "name": "xxhashjs", + "url": "https://github.com/pierrec/js-xxhash", "description": "", "pathes": [ "." @@ -20292,12 +15912,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "yargs", - "url": "http://yargs.js.org/", + "name": "y18n", + "url": "https://github.com/yargs/y18n", "description": "", "pathes": [ "." @@ -20310,8 +15930,8 @@ "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "yargs-parser", - "url": "Unknown", + "name": "yallist", + "url": "http://blog.izs.me/", "description": "", "pathes": [ "." @@ -20324,8 +15944,8 @@ "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "yargs-parser", - "url": "Unknown", + "name": "yallist", + "url": "http://blog.izs.me/", "description": "", "pathes": [ "." @@ -20333,4 +15953,4 @@ } } ] -} +} \ No newline at end of file diff --git a/spec/fixtures/expected/js/yarn/v1.1.json b/spec/fixtures/expected/js/yarn/v1.1.json index 41885a4..d197e7b 100644 --- a/spec/fixtures/expected/js/yarn/v1.1.json +++ b/spec/fixtures/expected/js/yarn/v1.1.json @@ -2,44 +2,28 @@ "version": "1.1", "licenses": [ { - "count": 1176, + "count": 949, "name": "MIT" }, { - "count": 121, + "count": 87, "name": "ISC" }, - { - "count": 39, - "name": "New BSD" - }, - { - "count": 34, - "name": "Simplified BSD" - }, { "count": 23, - "name": "Apache 2.0" + "name": "Simplified BSD" }, { "count": 22, - "name": "CC0-1.0" - }, - { - "count": 4, - "name": "MIT*" - }, - { - "count": 3, - "name": "Apache*" + "name": "New BSD" }, { - "count": 2, - "name": "(WTFPL OR MIT)" + "count": 21, + "name": "CC0-1.0" }, { - "count": 2, - "name": "BSD" + "count": 14, + "name": "Apache 2.0" }, { "count": 2, @@ -47,7 +31,7 @@ }, { "count": 2, - "name": "SEE LICENSE IN LICENSE" + "name": "MIT*" }, { "count": 2, @@ -83,15 +67,11 @@ }, { "count": 1, - "name": "BSD*" - }, - { - "count": 1, - "name": "BSD-3-Clause OR MIT" + "name": "(WTFPL OR MIT)" }, { "count": 1, - "name": "CC-BY-3.0" + "name": "BSD*" }, { "count": 1, @@ -108,10 +88,6 @@ { "count": 1, "name": "UNKNOWN" - }, - { - "count": 1, - "name": "WTFPL" } ], "dependencies": [ @@ -2805,8 +2781,8 @@ "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "abab", - "url": "https://github.com/jsdom/abab#readme", + "name": "abbrev", + "url": "Unknown", "description": "", "pathes": [ "." @@ -2816,16 +2792,16 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "abbrev", + "name": "accepts", "url": "Unknown", "description": "", "pathes": [ @@ -2845,8 +2821,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "accepts", - "url": "Unknown", + "name": "acorn", + "url": "https://github.com/acornjs/acorn", "description": "", "pathes": [ "." @@ -2865,8 +2841,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "acorn", - "url": "https://github.com/ternjs/acorn", + "name": "acorn-dynamic-import", + "url": "https://github.com/kesne/acorn-dynamic-import", "description": "", "pathes": [ "." @@ -2885,7 +2861,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "acorn", + "name": "acorn-walk", "url": "https://github.com/acornjs/acorn", "description": "", "pathes": [ @@ -2905,8 +2881,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "acorn", - "url": "https://github.com/acornjs/acorn", + "name": "ajv", + "url": "https://github.com/epoberezkin/ajv", "description": "", "pathes": [ "." @@ -2925,8 +2901,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "acorn", - "url": "https://github.com/acornjs/acorn", + "name": "ajv", + "url": "https://github.com/epoberezkin/ajv", "description": "", "pathes": [ "." @@ -2945,8 +2921,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "acorn-dynamic-import", - "url": "https://github.com/kesne/acorn-dynamic-import", + "name": "ajv-errors", + "url": "https://github.com/epoberezkin/ajv-errors#readme", "description": "", "pathes": [ "." @@ -2965,8 +2941,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "acorn-globals", - "url": "Unknown", + "name": "ajv-keywords", + "url": "https://github.com/epoberezkin/ajv-keywords#readme", "description": "", "pathes": [ "." @@ -2985,8 +2961,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "acorn-jsx", - "url": "https://github.com/RReverser/acorn-jsx", + "name": "alphanum-sort", + "url": "https://github.com/TrySound/alphanum-sort", "description": "", "pathes": [ "." @@ -2996,17 +2972,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "acorn-walk", - "url": "https://github.com/acornjs/acorn", + "name": "ansi-align", + "url": "https://github.com/nexdrew/ansi-align#readme", "description": "", "pathes": [ "." @@ -3025,8 +3001,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "ajv", - "url": "https://github.com/epoberezkin/ajv", + "name": "ansi-colors", + "url": "https://github.com/doowb/ansi-colors", "description": "", "pathes": [ "." @@ -3045,8 +3021,28 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "ajv", - "url": "https://github.com/epoberezkin/ajv", + "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": [ "." @@ -3065,8 +3061,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "ajv-errors", - "url": "https://github.com/epoberezkin/ajv-errors#readme", + "name": "ansi-regex", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -3085,8 +3081,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "ajv-keywords", - "url": "https://github.com/epoberezkin/ajv-keywords#readme", + "name": "ansi-regex", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -3105,8 +3101,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "ajv-keywords", - "url": "https://github.com/epoberezkin/ajv-keywords#readme", + "name": "ansi-regex", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -3125,8 +3121,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "align-text", - "url": "https://github.com/jonschlinkert/align-text", + "name": "ansi-styles", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -3145,8 +3141,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "alphanum-sort", - "url": "https://github.com/TrySound/alphanum-sort", + "name": "ansi-styles", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -3156,16 +3152,17 @@ { "licenses": [ { - "name": "BSD-3-Clause OR MIT", - "url": "" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "BSD-3-Clause OR MIT" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "amdefine", - "url": "http://github.com/jrburke/amdefine", + "name": "anymatch", + "url": "https://github.com/micromatch/anymatch", "description": "", "pathes": [ "." @@ -3184,8 +3181,8 @@ "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "ansi-align", - "url": "https://github.com/nexdrew/ansi-align#readme", + "name": "anymatch", + "url": "https://github.com/micromatch/anymatch", "description": "", "pathes": [ "." @@ -3195,17 +3192,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "ansi-colors", - "url": "https://github.com/doowb/ansi-colors", + "name": "aproba", + "url": "https://github.com/iarna/aproba", "description": "", "pathes": [ "." @@ -3215,17 +3212,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "ansi-escapes", - "url": "sindresorhus.com", + "name": "are-we-there-yet", + "url": "https://github.com/iarna/are-we-there-yet", "description": "", "pathes": [ "." @@ -3244,8 +3241,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "ansi-escapes", - "url": "sindresorhus.com", + "name": "argparse", + "url": "Unknown", "description": "", "pathes": [ "." @@ -3255,17 +3252,17 @@ { "licenses": [ { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "ansi-html", - "url": "https://github.com/Tjatse/ansi-html", + "name": "arr-diff", + "url": "https://github.com/jonschlinkert/arr-diff", "description": "", "pathes": [ "." @@ -3284,8 +3281,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "ansi-regex", - "url": "sindresorhus.com", + "name": "arr-diff", + "url": "https://github.com/jonschlinkert/arr-diff", "description": "", "pathes": [ "." @@ -3304,8 +3301,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "ansi-regex", - "url": "sindresorhus.com", + "name": "arr-flatten", + "url": "https://github.com/jonschlinkert/arr-flatten", "description": "", "pathes": [ "." @@ -3324,8 +3321,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "ansi-regex", - "url": "sindresorhus.com", + "name": "arr-union", + "url": "https://github.com/jonschlinkert/arr-union", "description": "", "pathes": [ "." @@ -3344,8 +3341,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "ansi-styles", - "url": "sindresorhus.com", + "name": "array-filter", + "url": "https://github.com/juliangruber/array-filter", "description": "", "pathes": [ "." @@ -3364,8 +3361,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "ansi-styles", - "url": "sindresorhus.com", + "name": "array-flatten", + "url": "https://github.com/blakeembrey/array-flatten", "description": "", "pathes": [ "." @@ -3375,17 +3372,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "anymatch", - "url": "https://github.com/es128/anymatch", + "name": "array-map", + "url": "https://github.com/substack/array-map", "description": "", "pathes": [ "." @@ -3395,17 +3392,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "anymatch", - "url": "https://github.com/micromatch/anymatch", + "name": "array-reduce", + "url": "https://github.com/substack/array-reduce", "description": "", "pathes": [ "." @@ -3415,17 +3412,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "anymatch", - "url": "https://github.com/micromatch/anymatch", + "name": "array-unique", + "url": "https://github.com/jonschlinkert/array-unique", "description": "", "pathes": [ "." @@ -3444,8 +3441,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "append-transform", - "url": "github.com/jamestalmage", + "name": "array-unique", + "url": "https://github.com/jonschlinkert/array-unique", "description": "", "pathes": [ "." @@ -3455,17 +3452,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "aproba", - "url": "https://github.com/iarna/aproba", + "name": "asn1", + "url": "joyent.com", "description": "", "pathes": [ "." @@ -3484,8 +3481,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "archy", - "url": "http://substack.net", + "name": "asn1.js", + "url": "https://github.com/indutny/asn1.js", "description": "", "pathes": [ "." @@ -3495,17 +3492,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "are-we-there-yet", - "url": "https://github.com/iarna/are-we-there-yet", + "name": "assert", + "url": "https://github.com/browserify/commonjs-assert", "description": "", "pathes": [ "." @@ -3524,7 +3521,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "argparse", + "name": "assert-plus", "url": "Unknown", "description": "", "pathes": [ @@ -3544,8 +3541,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "arr-diff", - "url": "https://github.com/jonschlinkert/arr-diff", + "name": "assign-symbols", + "url": "https://github.com/jonschlinkert/assign-symbols", "description": "", "pathes": [ "." @@ -3564,8 +3561,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "arr-diff", - "url": "https://github.com/jonschlinkert/arr-diff", + "name": "async", + "url": "https://caolan.github.io/async/", "description": "", "pathes": [ "." @@ -3575,17 +3572,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "arr-flatten", - "url": "https://github.com/jonschlinkert/arr-flatten", + "name": "async-cache", + "url": "http://blog.izs.me/", "description": "", "pathes": [ "." @@ -3604,8 +3601,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "arr-union", - "url": "https://github.com/jonschlinkert/arr-union", + "name": "async-each", + "url": "https://github.com/paulmillr/async-each/", "description": "", "pathes": [ "." @@ -3624,8 +3621,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "array-equal", - "url": "http://jongleberry.com", + "name": "async-limiter", + "url": "Unknown", "description": "", "pathes": [ "." @@ -3644,8 +3641,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "array-filter", - "url": "https://github.com/juliangruber/array-filter", + "name": "asynckit", + "url": "https://github.com/alexindigo/asynckit#readme", "description": "", "pathes": [ "." @@ -3655,17 +3652,16 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "(MIT OR Apache-2.0)", + "url": "" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "(MIT OR Apache-2.0)" }, "dependency": { - "name": "array-flatten", - "url": "https://github.com/blakeembrey/array-flatten", + "name": "atob", + "url": "https://git.coolaj86.com/coolaj86/atob.js.git", "description": "", "pathes": [ "." @@ -3684,8 +3680,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "array-map", - "url": "https://github.com/substack/array-map", + "name": "autoprefixer", + "url": "Unknown", "description": "", "pathes": [ "." @@ -3704,8 +3700,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "array-reduce", - "url": "https://github.com/substack/array-reduce", + "name": "autoprefixer", + "url": "Unknown", "description": "", "pathes": [ "." @@ -3715,17 +3711,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, "dependency": { - "name": "array-union", - "url": "sindresorhus.com", + "name": "aws-sign2", + "url": "http://www.futurealoof.com", "description": "", "pathes": [ "." @@ -3744,8 +3740,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "array-uniq", - "url": "sindresorhus.com", + "name": "aws4", + "url": "http://github.com/mhart", "description": "", "pathes": [ "." @@ -3764,8 +3760,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "array-unique", - "url": "https://github.com/jonschlinkert/array-unique", + "name": "axios", + "url": "https://github.com/axios/axios", "description": "", "pathes": [ "." @@ -3775,17 +3771,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, "dependency": { - "name": "array-unique", - "url": "https://github.com/jonschlinkert/array-unique", + "name": "axios-retry", + "url": "https://github.com/softonic/axios-retry", "description": "", "pathes": [ "." @@ -3804,8 +3800,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "arrify", - "url": "sindresorhus.com", + "name": "babel-loader", + "url": "https://github.com/babel/babel-loader", "description": "", "pathes": [ "." @@ -3824,8 +3820,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "asn1", - "url": "Unknown", + "name": "balanced-match", + "url": "https://github.com/juliangruber/balanced-match", "description": "", "pathes": [ "." @@ -3844,8 +3840,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "asn1", - "url": "joyent.com", + "name": "balanced-match", + "url": "https://github.com/juliangruber/balanced-match", "description": "", "pathes": [ "." @@ -3864,8 +3860,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "asn1.js", - "url": "https://github.com/indutny/asn1.js", + "name": "base", + "url": "https://github.com/node-base/base", "description": "", "pathes": [ "." @@ -3884,8 +3880,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "assert", - "url": "https://github.com/browserify/commonjs-assert", + "name": "base64-js", + "url": "https://github.com/beatgammit/base64-js", "description": "", "pathes": [ "." @@ -3895,15 +3891,16 @@ { "licenses": [ { - "name": "MIT*", - "url": "" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" } ], "license": { - "name": "MIT*" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "assert-plus", + "name": "bcrypt-pbkdf", "url": "Unknown", "description": "", "pathes": [ @@ -3923,7 +3920,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "assert-plus", + "name": "bezier-easing", "url": "Unknown", "description": "", "pathes": [ @@ -3943,8 +3940,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "assertion-error", - "url": "http://qualiancy.com", + "name": "bfj", + "url": "https://gitlab.com/philbooth/bfj", "description": "", "pathes": [ "." @@ -3963,8 +3960,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "assign-symbols", - "url": "https://github.com/jonschlinkert/assign-symbols", + "name": "big.js", + "url": "Unknown", "description": "", "pathes": [ "." @@ -3983,7 +3980,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "async", + "name": "big.js", "url": "Unknown", "description": "", "pathes": [ @@ -4003,7 +4000,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "async", + "name": "bignumber.js", "url": "Unknown", "description": "", "pathes": [ @@ -4023,8 +4020,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "async", - "url": "https://caolan.github.io/async/", + "name": "binary-extensions", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -4034,17 +4031,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "async-cache", - "url": "http://blog.izs.me/", + "name": "binary-extensions", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -4063,8 +4060,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "async-each", - "url": "https://github.com/paulmillr/async-each/", + "name": "bluebird", + "url": "https://github.com/petkaantonov/bluebird", "description": "", "pathes": [ "." @@ -4083,7 +4080,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "async-limiter", + "name": "bmp-js", "url": "Unknown", "description": "", "pathes": [ @@ -4103,8 +4100,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "asynckit", - "url": "https://github.com/alexindigo/asynckit#readme", + "name": "bn.js", + "url": "https://github.com/indutny/bn.js", "description": "", "pathes": [ "." @@ -4114,16 +4111,17 @@ { "licenses": [ { - "name": "(MIT OR Apache-2.0)", - "url": "" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "(MIT OR Apache-2.0)" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "atob", - "url": "https://git.coolaj86.com/coolaj86/atob.js.git", + "name": "body-parser", + "url": "Unknown", "description": "", "pathes": [ "." @@ -4133,17 +4131,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "autoprefixer", - "url": "Unknown", + "name": "boolbase", + "url": "https://github.com/fb55/boolbase", "description": "", "pathes": [ "." @@ -4153,16 +4151,16 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "autoprefixer", + "name": "boom", "url": "Unknown", "description": "", "pathes": [ @@ -4173,16 +4171,17 @@ { "licenses": [ { - "name": "Apache*", - "url": "" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" } ], "license": { - "name": "Apache*" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "aws-sign2", - "url": "http://www.futurealoof.com", + "name": "boom", + "url": "Unknown", "description": "", "pathes": [ "." @@ -4192,17 +4191,17 @@ { "licenses": [ { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "aws-sign2", - "url": "http://www.futurealoof.com", + "name": "boxen", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -4221,8 +4220,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "aws4", - "url": "http://github.com/mhart", + "name": "brace-expansion", + "url": "https://github.com/juliangruber/brace-expansion", "description": "", "pathes": [ "." @@ -4241,8 +4240,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "axios", - "url": "https://github.com/axios/axios", + "name": "braces", + "url": "https://github.com/jonschlinkert/braces", "description": "", "pathes": [ "." @@ -4252,17 +4251,17 @@ { "licenses": [ { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "axios-retry", - "url": "https://github.com/softonic/axios-retry", + "name": "braces", + "url": "https://github.com/micromatch/braces", "description": "", "pathes": [ "." @@ -4281,8 +4280,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "babel-code-frame", - "url": "https://babeljs.io/", + "name": "braces", + "url": "https://github.com/micromatch/braces", "description": "", "pathes": [ "." @@ -4301,8 +4300,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "babel-eslint", - "url": "https://github.com/babel/babel-eslint", + "name": "brorand", + "url": "https://github.com/indutny/brorand", "description": "", "pathes": [ "." @@ -4321,8 +4320,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "babel-generator", - "url": "https://babeljs.io/", + "name": "browserify-aes", + "url": "https://github.com/crypto-browserify/browserify-aes", "description": "", "pathes": [ "." @@ -4341,8 +4340,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "babel-loader", - "url": "https://github.com/babel/babel-loader", + "name": "browserify-cipher", + "url": "Unknown", "description": "", "pathes": [ "." @@ -4361,8 +4360,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "babel-messages", - "url": "https://babeljs.io/", + "name": "browserify-des", + "url": "https://github.com/crypto-browserify/browserify-des#readme", "description": "", "pathes": [ "." @@ -4381,7 +4380,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "babel-runtime", + "name": "browserify-rsa", "url": "Unknown", "description": "", "pathes": [ @@ -4392,17 +4391,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "babel-template", - "url": "https://babeljs.io/", + "name": "browserify-sign", + "url": "Unknown", "description": "", "pathes": [ "." @@ -4421,8 +4420,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "babel-traverse", - "url": "https://babeljs.io/", + "name": "browserify-zlib", + "url": "https://github.com/devongovett/browserify-zlib", "description": "", "pathes": [ "." @@ -4441,8 +4440,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "babel-types", - "url": "https://babeljs.io/", + "name": "browserslist", + "url": "Unknown", "description": "", "pathes": [ "." @@ -4461,8 +4460,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "babylon", - "url": "https://babeljs.io/", + "name": "browserslist", + "url": "Unknown", "description": "", "pathes": [ "." @@ -4481,8 +4480,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "balanced-match", - "url": "https://github.com/juliangruber/balanced-match", + "name": "buffer", + "url": "https://github.com/feross/buffer", "description": "", "pathes": [ "." @@ -4501,8 +4500,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "balanced-match", - "url": "https://github.com/juliangruber/balanced-match", + "name": "buffer-equal", + "url": "http://substack.net", "description": "", "pathes": [ "." @@ -4521,8 +4520,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "base", - "url": "https://github.com/node-base/base", + "name": "buffer-from", + "url": "Unknown", "description": "", "pathes": [ "." @@ -4541,8 +4540,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "base64-js", - "url": "https://github.com/beatgammit/base64-js", + "name": "buffer-json", + "url": "https://github.com/jprichardson/buffer-json#readme", "description": "", "pathes": [ "." @@ -4552,17 +4551,17 @@ { "licenses": [ { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "bcrypt-pbkdf", - "url": "Unknown", + "name": "buffer-xor", + "url": "https://github.com/crypto-browserify/buffer-xor", "description": "", "pathes": [ "." @@ -4581,8 +4580,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "bezier-easing", - "url": "Unknown", + "name": "builtin-status-codes", + "url": "bendrucker.me", "description": "", "pathes": [ "." @@ -4601,8 +4600,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "bfj", - "url": "https://gitlab.com/philbooth/bfj", + "name": "bytes", + "url": "http://tjholowaychuk.com", "description": "", "pathes": [ "." @@ -4621,8 +4620,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "big.js", - "url": "Unknown", + "name": "bytes", + "url": "http://tjholowaychuk.com", "description": "", "pathes": [ "." @@ -4632,16 +4631,16 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "big.js", + "name": "cacache", "url": "Unknown", "description": "", "pathes": [ @@ -4661,8 +4660,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "bignumber.js", - "url": "Unknown", + "name": "cache-base", + "url": "https://github.com/jonschlinkert/cache-base", "description": "", "pathes": [ "." @@ -4681,8 +4680,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "binary-extensions", - "url": "sindresorhus.com", + "name": "cache-loader", + "url": "https://github.com/webpack-contrib/cache-loader", "description": "", "pathes": [ "." @@ -4701,7 +4700,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "binary-extensions", + "name": "caller-callsite", "url": "sindresorhus.com", "description": "", "pathes": [ @@ -4721,8 +4720,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "bl", - "url": "https://github.com/rvagg/bl", + "name": "caller-path", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -4741,8 +4740,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "bluebird", - "url": "https://github.com/petkaantonov/bluebird", + "name": "callsites", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -4761,8 +4760,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "bmp-js", - "url": "Unknown", + "name": "camel-case", + "url": "https://github.com/blakeembrey/camel-case", "description": "", "pathes": [ "." @@ -4781,8 +4780,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "bn.js", - "url": "https://github.com/indutny/bn.js", + "name": "camelcase", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -4801,8 +4800,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "body-parser", - "url": "Unknown", + "name": "camelcase", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -4812,17 +4811,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "boolbase", - "url": "https://github.com/fb55/boolbase", + "name": "caniuse-api", + "url": "Unknown", "description": "", "pathes": [ "." @@ -4832,17 +4831,17 @@ { "licenses": [ { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "boom", - "url": "http://hueniverse.com", + "name": "caniuse-api", + "url": "Unknown", "description": "", "pathes": [ "." @@ -4852,16 +4851,15 @@ { "licenses": [ { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "CC-BY-4.0", + "url": "" } ], "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "CC-BY-4.0" }, "dependency": { - "name": "boom", + "name": "caniuse-db", "url": "Unknown", "description": "", "pathes": [ @@ -4872,17 +4870,16 @@ { "licenses": [ { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "CC-BY-4.0", + "url": "" } ], "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "CC-BY-4.0" }, "dependency": { - "name": "boom", - "url": "Unknown", + "name": "caniuse-lite", + "url": "http://beneb.info", "description": "", "pathes": [ "." @@ -4892,17 +4889,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, "dependency": { - "name": "boxen", - "url": "sindresorhus.com", + "name": "caseless", + "url": "Unknown", "description": "", "pathes": [ "." @@ -4921,8 +4918,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "brace-expansion", - "url": "https://github.com/juliangruber/brace-expansion", + "name": "chalk", + "url": "Unknown", "description": "", "pathes": [ "." @@ -4941,8 +4938,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "braces", - "url": "https://github.com/jonschlinkert/braces", + "name": "chalk", + "url": "Unknown", "description": "", "pathes": [ "." @@ -4961,8 +4958,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "braces", - "url": "https://github.com/micromatch/braces", + "name": "chalk", + "url": "Unknown", "description": "", "pathes": [ "." @@ -4981,8 +4978,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "braces", - "url": "https://github.com/micromatch/braces", + "name": "check-types", + "url": "https://gitlab.com/philbooth/check-types.js", "description": "", "pathes": [ "." @@ -5001,8 +4998,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "brorand", - "url": "https://github.com/indutny/brorand", + "name": "chokidar", + "url": "https://github.com/paulmillr/chokidar", "description": "", "pathes": [ "." @@ -5021,8 +5018,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "browser-env", - "url": "https://github.com/lukechilds/browser-env#readme", + "name": "chokidar", + "url": "https://github.com/paulmillr/chokidar", "description": "", "pathes": [ "." @@ -5032,17 +5029,17 @@ { "licenses": [ { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "browser-process-hrtime", - "url": "Unknown", + "name": "chownr", + "url": "http://blog.izs.me/", "description": "", "pathes": [ "." @@ -5052,16 +5049,16 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "browser-stdout", + "name": "chrome-trace-event", "url": "Unknown", "description": "", "pathes": [ @@ -5081,8 +5078,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "browserify-aes", - "url": "https://github.com/crypto-browserify/browserify-aes", + "name": "ci-info", + "url": "https://github.com/watson/ci-info", "description": "", "pathes": [ "." @@ -5101,8 +5098,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "browserify-cipher", - "url": "Unknown", + "name": "cipher-base", + "url": "https://github.com/crypto-browserify/cipher-base#readme", "description": "", "pathes": [ "." @@ -5121,8 +5118,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "browserify-des", - "url": "https://github.com/crypto-browserify/browserify-des#readme", + "name": "clap", + "url": "https://github.com/lahmatiy/clap", "description": "", "pathes": [ "." @@ -5141,8 +5138,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "browserify-rsa", - "url": "Unknown", + "name": "class-utils", + "url": "https://github.com/jonschlinkert/class-utils", "description": "", "pathes": [ "." @@ -5152,17 +5149,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "browserify-sign", - "url": "Unknown", + "name": "clean-css", + "url": "https://github.com/jakubpawlowicz/clean-css", "description": "", "pathes": [ "." @@ -5181,8 +5178,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "browserify-zlib", - "url": "https://github.com/devongovett/browserify-zlib", + "name": "cli-boxes", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -5201,8 +5198,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "browserslist", - "url": "Unknown", + "name": "clone", + "url": "http://paul.vorba.ch/", "description": "", "pathes": [ "." @@ -5221,7 +5218,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "browserslist", + "name": "co", "url": "Unknown", "description": "", "pathes": [ @@ -5241,8 +5238,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "buffer", - "url": "https://github.com/feross/buffer", + "name": "coa", + "url": "http://github.com/veged/coa", "description": "", "pathes": [ "." @@ -5261,8 +5258,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "buffer-equal", - "url": "http://substack.net", + "name": "coa", + "url": "http://github.com/veged/coa", "description": "", "pathes": [ "." @@ -5281,8 +5278,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "buffer-from", - "url": "Unknown", + "name": "code-point-at", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -5301,8 +5298,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "buffer-json", - "url": "https://github.com/jprichardson/buffer-json#readme", + "name": "collection-visit", + "url": "https://github.com/jonschlinkert/collection-visit", "description": "", "pathes": [ "." @@ -5321,8 +5318,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "buffer-xor", - "url": "https://github.com/crypto-browserify/buffer-xor", + "name": "color", + "url": "Unknown", "description": "", "pathes": [ "." @@ -5341,8 +5338,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "builtin-modules", - "url": "sindresorhus.com", + "name": "color", + "url": "Unknown", "description": "", "pathes": [ "." @@ -5361,8 +5358,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "builtin-status-codes", - "url": "bendrucker.me", + "name": "color-convert", + "url": "Unknown", "description": "", "pathes": [ "." @@ -5381,8 +5378,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "bytes", - "url": "http://tjholowaychuk.com", + "name": "color-name", + "url": "https://github.com/dfcreative/color-name", "description": "", "pathes": [ "." @@ -5401,9 +5398,9 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "bytes", - "url": "http://tjholowaychuk.com", - "description": "", + "name": "color-name", + "url": "https://github.com/colorjs/color-name", + "description": "", "pathes": [ "." ] @@ -5412,16 +5409,16 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cacache", + "name": "color-string", "url": "Unknown", "description": "", "pathes": [ @@ -5441,8 +5438,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cache-base", - "url": "https://github.com/jonschlinkert/cache-base", + "name": "color-string", + "url": "Unknown", "description": "", "pathes": [ "." @@ -5461,8 +5458,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cache-loader", - "url": "https://github.com/webpack-contrib/cache-loader", + "name": "colormin", + "url": "https://github.com/ben-eb/colormin", "description": "", "pathes": [ "." @@ -5481,8 +5478,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "caching-transform", - "url": "github.com/jamestalmage", + "name": "colors", + "url": "https://github.com/Marak/colors.js", "description": "", "pathes": [ "." @@ -5501,8 +5498,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "caller-callsite", - "url": "sindresorhus.com", + "name": "combined-stream", + "url": "https://github.com/felixge/node-combined-stream", "description": "", "pathes": [ "." @@ -5521,8 +5518,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "caller-path", - "url": "http://sindresorhus.com", + "name": "commander", + "url": "Unknown", "description": "", "pathes": [ "." @@ -5541,8 +5538,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "caller-path", - "url": "sindresorhus.com", + "name": "commander", + "url": "Unknown", "description": "", "pathes": [ "." @@ -5561,8 +5558,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "callsites", - "url": "http://sindresorhus.com", + "name": "commander", + "url": "Unknown", "description": "", "pathes": [ "." @@ -5581,8 +5578,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "callsites", - "url": "sindresorhus.com", + "name": "commondir", + "url": "http://substack.net", "description": "", "pathes": [ "." @@ -5601,8 +5598,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "camel-case", - "url": "https://github.com/blakeembrey/camel-case", + "name": "component-emitter", + "url": "Unknown", "description": "", "pathes": [ "." @@ -5621,8 +5618,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "camelcase", - "url": "http://sindresorhus.com", + "name": "compressible", + "url": "Unknown", "description": "", "pathes": [ "." @@ -5641,8 +5638,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "camelcase", - "url": "http://sindresorhus.com", + "name": "compression", + "url": "Unknown", "description": "", "pathes": [ "." @@ -5661,8 +5658,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "camelcase", - "url": "sindresorhus.com", + "name": "concat-map", + "url": "http://substack.net", "description": "", "pathes": [ "." @@ -5681,8 +5678,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "camelcase", - "url": "sindresorhus.com", + "name": "concat-stream", + "url": "Unknown", "description": "", "pathes": [ "." @@ -5701,8 +5698,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "caniuse-api", - "url": "Unknown", + "name": "connect", + "url": "http://tjholowaychuk.com", "description": "", "pathes": [ "." @@ -5721,7 +5718,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "caniuse-api", + "name": "consola", "url": "Unknown", "description": "", "pathes": [ @@ -5732,16 +5729,17 @@ { "licenses": [ { - "name": "CC-BY-4.0", - "url": "" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "CC-BY-4.0" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "caniuse-db", - "url": "Unknown", + "name": "console-browserify", + "url": "https://github.com/Raynos/console-browserify", "description": "", "pathes": [ "." @@ -5751,16 +5749,17 @@ { "licenses": [ { - "name": "CC-BY-4.0", - "url": "" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "CC-BY-4.0" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "caniuse-lite", - "url": "http://beneb.info", + "name": "console-control-strings", + "url": "http://re-becca.org/", "description": "", "pathes": [ "." @@ -5770,17 +5769,17 @@ { "licenses": [ { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "caseless", - "url": "Unknown", + "name": "consolidate", + "url": "https://github.com/tj/consolidate.js", "description": "", "pathes": [ "." @@ -5790,17 +5789,17 @@ { "licenses": [ { - "name": "BSD", - "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "BSD", - "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "caseless", - "url": "Unknown", + "name": "constants-browserify", + "url": "https://github.com/juliangruber/constants-browserify", "description": "", "pathes": [ "." @@ -5819,8 +5818,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "center-align", - "url": "https://github.com/jonschlinkert/center-align", + "name": "content-disposition", + "url": "Unknown", "description": "", "pathes": [ "." @@ -5839,8 +5838,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "chai", - "url": "http://chaijs.com/", + "name": "content-type", + "url": "Unknown", "description": "", "pathes": [ "." @@ -5859,8 +5858,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "chalk", - "url": "Unknown", + "name": "convert-source-map", + "url": "https://github.com/thlorenz/convert-source-map", "description": "", "pathes": [ "." @@ -5879,7 +5878,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "chalk", + "name": "cookie", "url": "Unknown", "description": "", "pathes": [ @@ -5899,7 +5898,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "chalk", + "name": "cookie", "url": "Unknown", "description": "", "pathes": [ @@ -5919,8 +5918,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "chardet", - "url": "https://github.com/runk/node-chardet", + "name": "cookie-signature", + "url": "Unknown", "description": "", "pathes": [ "." @@ -5930,17 +5929,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "check-error", - "url": "http://alogicalparadox.com", + "name": "copy-concurrently", + "url": "https://www.npmjs.com/package/copy-concurrently", "description": "", "pathes": [ "." @@ -5959,8 +5958,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "check-types", - "url": "https://gitlab.com/philbooth/check-types.js", + "name": "copy-descriptor", + "url": "https://github.com/jonschlinkert/copy-descriptor", "description": "", "pathes": [ "." @@ -5979,8 +5978,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "chokidar", - "url": "https://github.com/paulmillr/chokidar", + "name": "core-js", + "url": "Unknown", "description": "", "pathes": [ "." @@ -5999,8 +5998,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "chokidar", - "url": "https://github.com/paulmillr/chokidar", + "name": "core-js-compat", + "url": "Unknown", "description": "", "pathes": [ "." @@ -6010,17 +6009,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "chownr", - "url": "http://blog.izs.me/", + "name": "core-js-pure", + "url": "Unknown", "description": "", "pathes": [ "." @@ -6039,8 +6038,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "chrome-trace-event", - "url": "Unknown", + "name": "core-util-is", + "url": "http://blog.izs.me/", "description": "", "pathes": [ "." @@ -6059,8 +6058,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "ci-info", - "url": "https://github.com/watson/ci-info", + "name": "cosmiconfig", + "url": "https://github.com/davidtheclark/cosmiconfig#readme", "description": "", "pathes": [ "." @@ -6079,8 +6078,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "ci-info", - "url": "https://github.com/watson/ci-info", + "name": "cosmiconfig", + "url": "https://github.com/davidtheclark/cosmiconfig#readme", "description": "", "pathes": [ "." @@ -6099,8 +6098,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cipher-base", - "url": "https://github.com/crypto-browserify/cipher-base#readme", + "name": "create-ecdh", + "url": "https://github.com/crypto-browserify/createECDH", "description": "", "pathes": [ "." @@ -6119,8 +6118,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "circular-json", - "url": "https://github.com/WebReflection/circular-json", + "name": "create-hash", + "url": "https://github.com/crypto-browserify/createHash", "description": "", "pathes": [ "." @@ -6139,8 +6138,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "clap", - "url": "https://github.com/lahmatiy/clap", + "name": "create-hmac", + "url": "https://github.com/crypto-browserify/createHmac", "description": "", "pathes": [ "." @@ -6159,8 +6158,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "class-utils", - "url": "https://github.com/jonschlinkert/class-utils", + "name": "cross-spawn", + "url": "http://indigounited.com", "description": "", "pathes": [ "." @@ -6179,8 +6178,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "clean-css", - "url": "https://github.com/jakubpawlowicz/clean-css", + "name": "cross-spawn", + "url": "https://github.com/moxystudio/node-cross-spawn", "description": "", "pathes": [ "." @@ -6190,17 +6189,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "cli-boxes", - "url": "sindresorhus.com", + "name": "cryptiles", + "url": "Unknown", "description": "", "pathes": [ "." @@ -6219,8 +6218,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cli-cursor", - "url": "sindresorhus.com", + "name": "crypto-browserify", + "url": "https://github.com/crypto-browserify/crypto-browserify", "description": "", "pathes": [ "." @@ -6230,17 +6229,16 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "CC0-1.0", + "url": "" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "CC0-1.0" }, "dependency": { - "name": "cli-width", - "url": "https://github.com/knownasilya/cli-width", + "name": "css-blank-pseudo", + "url": "https://github.com/csstools/css-blank-pseudo#readme", "description": "", "pathes": [ "." @@ -6250,17 +6248,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cliui", - "url": "Unknown", + "name": "css-color-names", + "url": "http://www.daveeddy.com", "description": "", "pathes": [ "." @@ -6270,17 +6268,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cliui", - "url": "Unknown", + "name": "css-declaration-sorter", + "url": "https://selwyn.cc/", "description": "", "pathes": [ "." @@ -6290,17 +6288,16 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "CC0-1.0", + "url": "" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "CC0-1.0" }, "dependency": { - "name": "cliui", - "url": "Unknown", + "name": "css-has-pseudo", + "url": "https://github.com/csstools/css-has-pseudo#readme", "description": "", "pathes": [ "." @@ -6319,8 +6316,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "clone", - "url": "http://paul.vorba.ch/", + "name": "css-loader", + "url": "https://github.com/webpack-contrib/css-loader", "description": "", "pathes": [ "." @@ -6330,17 +6327,16 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "CC0-1.0", + "url": "" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "CC0-1.0" }, "dependency": { - "name": "co", - "url": "Unknown", + "name": "css-prefers-color-scheme", + "url": "https://github.com/csstools/css-prefers-color-scheme#readme", "description": "", "pathes": [ "." @@ -6350,17 +6346,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "coa", - "url": "http://github.com/veged/coa", + "name": "css-select", + "url": "Unknown", "description": "", "pathes": [ "." @@ -6370,17 +6366,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "coa", - "url": "http://github.com/veged/coa", + "name": "css-select", + "url": "Unknown", "description": "", "pathes": [ "." @@ -6399,8 +6395,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "code-point-at", - "url": "sindresorhus.com", + "name": "css-select-base-adapter", + "url": "https://github.com/nrkn/css-select-base-adapter#readme", "description": "", "pathes": [ "." @@ -6419,8 +6415,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "codecov.io", - "url": "https://github.com/cainus/codecov.io", + "name": "css-tree", + "url": "https://github.com/csstree/csstree", "description": "", "pathes": [ "." @@ -6439,8 +6435,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "collection-visit", - "url": "https://github.com/jonschlinkert/collection-visit", + "name": "css-tree", + "url": "https://github.com/csstree/csstree", "description": "", "pathes": [ "." @@ -6459,8 +6455,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "color", - "url": "Unknown", + "name": "css-unit-converter", + "url": "https://github.com/andyjansson/css-unit-converter", "description": "", "pathes": [ "." @@ -6479,8 +6475,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "color", - "url": "Unknown", + "name": "css-url-regex", + "url": "https://github.com/johnotander/css-url-regex", "description": "", "pathes": [ "." @@ -6490,17 +6486,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "color-convert", - "url": "Unknown", + "name": "css-what", + "url": "http://feedic.com", "description": "", "pathes": [ "." @@ -6510,17 +6506,16 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "CC0-1.0", + "url": "" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "CC0-1.0" }, "dependency": { - "name": "color-name", - "url": "https://github.com/dfcreative/color-name", + "name": "cssdb", + "url": "https://github.com/csstools/cssdb#readme", "description": "", "pathes": [ "." @@ -6539,8 +6534,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "color-name", - "url": "https://github.com/colorjs/color-name", + "name": "cssesc", + "url": "https://mths.be/cssesc", "description": "", "pathes": [ "." @@ -6559,8 +6554,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "color-string", - "url": "Unknown", + "name": "cssesc", + "url": "https://mths.be/cssesc", "description": "", "pathes": [ "." @@ -6579,8 +6574,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "color-string", - "url": "Unknown", + "name": "cssnano", + "url": "https://github.com/ben-eb/cssnano", "description": "", "pathes": [ "." @@ -6599,8 +6594,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "colormin", - "url": "https://github.com/ben-eb/colormin", + "name": "cssnano", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -6619,8 +6614,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "colors", - "url": "https://github.com/Marak/colors.js", + "name": "cssnano-preset-default", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -6639,8 +6634,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "combined-stream", - "url": "https://github.com/felixge/node-combined-stream", + "name": "cssnano-util-get-arguments", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -6659,8 +6654,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "combined-stream", - "url": "https://github.com/felixge/node-combined-stream", + "name": "cssnano-util-get-match", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -6679,8 +6674,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "commander", - "url": "Unknown", + "name": "cssnano-util-raw-cache", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -6699,8 +6694,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "commander", - "url": "Unknown", + "name": "cssnano-util-same-parent", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -6719,8 +6714,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "commander", - "url": "Unknown", + "name": "csso", + "url": "https://github.com/css/csso", "description": "", "pathes": [ "." @@ -6739,8 +6734,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "commander", - "url": "Unknown", + "name": "csso", + "url": "https://github.com/css/csso", "description": "", "pathes": [ "." @@ -6759,8 +6754,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "commondir", - "url": "http://substack.net", + "name": "cuint", + "url": "https://github.com/pierrec/js-cuint", "description": "", "pathes": [ "." @@ -6770,16 +6765,15 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "MIT*", + "url": "" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "MIT*" }, "dependency": { - "name": "component-emitter", + "name": "cyclist", "url": "Unknown", "description": "", "pathes": [ @@ -6799,8 +6793,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "compressible", - "url": "Unknown", + "name": "dashdash", + "url": "http://trentm.com", "description": "", "pathes": [ "." @@ -6819,8 +6813,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "compression", - "url": "Unknown", + "name": "data2xml", + "url": "https://github.com/chilts/data2xml", "description": "", "pathes": [ "." @@ -6839,8 +6833,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "concat-map", - "url": "http://substack.net", + "name": "date-fns", + "url": "Unknown", "description": "", "pathes": [ "." @@ -6859,8 +6853,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "concat-stream", - "url": "Unknown", + "name": "date-now", + "url": "https://github.com/Colingo/date-now", "description": "", "pathes": [ "." @@ -6879,8 +6873,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "concat-stream", - "url": "Unknown", + "name": "de-indent", + "url": "https://github.com/yyx990803/de-indent#readme", "description": "", "pathes": [ "." @@ -6899,8 +6893,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "connect", - "url": "http://tjholowaychuk.com", + "name": "debug", + "url": "Unknown", "description": "", "pathes": [ "." @@ -6919,7 +6913,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "consola", + "name": "debug", "url": "Unknown", "description": "", "pathes": [ @@ -6939,8 +6933,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "console-browserify", - "url": "https://github.com/Raynos/console-browserify", + "name": "debug", + "url": "Unknown", "description": "", "pathes": [ "." @@ -6950,17 +6944,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "console-control-strings", - "url": "http://re-becca.org/", + "name": "decamelize", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -6979,8 +6973,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "consolidate", - "url": "https://github.com/tj/consolidate.js", + "name": "decode-uri-component", + "url": "github.com/SamVerschueren", "description": "", "pathes": [ "." @@ -6999,8 +6993,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "constants-browserify", - "url": "https://github.com/juliangruber/constants-browserify", + "name": "decouple", + "url": "Unknown", "description": "", "pathes": [ "." @@ -7019,8 +7013,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "contains-path", - "url": "https://github.com/jonschlinkert/contains-path", + "name": "deep-extend", + "url": "https://github.com/unclechu/node-deep-extend", "description": "", "pathes": [ "." @@ -7039,8 +7033,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "content-disposition", - "url": "Unknown", + "name": "deepmerge", + "url": "https://github.com/TehShrike/deepmerge", "description": "", "pathes": [ "." @@ -7059,7 +7053,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "content-type", + "name": "define-properties", "url": "Unknown", "description": "", "pathes": [ @@ -7079,8 +7073,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "content-type-parser", - "url": "https://domenic.me/", + "name": "define-property", + "url": "https://github.com/jonschlinkert/define-property", "description": "", "pathes": [ "." @@ -7099,8 +7093,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "convert-source-map", - "url": "https://github.com/thlorenz/convert-source-map", + "name": "define-property", + "url": "https://github.com/jonschlinkert/define-property", "description": "", "pathes": [ "." @@ -7119,8 +7113,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "convert-source-map", - "url": "https://github.com/thlorenz/convert-source-map", + "name": "define-property", + "url": "https://github.com/jonschlinkert/define-property", "description": "", "pathes": [ "." @@ -7139,8 +7133,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cookie", - "url": "Unknown", + "name": "defined", + "url": "https://github.com/substack/defined", "description": "", "pathes": [ "." @@ -7159,7 +7153,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cookie", + "name": "defu", "url": "Unknown", "description": "", "pathes": [ @@ -7179,8 +7173,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cookie-signature", - "url": "Unknown", + "name": "delayed-stream", + "url": "https://github.com/felixge/node-delayed-stream", "description": "", "pathes": [ "." @@ -7190,17 +7184,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "copy-concurrently", - "url": "https://www.npmjs.com/package/copy-concurrently", + "name": "delegates", + "url": "Unknown", "description": "", "pathes": [ "." @@ -7219,8 +7213,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "copy-descriptor", - "url": "https://github.com/jonschlinkert/copy-descriptor", + "name": "depd", + "url": "Unknown", "description": "", "pathes": [ "." @@ -7239,8 +7233,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "core-js", - "url": "Unknown", + "name": "des.js", + "url": "https://github.com/indutny/des.js#readme", "description": "", "pathes": [ "." @@ -7259,8 +7253,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "core-js-compat", - "url": "Unknown", + "name": "destroy", + "url": "http://jongleberry.com", "description": "", "pathes": [ "." @@ -7279,8 +7273,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "core-js-pure", - "url": "Unknown", + "name": "detect-indent", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -7290,17 +7284,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, "dependency": { - "name": "core-util-is", - "url": "http://blog.izs.me/", + "name": "detect-libc", + "url": "Unknown", "description": "", "pathes": [ "." @@ -7319,8 +7313,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cosmiconfig", - "url": "https://github.com/davidtheclark/cosmiconfig#readme", + "name": "diffie-hellman", + "url": "https://github.com/crypto-browserify/diffie-hellman", "description": "", "pathes": [ "." @@ -7339,28 +7333,8 @@ "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", + "name": "dom-converter", + "url": "Unknown", "description": "", "pathes": [ "." @@ -7379,8 +7353,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "create-ecdh", - "url": "https://github.com/crypto-browserify/createECDH", + "name": "dom-serializer", + "url": "Unknown", "description": "", "pathes": [ "." @@ -7399,8 +7373,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "create-hash", - "url": "https://github.com/crypto-browserify/createHash", + "name": "dom-walk", + "url": "https://github.com/Raynos/dom-walk", "description": "", "pathes": [ "." @@ -7419,8 +7393,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "create-hmac", - "url": "https://github.com/crypto-browserify/createHmac", + "name": "domain-browser", + "url": "https://github.com/bevry/domain-browser", "description": "", "pathes": [ "." @@ -7430,17 +7404,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "cross-spawn", - "url": "http://indigounited.com", + "name": "domelementtype", + "url": "Unknown", "description": "", "pathes": [ "." @@ -7450,17 +7424,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "cross-spawn", - "url": "http://indigounited.com", + "name": "domelementtype", + "url": "Unknown", "description": "", "pathes": [ "." @@ -7470,17 +7444,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "cross-spawn", - "url": "https://github.com/moxystudio/node-cross-spawn", + "name": "domhandler", + "url": "Unknown", "description": "", "pathes": [ "." @@ -7490,17 +7464,17 @@ { "licenses": [ { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" } ], "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "cryptiles", - "url": "http://hueniverse.com", + "name": "domutils", + "url": "Unknown", "description": "", "pathes": [ "." @@ -7510,16 +7484,16 @@ { "licenses": [ { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" } ], "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "cryptiles", + "name": "domutils", "url": "Unknown", "description": "", "pathes": [ @@ -7539,8 +7513,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "crypto-browserify", - "url": "https://github.com/crypto-browserify/crypto-browserify", + "name": "dot-prop", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -7550,16 +7524,17 @@ { "licenses": [ { - "name": "CC0-1.0", - "url": "" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "CC0-1.0" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "css-blank-pseudo", - "url": "https://github.com/csstools/css-blank-pseudo#readme", + "name": "duplexer", + "url": "https://github.com/Raynos/duplexer", "description": "", "pathes": [ "." @@ -7578,8 +7553,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "css-color-names", - "url": "http://www.daveeddy.com", + "name": "duplexify", + "url": "https://github.com/mafintosh/duplexify", "description": "", "pathes": [ "." @@ -7598,8 +7573,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "css-declaration-sorter", - "url": "https://selwyn.cc/", + "name": "ecc-jsbn", + "url": "https://github.com/quartzjer/ecc-jsbn", "description": "", "pathes": [ "." @@ -7609,16 +7584,17 @@ { "licenses": [ { - "name": "CC0-1.0", - "url": "" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "CC0-1.0" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "css-has-pseudo", - "url": "https://github.com/csstools/css-has-pseudo#readme", + "name": "ee-first", + "url": "http://jongleberry.com", "description": "", "pathes": [ "." @@ -7628,17 +7604,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, "dependency": { - "name": "css-loader", - "url": "https://github.com/webpack-contrib/css-loader", + "name": "ejs", + "url": "https://github.com/mde/ejs", "description": "", "pathes": [ "." @@ -7648,16 +7624,16 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "css-parse", + "name": "electron-to-chromium", "url": "Unknown", "description": "", "pathes": [ @@ -7668,16 +7644,17 @@ { "licenses": [ { - "name": "CC0-1.0", - "url": "" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "CC0-1.0" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "css-prefers-color-scheme", - "url": "https://github.com/csstools/css-prefers-color-scheme#readme", + "name": "elliptic", + "url": "https://github.com/indutny/elliptic", "description": "", "pathes": [ "." @@ -7687,16 +7664,16 @@ { "licenses": [ { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "css-select", + "name": "emitter", "url": "Unknown", "description": "", "pathes": [ @@ -7707,17 +7684,17 @@ { "licenses": [ { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "css-select", - "url": "Unknown", + "name": "emoji-regex", + "url": "https://mths.be/emoji-regex", "description": "", "pathes": [ "." @@ -7736,8 +7713,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "css-select-base-adapter", - "url": "https://github.com/nrkn/css-select-base-adapter#readme", + "name": "emojis-list", + "url": "https://github.com/Kikobeats/emojis-list", "description": "", "pathes": [ "." @@ -7756,8 +7733,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "css-tree", - "url": "https://github.com/csstree/csstree", + "name": "encodeurl", + "url": "Unknown", "description": "", "pathes": [ "." @@ -7776,8 +7753,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "css-tree", - "url": "https://github.com/csstree/csstree", + "name": "end-of-stream", + "url": "https://github.com/mafintosh/end-of-stream", "description": "", "pathes": [ "." @@ -7796,8 +7773,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "css-unit-converter", - "url": "https://github.com/andyjansson/css-unit-converter", + "name": "enhanced-resolve", + "url": "http://github.com/webpack/enhanced-resolve", "description": "", "pathes": [ "." @@ -7816,8 +7793,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "css-url-regex", - "url": "https://github.com/johnotander/css-url-regex", + "name": "enhanced-resolve", + "url": "http://github.com/webpack/enhanced-resolve", "description": "", "pathes": [ "." @@ -7836,8 +7813,8 @@ "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "css-what", - "url": "http://feedic.com", + "name": "entities", + "url": "Unknown", "description": "", "pathes": [ "." @@ -7847,16 +7824,17 @@ { "licenses": [ { - "name": "CC0-1.0", - "url": "" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" } ], "license": { - "name": "CC0-1.0" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "cssdb", - "url": "https://github.com/csstools/cssdb#readme", + "name": "entities", + "url": "Unknown", "description": "", "pathes": [ "." @@ -7875,8 +7853,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cssesc", - "url": "https://mths.be/cssesc", + "name": "errno", + "url": "Unknown", "description": "", "pathes": [ "." @@ -7895,8 +7873,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cssesc", - "url": "https://mths.be/cssesc", + "name": "error-ex", + "url": "Unknown", "description": "", "pathes": [ "." @@ -7915,8 +7893,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cssnano", - "url": "https://github.com/ben-eb/cssnano", + "name": "error-stack-parser", + "url": "https://www.stacktracejs.com/", "description": "", "pathes": [ "." @@ -7935,8 +7913,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cssnano", - "url": "https://github.com/cssnano/cssnano", + "name": "es-abstract", + "url": "http://ljharb.codes", "description": "", "pathes": [ "." @@ -7955,8 +7933,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cssnano-preset-default", - "url": "https://github.com/cssnano/cssnano", + "name": "es-to-primitive", + "url": "Unknown", "description": "", "pathes": [ "." @@ -7975,8 +7953,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cssnano-util-get-arguments", - "url": "https://github.com/cssnano/cssnano", + "name": "es6-promise", + "url": "Conversion to ES6 API by Jake Archibald", "description": "", "pathes": [ "." @@ -7995,8 +7973,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cssnano-util-get-match", - "url": "https://github.com/cssnano/cssnano", + "name": "escape-html", + "url": "Unknown", "description": "", "pathes": [ "." @@ -8015,8 +7993,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cssnano-util-raw-cache", - "url": "https://github.com/cssnano/cssnano", + "name": "escape-string-regexp", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -8026,17 +8004,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "cssnano-util-same-parent", - "url": "https://github.com/cssnano/cssnano", + "name": "eslint-scope", + "url": "http://github.com/eslint/eslint-scope", "description": "", "pathes": [ "." @@ -8055,8 +8033,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "csso", - "url": "https://github.com/css/csso", + "name": "esm", + "url": "Unknown", "description": "", "pathes": [ "." @@ -8066,17 +8044,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "csso", - "url": "https://github.com/css/csso", + "name": "esprima", + "url": "http://esprima.org/", "description": "", "pathes": [ "." @@ -8086,17 +8064,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "cssom", - "url": "Unknown", + "name": "esprima", + "url": "http://esprima.org/", "description": "", "pathes": [ "." @@ -8106,17 +8084,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "cssstyle", - "url": "https://github.com/chad3814/CSSStyleDeclaration", + "name": "esrecurse", + "url": "https://github.com/estools/esrecurse", "description": "", "pathes": [ "." @@ -8126,17 +8104,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "ctype", - "url": "https://github.com/rmustacc/node-ctype", + "name": "estraverse", + "url": "https://github.com/estools/estraverse", "description": "", "pathes": [ "." @@ -8146,17 +8124,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "cuint", - "url": "https://github.com/pierrec/js-cuint", + "name": "esutils", + "url": "https://github.com/estools/esutils", "description": "", "pathes": [ "." @@ -8166,15 +8144,16 @@ { "licenses": [ { - "name": "MIT*", - "url": "" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "MIT*" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "cyclist", + "name": "etag", "url": "Unknown", "description": "", "pathes": [ @@ -8194,8 +8173,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "dashdash", - "url": "http://trentm.com", + "name": "eventemitter3", + "url": "Unknown", "description": "", "pathes": [ "." @@ -8214,8 +8193,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "data2xml", - "url": "https://github.com/chilts/data2xml", + "name": "events", + "url": "http://jeditoolkit.com", "description": "", "pathes": [ "." @@ -8234,8 +8213,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "date-fns", - "url": "Unknown", + "name": "eventsource-polyfill", + "url": "https://github.com/amvtek/EventSource", "description": "", "pathes": [ "." @@ -8254,8 +8233,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "date-now", - "url": "https://github.com/Colingo/date-now", + "name": "evp_bytestokey", + "url": "https://github.com/crypto-browserify/EVP_BytesToKey", "description": "", "pathes": [ "." @@ -8274,8 +8253,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "de-indent", - "url": "https://github.com/yyx990803/de-indent#readme", + "name": "execa", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -8294,8 +8273,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "debug", - "url": "Unknown", + "name": "execa", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -8314,7 +8293,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "debug", + "name": "exif-parser", "url": "Unknown", "description": "", "pathes": [ @@ -8334,8 +8313,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "debug", - "url": "Unknown", + "name": "exit", + "url": "https://github.com/cowboy/node-exit", "description": "", "pathes": [ "." @@ -8354,8 +8333,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "debug", - "url": "Unknown", + "name": "expand-brackets", + "url": "https://github.com/jonschlinkert/expand-brackets", "description": "", "pathes": [ "." @@ -8374,8 +8353,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "debug", - "url": "Unknown", + "name": "expand-brackets", + "url": "https://github.com/jonschlinkert/expand-brackets", "description": "", "pathes": [ "." @@ -8394,8 +8373,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "debug-log", - "url": "sindresorhus.com", + "name": "expand-range", + "url": "https://github.com/jonschlinkert/expand-range", "description": "", "pathes": [ "." @@ -8414,8 +8393,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "decamelize", - "url": "sindresorhus.com", + "name": "express", + "url": "http://expressjs.com/", "description": "", "pathes": [ "." @@ -8434,8 +8413,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "decode-uri-component", - "url": "github.com/SamVerschueren", + "name": "extend", + "url": "http://www.justmoon.net", "description": "", "pathes": [ "." @@ -8454,8 +8433,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "decouple", - "url": "Unknown", + "name": "extend-shallow", + "url": "https://github.com/jonschlinkert/extend-shallow", "description": "", "pathes": [ "." @@ -8474,8 +8453,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "deep-eql", - "url": "Unknown", + "name": "extend-shallow", + "url": "https://github.com/jonschlinkert/extend-shallow", "description": "", "pathes": [ "." @@ -8494,8 +8473,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "deep-equal", - "url": "http://substack.net", + "name": "extglob", + "url": "https://github.com/jonschlinkert/extglob", "description": "", "pathes": [ "." @@ -8514,8 +8493,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "deep-extend", - "url": "https://github.com/unclechu/node-deep-extend", + "name": "extglob", + "url": "https://github.com/micromatch/extglob", "description": "", "pathes": [ "." @@ -8534,8 +8513,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "deep-is", - "url": "http://thlorenz.com", + "name": "extract-css-chunks-webpack-plugin", + "url": "http://github.com/faceyspacey/extract-css-chunks-webpack-plugin", "description": "", "pathes": [ "." @@ -8554,8 +8533,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "deepmerge", - "url": "https://github.com/TehShrike/deepmerge", + "name": "extsprintf", + "url": "Unknown", "description": "", "pathes": [ "." @@ -8574,8 +8553,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "default-require-extensions", - "url": "github.com/jamestalmage", + "name": "extsprintf", + "url": "Unknown", "description": "", "pathes": [ "." @@ -8594,8 +8573,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "define-properties", - "url": "Unknown", + "name": "fast-deep-equal", + "url": "https://github.com/epoberezkin/fast-deep-equal#readme", "description": "", "pathes": [ "." @@ -8614,8 +8593,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "define-property", - "url": "https://github.com/jonschlinkert/define-property", + "name": "fast-deep-equal", + "url": "https://github.com/epoberezkin/fast-deep-equal#readme", "description": "", "pathes": [ "." @@ -8634,8 +8613,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "define-property", - "url": "https://github.com/jonschlinkert/define-property", + "name": "fast-json-stable-stringify", + "url": "https://github.com/epoberezkin/fast-json-stable-stringify", "description": "", "pathes": [ "." @@ -8645,17 +8624,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "define-property", - "url": "https://github.com/jonschlinkert/define-property", + "name": "figgy-pudding", + "url": "Unknown", "description": "", "pathes": [ "." @@ -8674,8 +8653,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "defined", - "url": "https://github.com/substack/defined", + "name": "figures", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -8694,8 +8673,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "defined", - "url": "https://github.com/substack/defined", + "name": "file-loader", + "url": "https://github.com/webpack-contrib/file-loader", "description": "", "pathes": [ "." @@ -8714,8 +8693,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "defu", - "url": "Unknown", + "name": "file-type", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -8734,8 +8713,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "del", - "url": "sindresorhus.com", + "name": "filename-regex", + "url": "https://github.com/regexhq/filename-regex", "description": "", "pathes": [ "." @@ -8745,17 +8724,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "delayed-stream", - "url": "https://github.com/felixge/node-delayed-stream", + "name": "filesize", + "url": "https://filesizejs.com/", "description": "", "pathes": [ "." @@ -8774,8 +8753,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "delayed-stream", - "url": "https://github.com/felixge/node-delayed-stream", + "name": "fill-range", + "url": "https://github.com/jonschlinkert/fill-range", "description": "", "pathes": [ "." @@ -8794,8 +8773,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "delegates", - "url": "Unknown", + "name": "fill-range", + "url": "https://github.com/jonschlinkert/fill-range", "description": "", "pathes": [ "." @@ -8814,8 +8793,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "depd", - "url": "Unknown", + "name": "fill-range", + "url": "https://github.com/jonschlinkert/fill-range", "description": "", "pathes": [ "." @@ -8834,8 +8813,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "des.js", - "url": "https://github.com/indutny/des.js#readme", + "name": "finalhandler", + "url": "Unknown", "description": "", "pathes": [ "." @@ -8854,8 +8833,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "destroy", - "url": "http://jongleberry.com", + "name": "find-cache-dir", + "url": "Unknown", "description": "", "pathes": [ "." @@ -8874,7 +8853,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "detect-indent", + "name": "find-up", "url": "sindresorhus.com", "description": "", "pathes": [ @@ -8894,8 +8873,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "detect-indent", - "url": "sindresorhus.com", + "name": "flatten", + "url": "http://jesusabdullah.net", "description": "", "pathes": [ "." @@ -8905,17 +8884,17 @@ { "licenses": [ { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "detect-libc", - "url": "Unknown", + "name": "flush-write-stream", + "url": "https://github.com/mafintosh/flush-write-stream", "description": "", "pathes": [ "." @@ -8925,17 +8904,17 @@ { "licenses": [ { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "diff", - "url": "Unknown", + "name": "follow-redirects", + "url": "https://github.com/olalonde/follow-redirects", "description": "", "pathes": [ "." @@ -8954,8 +8933,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "diffie-hellman", - "url": "https://github.com/crypto-browserify/diffie-hellman", + "name": "for-each", + "url": "https://github.com/Raynos/for-each", "description": "", "pathes": [ "." @@ -8965,17 +8944,17 @@ { "licenses": [ { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "doctrine", - "url": "https://github.com/eslint/doctrine", + "name": "for-in", + "url": "https://github.com/jonschlinkert/for-in", "description": "", "pathes": [ "." @@ -8985,6201 +8964,8 @@ { "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" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { @@ -15187,27 +8973,8 @@ "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", + "name": "for-own", + "url": "https://github.com/jonschlinkert/for-own", "description": "", "pathes": [ "." @@ -15217,17 +8984,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, "dependency": { - "name": "json-schema-traverse", - "url": "https://github.com/epoberezkin/json-schema-traverse#readme", + "name": "forever-agent", + "url": "http://www.futurealoof.com", "description": "", "pathes": [ "." @@ -15246,8 +9013,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "json-schema-traverse", - "url": "https://github.com/epoberezkin/json-schema-traverse#readme", + "name": "form-data", + "url": "http://debuggable.com/", "description": "", "pathes": [ "." @@ -15266,8 +9033,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "json-stable-stringify-without-jsonify", - "url": "https://github.com/samn/json-stable-stringify", + "name": "forwarded", + "url": "Unknown", "description": "", "pathes": [ "." @@ -15277,17 +9044,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "json-stringify-safe", - "url": "https://github.com/isaacs/json-stringify-safe", + "name": "fragment-cache", + "url": "https://github.com/jonschlinkert/fragment-cache", "description": "", "pathes": [ "." @@ -15306,8 +9073,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "json3", - "url": "http://bestiejs.github.io/json3", + "name": "fresh", + "url": "http://tjholowaychuk.com", "description": "", "pathes": [ "." @@ -15326,8 +9093,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "json5", - "url": "http://json5.org/", + "name": "from2", + "url": "https://github.com/hughsk/from2", "description": "", "pathes": [ "." @@ -15346,8 +9113,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "json5", - "url": "http://json5.org/", + "name": "front-matter", + "url": "https://github.com/jxson/front-matter", "description": "", "pathes": [ "." @@ -15366,8 +9133,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "json5", - "url": "http://json5.org/", + "name": "fs-extra", + "url": "https://github.com/jprichardson/node-fs-extra", "description": "", "pathes": [ "." @@ -15386,8 +9153,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "jsonfile", - "url": "Unknown", + "name": "fs-extra", + "url": "https://github.com/jprichardson/node-fs-extra", "description": "", "pathes": [ "." @@ -15406,8 +9173,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "jsonfile", - "url": "Unknown", + "name": "fs-extra", + "url": "https://github.com/jprichardson/node-fs-extra", "description": "", "pathes": [ "." @@ -15426,8 +9193,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "jsonfile", - "url": "Unknown", + "name": "fs-extra", + "url": "https://github.com/jprichardson/node-fs-extra", "description": "", "pathes": [ "." @@ -15437,16 +9204,17 @@ { "licenses": [ { - "name": "Public Domain", - "url": "" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "Public Domain" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "jsonify", - "url": "http://crockford.com/", + "name": "fs-minipass", + "url": "https://github.com/npm/fs-minipass#readme", "description": "", "pathes": [ "." @@ -15456,17 +9224,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "jsprim", - "url": "Unknown", + "name": "fs-write-stream-atomic", + "url": "https://github.com/npm/fs-write-stream-atomic", "description": "", "pathes": [ "." @@ -15476,17 +9244,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "kind-of", - "url": "https://github.com/jonschlinkert/kind-of", + "name": "fs.realpath", + "url": "http://blog.izs.me/", "description": "", "pathes": [ "." @@ -15496,17 +9264,15 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "unknown", + "url": "" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "unknown" }, "dependency": { - "name": "kind-of", - "url": "https://github.com/jonschlinkert/kind-of", + "name": "fsevents", "description": "", "pathes": [ "." @@ -15516,17 +9282,15 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "unknown", + "url": "" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "unknown" }, "dependency": { - "name": "kind-of", - "url": "https://github.com/jonschlinkert/kind-of", + "name": "fsevents", "description": "", "pathes": [ "." @@ -15545,8 +9309,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "kind-of", - "url": "https://github.com/jonschlinkert/kind-of", + "name": "function-bind", + "url": "https://github.com/Raynos/function-bind", "description": "", "pathes": [ "." @@ -15556,17 +9320,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "klaw", - "url": "https://github.com/jprichardson/node-klaw#readme", + "name": "gauge", + "url": "https://github.com/iarna/gauge", "description": "", "pathes": [ "." @@ -15585,8 +9349,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "last-call-webpack-plugin", - "url": "http://github.com/NMFR/last-call-webpack-plugin", + "name": "get-stream", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -15605,8 +9369,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "launch-editor", - "url": "https://github.com/yyx990803/launch-editor#readme", + "name": "get-stream", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -15625,8 +9389,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "launch-editor-middleware", - "url": "https://github.com/yyx990803/launch-editor#readme", + "name": "get-value", + "url": "https://github.com/jonschlinkert/get-value", "description": "", "pathes": [ "." @@ -15645,8 +9409,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lazy-cache", - "url": "https://github.com/jonschlinkert/lazy-cache", + "name": "getpass", + "url": "Unknown", "description": "", "pathes": [ "." @@ -15656,17 +9420,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "lcid", - "url": "sindresorhus.com", + "name": "glob", + "url": "http://blog.izs.me/", "description": "", "pathes": [ "." @@ -15676,17 +9440,17 @@ { "licenses": [ { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "lcov-parse", - "url": "Unknown", + "name": "glob", + "url": "http://blog.izs.me/", "description": "", "pathes": [ "." @@ -15696,16 +9460,17 @@ { "licenses": [ { - "name": "WTFPL", - "url": "" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "WTFPL" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "left-pad", - "url": "Unknown", + "name": "glob-base", + "url": "https://github.com/jonschlinkert/glob-base", "description": "", "pathes": [ "." @@ -15715,17 +9480,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "levn", - "url": "https://github.com/gkz/levn", + "name": "glob-parent", + "url": "https://github.com/es128/glob-parent", "description": "", "pathes": [ "." @@ -15735,17 +9500,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "linkify-it", - "url": "Unknown", + "name": "glob-parent", + "url": "https://github.com/es128/glob-parent", "description": "", "pathes": [ "." @@ -15755,17 +9520,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "load-bmfont", - "url": "https://github.com/Jam3/load-bmfont", + "name": "glob-parent", + "url": "https://gulpjs.com/", "description": "", "pathes": [ "." @@ -15784,8 +9549,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "load-json-file", - "url": "sindresorhus.com", + "name": "global", + "url": "https://github.com/Raynos/global", "description": "", "pathes": [ "." @@ -15804,7 +9569,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "load-json-file", + "name": "globals", "url": "sindresorhus.com", "description": "", "pathes": [ @@ -15824,7 +9589,7 @@ "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "loader-fs-cache", + "name": "graceful-fs", "url": "Unknown", "description": "", "pathes": [ @@ -15844,28 +9609,8 @@ "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", + "name": "gzip-size", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -15875,17 +9620,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "loader-utils", - "url": "Unknown", + "name": "har-schema", + "url": "https://github.com/ahmadnassri/har-schema", "description": "", "pathes": [ "." @@ -15895,17 +9640,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "locate-path", - "url": "sindresorhus.com", + "name": "har-validator", + "url": "https://github.com/ahmadnassri/har-validator", "description": "", "pathes": [ "." @@ -15915,17 +9660,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, - "dependency": { - "name": "locate-path", - "url": "sindresorhus.com", + "dependency": { + "name": "hard-source-webpack-plugin", + "url": "Unknown", "description": "", "pathes": [ "." @@ -15944,8 +9689,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lodash", - "url": "https://lodash.com/", + "name": "has", + "url": "https://github.com/tarruda/has", "description": "", "pathes": [ "." @@ -15964,8 +9709,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lodash", - "url": "https://lodash.com/", + "name": "has-ansi", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -15984,8 +9729,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lodash._baseassign", - "url": "https://lodash.com/", + "name": "has-flag", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -16004,8 +9749,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lodash._basecopy", - "url": "https://lodash.com/", + "name": "has-flag", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -16024,8 +9769,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lodash._basecreate", - "url": "https://lodash.com/", + "name": "has-symbols", + "url": "http://ljharb.codes", "description": "", "pathes": [ "." @@ -16035,17 +9780,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "lodash._getnative", - "url": "https://lodash.com/", + "name": "has-unicode", + "url": "https://github.com/iarna/has-unicode", "description": "", "pathes": [ "." @@ -16064,8 +9809,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lodash._isiterateecall", - "url": "https://lodash.com/", + "name": "has-value", + "url": "https://github.com/jonschlinkert/has-value", "description": "", "pathes": [ "." @@ -16084,8 +9829,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lodash._reinterpolate", - "url": "https://lodash.com/", + "name": "has-value", + "url": "https://github.com/jonschlinkert/has-value", "description": "", "pathes": [ "." @@ -16104,8 +9849,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lodash.assign", - "url": "https://lodash.com/", + "name": "has-values", + "url": "https://github.com/jonschlinkert/has-values", "description": "", "pathes": [ "." @@ -16124,8 +9869,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lodash.clonedeep", - "url": "https://lodash.com/", + "name": "has-values", + "url": "https://github.com/jonschlinkert/has-values", "description": "", "pathes": [ "." @@ -16144,8 +9889,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lodash.cond", - "url": "https://lodash.com/", + "name": "hash-base", + "url": "https://github.com/crypto-browserify/hash-base", "description": "", "pathes": [ "." @@ -16164,8 +9909,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lodash.create", - "url": "https://lodash.com/", + "name": "hash-sum", + "url": "https://github.com/bevacqua/hash-sum", "description": "", "pathes": [ "." @@ -16184,8 +9929,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lodash.isarguments", - "url": "https://lodash.com/", + "name": "hash.js", + "url": "https://github.com/indutny/hash.js", "description": "", "pathes": [ "." @@ -16195,17 +9940,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "lodash.isarray", - "url": "https://lodash.com/", + "name": "hawk", + "url": "http://hueniverse.com", "description": "", "pathes": [ "." @@ -16224,8 +9969,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lodash.isplainobject", - "url": "https://lodash.com/", + "name": "he", + "url": "https://mths.be/he", "description": "", "pathes": [ "." @@ -16244,8 +9989,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lodash.kebabcase", - "url": "https://lodash.com/", + "name": "hex-color-regex", + "url": "http://www.tunnckocore.tk", "description": "", "pathes": [ "." @@ -16255,17 +10000,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "lodash.keys", - "url": "https://lodash.com/", + "name": "highlight.js", + "url": "https://highlightjs.org/", "description": "", "pathes": [ "." @@ -16284,8 +10029,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lodash.memoize", - "url": "https://lodash.com/", + "name": "hmac-drbg", + "url": "https://github.com/indutny/hmac-drbg#readme", "description": "", "pathes": [ "." @@ -16295,17 +10040,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "lodash.merge", - "url": "https://lodash.com/", + "name": "hoek", + "url": "Unknown", "description": "", "pathes": [ "." @@ -16324,8 +10069,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lodash.sortby", - "url": "https://lodash.com/", + "name": "hoopy", + "url": "https://gitlab.com/philbooth/hoopy#readme", "description": "", "pathes": [ "." @@ -16344,8 +10089,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lodash.template", - "url": "https://lodash.com/", + "name": "hsl-regex", + "url": "https://github.com/regexps/hsl-regex", "description": "", "pathes": [ "." @@ -16364,8 +10109,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lodash.templatesettings", - "url": "https://lodash.com/", + "name": "hsla-regex", + "url": "https://github.com/regexps/hsla-regex", "description": "", "pathes": [ "." @@ -16384,8 +10129,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lodash.uniq", - "url": "https://lodash.com/", + "name": "html-comment-regex", + "url": "https://github.com/stevemao/html-comment-regex", "description": "", "pathes": [ "." @@ -16404,8 +10149,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lodash.uniqueid", - "url": "https://lodash.com/", + "name": "html-entities", + "url": "Unknown", "description": "", "pathes": [ "." @@ -16415,17 +10160,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "log-driver", - "url": "https://github.com/cainus/logdriver", + "name": "html-minifier", + "url": "https://kangax.github.io/html-minifier/", "description": "", "pathes": [ "." @@ -16444,8 +10189,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "longest", - "url": "https://github.com/jonschlinkert/longest", + "name": "html-minifier", + "url": "https://kangax.github.io/html-minifier/", "description": "", "pathes": [ "." @@ -16464,8 +10209,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "loose-envify", - "url": "https://github.com/zertosh/loose-envify", + "name": "html-tags", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -16484,8 +10229,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lower-case", - "url": "https://github.com/blakeembrey/lower-case", + "name": "html-webpack-plugin", + "url": "https://github.com/jantimon/html-webpack-plugin", "description": "", "pathes": [ "." @@ -16495,16 +10240,16 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lru-cache", + "name": "htmlparser2", "url": "Unknown", "description": "", "pathes": [ @@ -16515,17 +10260,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lru-cache", - "url": "Unknown", + "name": "http-errors", + "url": "http://jongleberry.com", "description": "", "pathes": [ "." @@ -16535,16 +10280,16 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "lru-cache", + "name": "http-proxy", "url": "Unknown", "description": "", "pathes": [ @@ -16564,8 +10309,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "make-dir", - "url": "sindresorhus.com", + "name": "http-proxy-middleware", + "url": "https://github.com/chimurai/http-proxy-middleware", "description": "", "pathes": [ "." @@ -16584,8 +10329,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "make-dir", - "url": "sindresorhus.com", + "name": "http-signature", + "url": "https://github.com/joyent/node-http-signature/", "description": "", "pathes": [ "." @@ -16604,8 +10349,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "mamacro", - "url": "Unknown", + "name": "https-browserify", + "url": "https://github.com/substack/https-browserify", "description": "", "pathes": [ "." @@ -16624,8 +10369,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "map-cache", - "url": "https://github.com/jonschlinkert/map-cache", + "name": "iconv-lite", + "url": "https://github.com/ashtuchkin/iconv-lite", "description": "", "pathes": [ "." @@ -16635,17 +10380,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "map-visit", - "url": "https://github.com/jonschlinkert/map-visit", + "name": "icss-replace-symbols", + "url": "https://github.com/css-modules/icss-replace-symbols#readme", "description": "", "pathes": [ "." @@ -16655,17 +10400,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "markdown-it", - "url": "Unknown", + "name": "icss-utils", + "url": "https://github.com/css-modules/icss-utils#readme", "description": "", "pathes": [ "." @@ -16675,16 +10420,17 @@ { "licenses": [ { - "name": "Unlicense", - "url": "" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" } ], "license": { - "name": "Unlicense" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "markdown-it-anchor", - "url": "https://github.com/valeriangalliat/markdown-it-anchor", + "name": "ieee754", + "url": "http://feross.org", "description": "", "pathes": [ "." @@ -16703,8 +10449,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "math-expression-evaluator", - "url": "https://github.com/redhivesoftware/math-expression-evaluator#readme", + "name": "iferr", + "url": "https://github.com/shesek/iferr", "description": "", "pathes": [ "." @@ -16723,7 +10469,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "math-random", + "name": "ignore", "url": "Unknown", "description": "", "pathes": [ @@ -16731,6 +10477,26 @@ ] } }, + { + "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": [ { @@ -16743,7 +10509,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "md5-hex", + "name": "import-cwd", "url": "sindresorhus.com", "description": "", "pathes": [ @@ -16763,8 +10529,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "md5-o-matic", - "url": "https://github.com/trentmillar/md5-o-matic", + "name": "import-fresh", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -16783,8 +10549,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "md5.js", - "url": "https://github.com/crypto-browserify/md5.js", + "name": "import-from", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -16794,17 +10560,17 @@ { "licenses": [ { - "name": "Mozilla Public License 2.0", - "url": "https://www.mozilla.org/media/MPL/2.0/index.815ca599c9df.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "Mozilla Public License 2.0", - "url": "https://www.mozilla.org/media/MPL/2.0/index.815ca599c9df.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "mdn-data", - "url": "https://developer.mozilla.org/", + "name": "imurmurhash", + "url": "https://github.com/jensyt/imurmurhash-js", "description": "", "pathes": [ "." @@ -16823,8 +10589,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "mdurl", - "url": "Unknown", + "name": "indexes-of", + "url": "https://github.com/dominictarr/indexes-of", "description": "", "pathes": [ "." @@ -16834,16 +10600,15 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "MIT*", + "url": "" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "MIT*" }, "dependency": { - "name": "media-typer", + "name": "indexof", "url": "Unknown", "description": "", "pathes": [ @@ -16854,17 +10619,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "mem", - "url": "sindresorhus.com", + "name": "inflight", + "url": "https://github.com/isaacs/inflight", "description": "", "pathes": [ "." @@ -16874,17 +10639,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "memory-fs", - "url": "https://github.com/webpack/memory-fs", + "name": "inherits", + "url": "Unknown", "description": "", "pathes": [ "." @@ -16894,17 +10659,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "merge-descriptors", - "url": "http://jongleberry.com", + "name": "inherits", + "url": "Unknown", "description": "", "pathes": [ "." @@ -16914,17 +10679,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "merge-source-map", - "url": "Unknown", + "name": "ini", + "url": "http://blog.izs.me/", "description": "", "pathes": [ "." @@ -16943,7 +10708,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "methods", + "name": "invariant", "url": "Unknown", "description": "", "pathes": [ @@ -16963,8 +10728,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "micromatch", - "url": "https://github.com/jonschlinkert/micromatch", + "name": "ip", + "url": "https://github.com/indutny/node-ip", "description": "", "pathes": [ "." @@ -16983,8 +10748,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "micromatch", - "url": "https://github.com/micromatch/micromatch", + "name": "ip-regex", + "url": "http://sindresorhus.com", "description": "", "pathes": [ "." @@ -17003,8 +10768,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "miller-rabin", - "url": "https://github.com/indutny/miller-rabin", + "name": "ipaddr.js", + "url": "Unknown", "description": "", "pathes": [ "." @@ -17023,8 +10788,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "mime", - "url": "http://github.com/broofa", + "name": "is-absolute-url", + "url": "http://sindresorhus.com", "description": "", "pathes": [ "." @@ -17043,8 +10808,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "mime", - "url": "http://github.com/broofa", + "name": "is-accessor-descriptor", + "url": "https://github.com/jonschlinkert/is-accessor-descriptor", "description": "", "pathes": [ "." @@ -17063,8 +10828,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "mime", - "url": "http://github.com/broofa", + "name": "is-accessor-descriptor", + "url": "https://github.com/jonschlinkert/is-accessor-descriptor", "description": "", "pathes": [ "." @@ -17083,8 +10848,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "mime-db", - "url": "Unknown", + "name": "is-arrayish", + "url": "http://github.com/qix-", "description": "", "pathes": [ "." @@ -17103,8 +10868,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "mime-db", - "url": "Unknown", + "name": "is-arrayish", + "url": "http://github.com/qix-", "description": "", "pathes": [ "." @@ -17123,8 +10888,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "mime-types", - "url": "http://jongleberry.com", + "name": "is-binary-path", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -17143,8 +10908,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "mime-types", - "url": "Unknown", + "name": "is-binary-path", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -17163,8 +10928,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "mime-types", - "url": "Unknown", + "name": "is-buffer", + "url": "http://feross.org/", "description": "", "pathes": [ "." @@ -17183,8 +10948,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "mimic-fn", - "url": "sindresorhus.com", + "name": "is-callable", + "url": "http://ljharb.codes", "description": "", "pathes": [ "." @@ -17203,8 +10968,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "min-document", - "url": "https://github.com/Raynos/min-document", + "name": "is-color-stop", + "url": "https://github.com/pigcan/is-color-stop#readme", "description": "", "pathes": [ "." @@ -17214,17 +10979,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "minimalistic-assert", - "url": "https://github.com/calvinmetcalf/minimalistic-assert", + "name": "is-data-descriptor", + "url": "https://github.com/jonschlinkert/is-data-descriptor", "description": "", "pathes": [ "." @@ -17243,8 +11008,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "minimalistic-crypto-utils", - "url": "https://github.com/indutny/minimalistic-crypto-utils#readme", + "name": "is-data-descriptor", + "url": "https://github.com/jonschlinkert/is-data-descriptor", "description": "", "pathes": [ "." @@ -17254,17 +11019,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "minimatch", - "url": "http://blog.izs.me", + "name": "is-date-object", + "url": "Unknown", "description": "", "pathes": [ "." @@ -17283,8 +11048,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "minimist", - "url": "https://github.com/substack/minimist", + "name": "is-descriptor", + "url": "https://github.com/jonschlinkert/is-descriptor", "description": "", "pathes": [ "." @@ -17303,8 +11068,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "minimist", - "url": "https://github.com/substack/minimist", + "name": "is-descriptor", + "url": "https://github.com/jonschlinkert/is-descriptor", "description": "", "pathes": [ "." @@ -17323,8 +11088,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "minimist", - "url": "https://github.com/substack/minimist", + "name": "is-directory", + "url": "https://github.com/jonschlinkert/is-directory", "description": "", "pathes": [ "." @@ -17334,17 +11099,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "minipass", - "url": "http://blog.izs.me/", + "name": "is-dotfile", + "url": "https://github.com/jonschlinkert/is-dotfile", "description": "", "pathes": [ "." @@ -17363,8 +11128,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "minizlib", - "url": "http://blog.izs.me/", + "name": "is-equal-shallow", + "url": "https://github.com/jonschlinkert/is-equal-shallow", "description": "", "pathes": [ "." @@ -17374,17 +11139,17 @@ { "licenses": [ { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "mississippi", - "url": "https://github.com/maxogden/mississippi#readme", + "name": "is-extendable", + "url": "https://github.com/jonschlinkert/is-extendable", "description": "", "pathes": [ "." @@ -17403,8 +11168,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "mixin-deep", - "url": "https://github.com/jonschlinkert/mixin-deep", + "name": "is-extendable", + "url": "https://github.com/jonschlinkert/is-extendable", "description": "", "pathes": [ "." @@ -17423,8 +11188,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "mkdirp", - "url": "http://substack.net", + "name": "is-extglob", + "url": "https://github.com/jonschlinkert/is-extglob", "description": "", "pathes": [ "." @@ -17443,8 +11208,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "mocha", - "url": "https://mochajs.org/", + "name": "is-extglob", + "url": "https://github.com/jonschlinkert/is-extglob", "description": "", "pathes": [ "." @@ -17463,8 +11228,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "mocha-webpack", - "url": "Unknown", + "name": "is-fullwidth-code-point", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -17483,8 +11248,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "moment", - "url": "http://momentjs.com/", + "name": "is-fullwidth-code-point", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -17494,17 +11259,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "move-concurrently", - "url": "https://www.npmjs.com/package/move-concurrently", + "name": "is-function", + "url": "https://github.com/grncdr/js-is-function", "description": "", "pathes": [ "." @@ -17523,8 +11288,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "ms", - "url": "Unknown", + "name": "is-glob", + "url": "https://github.com/jonschlinkert/is-glob", "description": "", "pathes": [ "." @@ -17543,8 +11308,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "ms", - "url": "Unknown", + "name": "is-glob", + "url": "https://github.com/jonschlinkert/is-glob", "description": "", "pathes": [ "." @@ -17563,8 +11328,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "mustache", - "url": "https://github.com/janl/mustache.js", + "name": "is-glob", + "url": "https://github.com/micromatch/is-glob", "description": "", "pathes": [ "." @@ -17574,17 +11339,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "mute-stream", - "url": "http://blog.izs.me/", + "name": "is-https", + "url": "Unknown", "description": "", "pathes": [ "." @@ -17603,8 +11368,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "nan", - "url": "Unknown", + "name": "is-number", + "url": "https://github.com/jonschlinkert/is-number", "description": "", "pathes": [ "." @@ -17623,8 +11388,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "nanomatch", - "url": "https://github.com/micromatch/nanomatch", + "name": "is-number", + "url": "https://github.com/jonschlinkert/is-number", "description": "", "pathes": [ "." @@ -17643,8 +11408,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "natural-compare", - "url": "https://github.com/litejs/natural-compare-lite", + "name": "is-number", + "url": "https://github.com/jonschlinkert/is-number", "description": "", "pathes": [ "." @@ -17663,8 +11428,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "needle", - "url": "Unknown", + "name": "is-number", + "url": "https://github.com/jonschlinkert/is-number", "description": "", "pathes": [ "." @@ -17683,8 +11448,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "negotiator", - "url": "Unknown", + "name": "is-obj", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -17703,8 +11468,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "neo-async", - "url": "https://github.com/suguru03/neo-async", + "name": "is-plain-obj", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -17723,8 +11488,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "nice-try", - "url": "https://github.com/electerious/nice-try", + "name": "is-plain-object", + "url": "https://github.com/jonschlinkert/is-plain-object", "description": "", "pathes": [ "." @@ -17743,8 +11508,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "no-case", - "url": "https://github.com/blakeembrey/no-case", + "name": "is-posix-bracket", + "url": "https://github.com/jonschlinkert/is-posix-bracket", "description": "", "pathes": [ "." @@ -17763,8 +11528,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "node-fetch", - "url": "https://github.com/bitinn/node-fetch", + "name": "is-primitive", + "url": "https://github.com/jonschlinkert/is-primitive", "description": "", "pathes": [ "." @@ -17783,8 +11548,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "node-libs-browser", - "url": "http://github.com/webpack/node-libs-browser", + "name": "is-promise", + "url": "Unknown", "description": "", "pathes": [ "." @@ -17794,17 +11559,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "node-object-hash", - "url": "https://github.com/SkeLLLa/node-object-hash", + "name": "is-regex", + "url": "https://github.com/ljharb/is-regex", "description": "", "pathes": [ "." @@ -17814,17 +11579,17 @@ { "licenses": [ { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "node-pre-gyp", - "url": "Unknown", + "name": "is-resolvable", + "url": "https://github.com/shinnn", "description": "", "pathes": [ "." @@ -17843,8 +11608,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "node-releases", - "url": "Unknown", + "name": "is-retry-allowed", + "url": "github.com/floatdrop", "description": "", "pathes": [ "." @@ -17863,8 +11628,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "node-uuid", - "url": "https://github.com/broofa/node-uuid", + "name": "is-stream", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -17874,17 +11639,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "nopt", - "url": "http://blog.izs.me/", + "name": "is-svg", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -17894,17 +11659,17 @@ { "licenses": [ { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "normalize-package-data", - "url": "Unknown", + "name": "is-svg", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -17923,8 +11688,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "normalize-path", - "url": "https://github.com/jonschlinkert/normalize-path", + "name": "is-symbol", + "url": "Unknown", "description": "", "pathes": [ "." @@ -17943,8 +11708,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "normalize-path", - "url": "https://github.com/jonschlinkert/normalize-path", + "name": "is-typedarray", + "url": "https://github.com/hughsk/is-typedarray", "description": "", "pathes": [ "." @@ -17963,8 +11728,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "normalize-path", - "url": "https://github.com/jonschlinkert/normalize-path", + "name": "is-windows", + "url": "https://github.com/jonschlinkert/is-windows", "description": "", "pathes": [ "." @@ -17983,8 +11748,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "normalize-range", - "url": "github.com/jamestalmage", + "name": "is-wsl", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -18003,8 +11768,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "normalize-url", - "url": "sindresorhus.com", + "name": "isarray", + "url": "https://github.com/juliangruber/isarray", "description": "", "pathes": [ "." @@ -18014,17 +11779,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "normalize-url", - "url": "sindresorhus.com", + "name": "isexe", + "url": "https://github.com/isaacs/isexe#readme", "description": "", "pathes": [ "." @@ -18043,8 +11808,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "normalize-url", - "url": "sindresorhus.com", + "name": "isobject", + "url": "https://github.com/jonschlinkert/isobject", "description": "", "pathes": [ "." @@ -18063,8 +11828,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "normalize.css", - "url": "https://necolas.github.io/normalize.css", + "name": "isobject", + "url": "https://github.com/jonschlinkert/isobject", "description": "", "pathes": [ "." @@ -18074,17 +11839,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "npm-bundled", - "url": "http://blog.izs.me/", + "name": "isstream", + "url": "https://github.com/rvagg/isstream", "description": "", "pathes": [ "." @@ -18094,17 +11859,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "npm-packlist", - "url": "https://www.npmjs.com/package/npm-packlist", + "name": "jimp", + "url": "Unknown", "description": "", "pathes": [ "." @@ -18114,17 +11879,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "npm-run-path", - "url": "sindresorhus.com", + "name": "jpeg-js", + "url": "Unknown", "description": "", "pathes": [ "." @@ -18134,17 +11899,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "npmlog", - "url": "http://blog.izs.me/", + "name": "js-base64", + "url": "Unknown", "description": "", "pathes": [ "." @@ -18154,17 +11919,17 @@ { "licenses": [ { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "nth-check", - "url": "https://github.com/fb55/nth-check", + "name": "js-levenshtein", + "url": "Unknown", "description": "", "pathes": [ "." @@ -18183,8 +11948,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "num2fraction", - "url": "http://iyunlu.com/view", + "name": "js-tokens", + "url": "Unknown", "description": "", "pathes": [ "." @@ -18203,8 +11968,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "number-is-nan", - "url": "sindresorhus.com", + "name": "js-yaml", + "url": "https://github.com/nodeca/js-yaml", "description": "", "pathes": [ "." @@ -18223,8 +11988,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "nuxt", - "url": "Unknown", + "name": "js-yaml", + "url": "https://github.com/nodeca/js-yaml", "description": "", "pathes": [ "." @@ -18243,8 +12008,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "nuxtent", - "url": "https://github.com/nuxt-community/nuxtent-module#readme", + "name": "js-yaml", + "url": "https://github.com/nodeca/js-yaml", "description": "", "pathes": [ "." @@ -18263,8 +12028,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "nwmatcher", - "url": "http://javascript.nwbox.com/NWMatcher/", + "name": "jsbn", + "url": "Unknown", "description": "", "pathes": [ "." @@ -18274,17 +12039,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "nyc", - "url": "Unknown", + "name": "jsesc", + "url": "http://mths.be/jsesc", "description": "", "pathes": [ "." @@ -18294,16 +12059,17 @@ { "licenses": [ { - "name": "Apache*", - "url": "" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "Apache*" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "oauth-sign", - "url": "http://www.futurealoof.com", + "name": "jsesc", + "url": "https://mths.be/jsesc", "description": "", "pathes": [ "." @@ -18313,17 +12079,17 @@ { "licenses": [ { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "oauth-sign", - "url": "http://www.futurealoof.com", + "name": "json-parse-better-errors", + "url": "Unknown", "description": "", "pathes": [ "." @@ -18333,17 +12099,16 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "BSD*", + "url": "" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "BSD*" }, "dependency": { - "name": "object-assign", - "url": "sindresorhus.com", + "name": "json-schema", + "url": "Unknown", "description": "", "pathes": [ "." @@ -18362,8 +12127,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "object-copy", - "url": "https://github.com/jonschlinkert/object-copy", + "name": "json-schema-traverse", + "url": "https://github.com/epoberezkin/json-schema-traverse#readme", "description": "", "pathes": [ "." @@ -18382,8 +12147,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "object-hash", - "url": "https://github.com/puleos/object-hash", + "name": "json-schema-traverse", + "url": "https://github.com/epoberezkin/json-schema-traverse#readme", "description": "", "pathes": [ "." @@ -18393,17 +12158,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "object-keys", - "url": "http://ljharb.codes", + "name": "json-stringify-safe", + "url": "https://github.com/isaacs/json-stringify-safe", "description": "", "pathes": [ "." @@ -18422,8 +12187,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "object-visit", - "url": "https://github.com/jonschlinkert/object-visit", + "name": "json5", + "url": "http://json5.org/", "description": "", "pathes": [ "." @@ -18442,8 +12207,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "object.getownpropertydescriptors", - "url": "Unknown", + "name": "json5", + "url": "http://json5.org/", "description": "", "pathes": [ "." @@ -18462,8 +12227,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "object.omit", - "url": "https://github.com/jonschlinkert/object.omit", + "name": "json5", + "url": "http://json5.org/", "description": "", "pathes": [ "." @@ -18482,8 +12247,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "object.pick", - "url": "https://github.com/jonschlinkert/object.pick", + "name": "jsonfile", + "url": "Unknown", "description": "", "pathes": [ "." @@ -18502,7 +12267,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "object.values", + "name": "jsonfile", "url": "Unknown", "description": "", "pathes": [ @@ -18513,17 +12278,16 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Public Domain", + "url": "" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Public Domain" }, "dependency": { - "name": "on-finished", - "url": "Unknown", + "name": "jsonify", + "url": "http://crockford.com/", "description": "", "pathes": [ "." @@ -18542,7 +12306,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "on-headers", + "name": "jsprim", "url": "Unknown", "description": "", "pathes": [ @@ -18553,17 +12317,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "once", - "url": "http://blog.izs.me/", + "name": "kind-of", + "url": "https://github.com/jonschlinkert/kind-of", "description": "", "pathes": [ "." @@ -18582,8 +12346,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "onetime", - "url": "sindresorhus.com", + "name": "kind-of", + "url": "https://github.com/jonschlinkert/kind-of", "description": "", "pathes": [ "." @@ -18593,16 +12357,17 @@ { "licenses": [ { - "name": "(WTFPL OR MIT)", - "url": "" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "(WTFPL OR MIT)" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "opener", - "url": "https://domenic.me/", + "name": "kind-of", + "url": "https://github.com/jonschlinkert/kind-of", "description": "", "pathes": [ "." @@ -18621,8 +12386,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "optimist", - "url": "http://substack.net", + "name": "kind-of", + "url": "https://github.com/jonschlinkert/kind-of", "description": "", "pathes": [ "." @@ -18641,8 +12406,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "optimize-css-assets-webpack-plugin", - "url": "http://github.com/NMFR/optimize-css-assets-webpack-plugin", + "name": "last-call-webpack-plugin", + "url": "http://github.com/NMFR/last-call-webpack-plugin", "description": "", "pathes": [ "." @@ -18661,8 +12426,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "optionator", - "url": "https://github.com/gkz/optionator", + "name": "launch-editor", + "url": "https://github.com/yyx990803/launch-editor#readme", "description": "", "pathes": [ "." @@ -18681,8 +12446,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "os-browserify", - "url": "Unknown", + "name": "launch-editor-middleware", + "url": "https://github.com/yyx990803/launch-editor#readme", "description": "", "pathes": [ "." @@ -18701,8 +12466,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "os-homedir", - "url": "sindresorhus.com", + "name": "linkify-it", + "url": "Unknown", "description": "", "pathes": [ "." @@ -18721,8 +12486,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "os-locale", - "url": "sindresorhus.com", + "name": "load-bmfont", + "url": "https://github.com/Jam3/load-bmfont", "description": "", "pathes": [ "." @@ -18741,8 +12506,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "os-locale", - "url": "sindresorhus.com", + "name": "loader-runner", + "url": "https://github.com/webpack/loader-runner#readme", "description": "", "pathes": [ "." @@ -18761,8 +12526,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "os-tmpdir", - "url": "sindresorhus.com", + "name": "loader-utils", + "url": "Unknown", "description": "", "pathes": [ "." @@ -18772,17 +12537,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "osenv", - "url": "http://blog.izs.me/", + "name": "loader-utils", + "url": "Unknown", "description": "", "pathes": [ "." @@ -18801,7 +12566,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "p-finally", + "name": "locate-path", "url": "sindresorhus.com", "description": "", "pathes": [ @@ -18821,8 +12586,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "p-limit", - "url": "sindresorhus.com", + "name": "lodash", + "url": "https://lodash.com/", "description": "", "pathes": [ "." @@ -18841,8 +12606,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "p-limit", - "url": "sindresorhus.com", + "name": "lodash", + "url": "https://lodash.com/", "description": "", "pathes": [ "." @@ -18861,8 +12626,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "p-locate", - "url": "sindresorhus.com", + "name": "lodash._reinterpolate", + "url": "https://lodash.com/", "description": "", "pathes": [ "." @@ -18881,8 +12646,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "p-locate", - "url": "sindresorhus.com", + "name": "lodash.isplainobject", + "url": "https://lodash.com/", "description": "", "pathes": [ "." @@ -18901,8 +12666,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "p-try", - "url": "sindresorhus.com", + "name": "lodash.kebabcase", + "url": "https://lodash.com/", "description": "", "pathes": [ "." @@ -18921,8 +12686,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "p-try", - "url": "sindresorhus.com", + "name": "lodash.memoize", + "url": "https://lodash.com/", "description": "", "pathes": [ "." @@ -18932,16 +12697,17 @@ { "licenses": [ { - "name": "(MIT AND Zlib)", - "url": "" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "(MIT AND Zlib)" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "pako", - "url": "https://github.com/nodeca/pako", + "name": "lodash.merge", + "url": "https://lodash.com/", "description": "", "pathes": [ "." @@ -18960,8 +12726,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "parallel-transform", - "url": "Unknown", + "name": "lodash.template", + "url": "https://lodash.com/", "description": "", "pathes": [ "." @@ -18980,8 +12746,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "param-case", - "url": "https://github.com/blakeembrey/param-case", + "name": "lodash.templatesettings", + "url": "https://lodash.com/", "description": "", "pathes": [ "." @@ -18991,17 +12757,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "parse-asn1", - "url": "Unknown", + "name": "lodash.uniq", + "url": "https://lodash.com/", "description": "", "pathes": [ "." @@ -19020,8 +12786,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "parse-bmfont-ascii", - "url": "https://github.com/mattdesl/parse-bmfont-ascii", + "name": "lodash.uniqueid", + "url": "https://lodash.com/", "description": "", "pathes": [ "." @@ -19040,8 +12806,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "parse-bmfont-binary", - "url": "https://github.com/Jam3/parse-bmfont-binary", + "name": "loose-envify", + "url": "https://github.com/zertosh/loose-envify", "description": "", "pathes": [ "." @@ -19060,8 +12826,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "parse-bmfont-xml", - "url": "https://github.com/mattdesl/parse-bmfont-xml", + "name": "lower-case", + "url": "https://github.com/blakeembrey/lower-case", "description": "", "pathes": [ "." @@ -19071,17 +12837,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "parse-glob", - "url": "https://github.com/jonschlinkert/parse-glob", + "name": "lru-cache", + "url": "Unknown", "description": "", "pathes": [ "." @@ -19091,17 +12857,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "parse-headers", - "url": "https://github.com/kesla/parse-headers", + "name": "lru-cache", + "url": "Unknown", "description": "", "pathes": [ "." @@ -19111,17 +12877,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "parse-json", - "url": "sindresorhus.com", + "name": "lru-cache", + "url": "Unknown", "description": "", "pathes": [ "." @@ -19140,7 +12906,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "parse-json", + "name": "make-dir", "url": "sindresorhus.com", "description": "", "pathes": [ @@ -19160,8 +12926,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "parse5", - "url": "https://github.com/inikulin/parse5", + "name": "make-dir", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -19180,7 +12946,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "parseurl", + "name": "mamacro", "url": "Unknown", "description": "", "pathes": [ @@ -19200,8 +12966,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "pascalcase", - "url": "https://github.com/jonschlinkert/pascalcase", + "name": "map-cache", + "url": "https://github.com/jonschlinkert/map-cache", "description": "", "pathes": [ "." @@ -19220,8 +12986,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "path-browserify", - "url": "https://github.com/substack/path-browserify", + "name": "map-visit", + "url": "https://github.com/jonschlinkert/map-visit", "description": "", "pathes": [ "." @@ -19240,7 +13006,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "path-dirname", + "name": "markdown-it", "url": "Unknown", "description": "", "pathes": [ @@ -19251,17 +13017,16 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Unlicense", + "url": "" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Unlicense" }, "dependency": { - "name": "path-exists", - "url": "sindresorhus.com", + "name": "markdown-it-anchor", + "url": "https://github.com/valeriangalliat/markdown-it-anchor", "description": "", "pathes": [ "." @@ -19280,8 +13045,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "path-exists", - "url": "sindresorhus.com", + "name": "math-expression-evaluator", + "url": "https://github.com/redhivesoftware/math-expression-evaluator#readme", "description": "", "pathes": [ "." @@ -19300,27 +13065,8 @@ "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", + "name": "math-random", + "url": "Unknown", "description": "", "pathes": [ "." @@ -19339,8 +13085,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "path-key", - "url": "sindresorhus.com", + "name": "md5.js", + "url": "https://github.com/crypto-browserify/md5.js", "description": "", "pathes": [ "." @@ -19350,17 +13096,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Mozilla Public License 2.0", + "url": "https://www.mozilla.org/media/MPL/2.0/index.815ca599c9df.txt" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Mozilla Public License 2.0", + "url": "https://www.mozilla.org/media/MPL/2.0/index.815ca599c9df.txt" }, "dependency": { - "name": "path-parse", - "url": "https://github.com/jbgutierrez/path-parse#readme", + "name": "mdn-data", + "url": "https://developer.mozilla.org/", "description": "", "pathes": [ "." @@ -19379,7 +13125,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "path-to-regexp", + "name": "mdurl", "url": "Unknown", "description": "", "pathes": [ @@ -19399,7 +13145,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "path-to-regexp", + "name": "media-typer", "url": "Unknown", "description": "", "pathes": [ @@ -19419,8 +13165,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "path-type", - "url": "sindresorhus.com", + "name": "memory-fs", + "url": "https://github.com/webpack/memory-fs", "description": "", "pathes": [ "." @@ -19439,8 +13185,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "path-type", - "url": "sindresorhus.com", + "name": "merge-descriptors", + "url": "http://jongleberry.com", "description": "", "pathes": [ "." @@ -19459,8 +13205,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "pathval", - "url": "https://github.com/chaijs/pathval", + "name": "merge-source-map", + "url": "Unknown", "description": "", "pathes": [ "." @@ -19479,8 +13225,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "pbkdf2", - "url": "https://github.com/crypto-browserify/pbkdf2", + "name": "methods", + "url": "Unknown", "description": "", "pathes": [ "." @@ -19499,8 +13245,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "performance-now", - "url": "https://github.com/braveg1rl/performance-now", + "name": "micromatch", + "url": "https://github.com/jonschlinkert/micromatch", "description": "", "pathes": [ "." @@ -19519,8 +13265,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "picomatch", - "url": "https://github.com/micromatch/picomatch", + "name": "micromatch", + "url": "https://github.com/micromatch/micromatch", "description": "", "pathes": [ "." @@ -19539,8 +13285,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "pify", - "url": "sindresorhus.com", + "name": "miller-rabin", + "url": "https://github.com/indutny/miller-rabin", "description": "", "pathes": [ "." @@ -19559,8 +13305,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "pify", - "url": "sindresorhus.com", + "name": "mime", + "url": "http://github.com/broofa", "description": "", "pathes": [ "." @@ -19579,8 +13325,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "pify", - "url": "sindresorhus.com", + "name": "mime", + "url": "http://github.com/broofa", "description": "", "pathes": [ "." @@ -19599,8 +13345,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "pinkie", - "url": "github.com/floatdrop", + "name": "mime-db", + "url": "Unknown", "description": "", "pathes": [ "." @@ -19619,8 +13365,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "pinkie-promise", - "url": "github.com/floatdrop", + "name": "mime-db", + "url": "Unknown", "description": "", "pathes": [ "." @@ -19630,17 +13376,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "pixelmatch", - "url": "https://github.com/mapbox/pixelmatch#readme", + "name": "mime-types", + "url": "Unknown", "description": "", "pathes": [ "." @@ -19659,8 +13405,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "pkg-dir", - "url": "sindresorhus.com", + "name": "mime-types", + "url": "Unknown", "description": "", "pathes": [ "." @@ -19679,8 +13425,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "pkg-dir", - "url": "sindresorhus.com", + "name": "min-document", + "url": "https://github.com/Raynos/min-document", "description": "", "pathes": [ "." @@ -19690,17 +13436,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "pluralize", - "url": "http://blakeembrey.me", + "name": "minimalistic-assert", + "url": "https://github.com/calvinmetcalf/minimalistic-assert", "description": "", "pathes": [ "." @@ -19719,8 +13465,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "pn", - "url": "Unknown", + "name": "minimalistic-crypto-utils", + "url": "https://github.com/indutny/minimalistic-crypto-utils#readme", "description": "", "pathes": [ "." @@ -19730,17 +13476,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "pngjs", - "url": "https://github.com/lukeapage/pngjs", + "name": "minimatch", + "url": "http://blog.izs.me", "description": "", "pathes": [ "." @@ -19759,8 +13505,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "popper.js", - "url": "https://popper.js.org/", + "name": "minimist", + "url": "https://github.com/substack/minimist", "description": "", "pathes": [ "." @@ -19779,8 +13525,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "posix-character-classes", - "url": "https://github.com/jonschlinkert/posix-character-classes", + "name": "minimist", + "url": "https://github.com/substack/minimist", "description": "", "pathes": [ "." @@ -19790,17 +13536,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "postcss", - "url": "http://postcss.org/", + "name": "minipass", + "url": "http://blog.izs.me/", "description": "", "pathes": [ "." @@ -19819,8 +13565,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss", - "url": "https://postcss.org/", + "name": "minizlib", + "url": "http://blog.izs.me/", "description": "", "pathes": [ "." @@ -19830,17 +13576,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "postcss-attribute-case-insensitive", - "url": "https://github.com/Semigradsky/postcss-attribute-case-insensitive#readme", + "name": "mississippi", + "url": "https://github.com/maxogden/mississippi#readme", "description": "", "pathes": [ "." @@ -19859,8 +13605,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-calc", - "url": "Unknown", + "name": "mixin-deep", + "url": "https://github.com/jonschlinkert/mixin-deep", "description": "", "pathes": [ "." @@ -19879,8 +13625,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-calc", - "url": "Unknown", + "name": "mkdirp", + "url": "http://substack.net", "description": "", "pathes": [ "." @@ -19890,16 +13636,17 @@ { "licenses": [ { - "name": "CC0-1.0", - "url": "" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "CC0-1.0" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-color-functional-notation", - "url": "https://github.com/jonathantneal/postcss-color-functional-notation#readme", + "name": "moment", + "url": "http://momentjs.com/", "description": "", "pathes": [ "." @@ -19918,8 +13665,8 @@ "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "postcss-color-gray", - "url": "https://github.com/postcss/postcss-color-gray#readme", + "name": "move-concurrently", + "url": "https://www.npmjs.com/package/move-concurrently", "description": "", "pathes": [ "." @@ -19938,8 +13685,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-color-hex-alpha", - "url": "https://github.com/postcss/postcss-color-hex-alpha#readme", + "name": "ms", + "url": "Unknown", "description": "", "pathes": [ "." @@ -19949,16 +13696,17 @@ { "licenses": [ { - "name": "CC0-1.0", - "url": "" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "CC0-1.0" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-color-mod-function", - "url": "https://github.com/jonathantneal/postcss-color-mod-function#readme", + "name": "ms", + "url": "Unknown", "description": "", "pathes": [ "." @@ -19977,8 +13725,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-color-rebeccapurple", - "url": "Unknown", + "name": "mustache", + "url": "https://github.com/janl/mustache.js", "description": "", "pathes": [ "." @@ -19997,8 +13745,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-colormin", - "url": "https://github.com/ben-eb/postcss-colormin", + "name": "nan", + "url": "Unknown", "description": "", "pathes": [ "." @@ -20017,8 +13765,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-colormin", - "url": "https://github.com/cssnano/cssnano", + "name": "nanomatch", + "url": "https://github.com/micromatch/nanomatch", "description": "", "pathes": [ "." @@ -20037,8 +13785,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-convert-values", - "url": "https://github.com/ben-eb/postcss-convert-values", + "name": "needle", + "url": "Unknown", "description": "", "pathes": [ "." @@ -20057,8 +13805,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-convert-values", - "url": "https://github.com/cssnano/cssnano", + "name": "negotiator", + "url": "Unknown", "description": "", "pathes": [ "." @@ -20077,8 +13825,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-custom-media", - "url": "https://github.com/postcss/postcss-custom-media#readme", + "name": "neo-async", + "url": "https://github.com/suguru03/neo-async", "description": "", "pathes": [ "." @@ -20097,8 +13845,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-custom-properties", - "url": "https://github.com/postcss/postcss-custom-properties#readme", + "name": "nice-try", + "url": "https://github.com/electerious/nice-try", "description": "", "pathes": [ "." @@ -20117,8 +13865,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-custom-selectors", - "url": "https://github.com/postcss/postcss-custom-selectors#readme", + "name": "no-case", + "url": "https://github.com/blakeembrey/no-case", "description": "", "pathes": [ "." @@ -20128,16 +13876,17 @@ { "licenses": [ { - "name": "CC0-1.0", - "url": "" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "CC0-1.0" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-dir-pseudo-class", - "url": "https://github.com/jonathantneal/postcss-dir-pseudo-class#readme", + "name": "node-fetch", + "url": "https://github.com/bitinn/node-fetch", "description": "", "pathes": [ "." @@ -20156,8 +13905,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-discard-comments", - "url": "https://github.com/ben-eb/postcss-discard-comments", + "name": "node-libs-browser", + "url": "http://github.com/webpack/node-libs-browser", "description": "", "pathes": [ "." @@ -20167,17 +13916,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "postcss-discard-comments", - "url": "https://github.com/cssnano/cssnano", + "name": "node-object-hash", + "url": "https://github.com/SkeLLLa/node-object-hash", "description": "", "pathes": [ "." @@ -20187,17 +13936,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "postcss-discard-duplicates", - "url": "https://github.com/ben-eb/postcss-discard-duplicates", + "name": "node-pre-gyp", + "url": "Unknown", "description": "", "pathes": [ "." @@ -20216,8 +13965,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-discard-duplicates", - "url": "https://github.com/cssnano/cssnano", + "name": "node-releases", + "url": "Unknown", "description": "", "pathes": [ "." @@ -20227,17 +13976,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "postcss-discard-empty", - "url": "https://github.com/ben-eb/postcss-discard-empty", + "name": "nopt", + "url": "http://blog.izs.me/", "description": "", "pathes": [ "." @@ -20256,8 +14005,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-discard-empty", - "url": "https://github.com/cssnano/cssnano", + "name": "normalize-path", + "url": "https://github.com/jonschlinkert/normalize-path", "description": "", "pathes": [ "." @@ -20276,8 +14025,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-discard-overridden", - "url": "https://github.com/Justineo/postcss-discard-overridden", + "name": "normalize-path", + "url": "https://github.com/jonschlinkert/normalize-path", "description": "", "pathes": [ "." @@ -20296,8 +14045,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-discard-overridden", - "url": "https://github.com/cssnano/cssnano", + "name": "normalize-range", + "url": "github.com/jamestalmage", "description": "", "pathes": [ "." @@ -20316,8 +14065,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-discard-unused", - "url": "https://github.com/ben-eb/postcss-discard-unused", + "name": "normalize-url", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -20327,16 +14076,17 @@ { "licenses": [ { - "name": "CC0-1.0", - "url": "" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "CC0-1.0" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-double-position-gradients", - "url": "https://github.com/jonathantneal/postcss-double-position-gradients#readme", + "name": "normalize-url", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -20346,16 +14096,17 @@ { "licenses": [ { - "name": "CC0-1.0", - "url": "" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "CC0-1.0" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-env-function", - "url": "https://github.com/jonathantneal/postcss-env-function#readme", + "name": "normalize-url", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -20374,8 +14125,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-filter-plugins", - "url": "https://github.com/postcss/postcss-filter-plugins", + "name": "normalize.css", + "url": "https://necolas.github.io/normalize.css", "description": "", "pathes": [ "." @@ -20385,16 +14136,17 @@ { "licenses": [ { - "name": "CC0-1.0", - "url": "" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "CC0-1.0" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "postcss-focus-visible", - "url": "https://github.com/jonathantneal/postcss-focus-visible#readme", + "name": "npm-bundled", + "url": "http://blog.izs.me/", "description": "", "pathes": [ "." @@ -20404,16 +14156,17 @@ { "licenses": [ { - "name": "CC0-1.0", - "url": "" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "CC0-1.0" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "postcss-focus-within", - "url": "https://github.com/jonathantneal/postcss-focus-within#readme", + "name": "npm-packlist", + "url": "https://www.npmjs.com/package/npm-packlist", "description": "", "pathes": [ "." @@ -20432,8 +14185,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-font-variant", - "url": "Unknown", + "name": "npm-run-path", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -20443,16 +14196,17 @@ { "licenses": [ { - "name": "CC0-1.0", - "url": "" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "CC0-1.0" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "postcss-gap-properties", - "url": "https://github.com/jonathantneal/postcss-gap-properties#readme", + "name": "npmlog", + "url": "http://blog.izs.me/", "description": "", "pathes": [ "." @@ -20462,16 +14216,17 @@ { "licenses": [ { - "name": "CC0-1.0", - "url": "" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" } ], "license": { - "name": "CC0-1.0" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "postcss-image-set-function", - "url": "https://github.com/jonathantneal/postcss-image-set-function#readme", + "name": "nth-check", + "url": "https://github.com/fb55/nth-check", "description": "", "pathes": [ "." @@ -20490,8 +14245,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-import", - "url": "Unknown", + "name": "num2fraction", + "url": "http://iyunlu.com/view", "description": "", "pathes": [ "." @@ -20510,8 +14265,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-import-resolver", - "url": "Unknown", + "name": "number-is-nan", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -20530,7 +14285,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-initial", + "name": "nuxt", "url": "Unknown", "description": "", "pathes": [ @@ -20538,25 +14293,6 @@ ] } }, - { - "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": [ { @@ -20569,8 +14305,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-load-config", - "url": "https://github.com/michael-ciniawsky/postcss-load-config#readme", + "name": "nuxtent", + "url": "https://github.com/nuxt-community/nuxtent-module#readme", "description": "", "pathes": [ "." @@ -20580,17 +14316,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, "dependency": { - "name": "postcss-loader", - "url": "https://github.com/postcss/postcss-loader#readme", + "name": "oauth-sign", + "url": "http://www.futurealoof.com", "description": "", "pathes": [ "." @@ -20600,16 +14336,17 @@ { "licenses": [ { - "name": "CC0-1.0", - "url": "" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "CC0-1.0" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-logical", - "url": "https://github.com/jonathantneal/postcss-logical#readme", + "name": "object-assign", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -20628,8 +14365,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-media-minmax", - "url": "Unknown", + "name": "object-copy", + "url": "https://github.com/jonschlinkert/object-copy", "description": "", "pathes": [ "." @@ -20648,8 +14385,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-merge-idents", - "url": "https://github.com/ben-eb/postcss-merge-idents", + "name": "object-keys", + "url": "http://ljharb.codes", "description": "", "pathes": [ "." @@ -20668,8 +14405,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-merge-longhand", - "url": "https://github.com/ben-eb/postcss-merge-longhand", + "name": "object-visit", + "url": "https://github.com/jonschlinkert/object-visit", "description": "", "pathes": [ "." @@ -20688,8 +14425,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-merge-longhand", - "url": "https://github.com/cssnano/cssnano", + "name": "object.getownpropertydescriptors", + "url": "Unknown", "description": "", "pathes": [ "." @@ -20708,8 +14445,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-merge-rules", - "url": "https://github.com/ben-eb/postcss-merge-rules", + "name": "object.omit", + "url": "https://github.com/jonschlinkert/object.omit", "description": "", "pathes": [ "." @@ -20728,8 +14465,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-merge-rules", - "url": "https://github.com/cssnano/cssnano", + "name": "object.pick", + "url": "https://github.com/jonschlinkert/object.pick", "description": "", "pathes": [ "." @@ -20748,7 +14485,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-message-helpers", + "name": "object.values", "url": "Unknown", "description": "", "pathes": [ @@ -20768,8 +14505,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-minify-font-values", - "url": "https://github.com/TrySound/postcss-minify-font-values", + "name": "on-finished", + "url": "Unknown", "description": "", "pathes": [ "." @@ -20788,8 +14525,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-minify-font-values", - "url": "https://github.com/cssnano/cssnano", + "name": "on-headers", + "url": "Unknown", "description": "", "pathes": [ "." @@ -20799,17 +14536,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "postcss-minify-gradients", - "url": "https://github.com/ben-eb/postcss-minify-gradients", + "name": "once", + "url": "http://blog.izs.me/", "description": "", "pathes": [ "." @@ -20819,17 +14556,16 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "(WTFPL OR MIT)", + "url": "" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "(WTFPL OR MIT)" }, "dependency": { - "name": "postcss-minify-gradients", - "url": "https://github.com/cssnano/cssnano", + "name": "opener", + "url": "https://domenic.me/", "description": "", "pathes": [ "." @@ -20848,8 +14584,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-minify-params", - "url": "https://github.com/ben-eb/postcss-minify-params", + "name": "optimize-css-assets-webpack-plugin", + "url": "http://github.com/NMFR/optimize-css-assets-webpack-plugin", "description": "", "pathes": [ "." @@ -20868,8 +14604,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-minify-params", - "url": "https://github.com/cssnano/cssnano", + "name": "os-browserify", + "url": "Unknown", "description": "", "pathes": [ "." @@ -20888,8 +14624,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-minify-selectors", - "url": "https://github.com/ben-eb/postcss-minify-selectors", + "name": "os-homedir", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -20908,8 +14644,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-minify-selectors", - "url": "https://github.com/cssnano/cssnano", + "name": "os-tmpdir", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -20928,8 +14664,8 @@ "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "postcss-modules-extract-imports", - "url": "https://github.com/css-modules/postcss-modules-extract-imports", + "name": "osenv", + "url": "http://blog.izs.me/", "description": "", "pathes": [ "." @@ -20948,8 +14684,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-modules-local-by-default", - "url": "Unknown", + "name": "p-finally", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -20959,17 +14695,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-modules-scope", - "url": "https://github.com/css-modules/postcss-modules-scope", + "name": "p-limit", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -20979,17 +14715,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-modules-values", - "url": "https://github.com/css-modules/postcss-modules-values#readme", + "name": "p-locate", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -20999,16 +14735,17 @@ { "licenses": [ { - "name": "CC0-1.0", - "url": "" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "CC0-1.0" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-nesting", - "url": "https://github.com/jonathantneal/postcss-nesting#readme", + "name": "p-try", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -21018,17 +14755,16 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "(MIT AND Zlib)", + "url": "" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "(MIT AND Zlib)" }, "dependency": { - "name": "postcss-normalize-charset", - "url": "https://github.com/ben-eb/postcss-charset", + "name": "pako", + "url": "https://github.com/nodeca/pako", "description": "", "pathes": [ "." @@ -21047,8 +14783,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-normalize-charset", - "url": "https://github.com/cssnano/cssnano", + "name": "parallel-transform", + "url": "Unknown", "description": "", "pathes": [ "." @@ -21067,8 +14803,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-normalize-display-values", - "url": "https://github.com/cssnano/cssnano", + "name": "param-case", + "url": "https://github.com/blakeembrey/param-case", "description": "", "pathes": [ "." @@ -21078,17 +14814,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "postcss-normalize-positions", - "url": "https://github.com/cssnano/cssnano", + "name": "parse-asn1", + "url": "Unknown", "description": "", "pathes": [ "." @@ -21107,8 +14843,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-normalize-repeat-style", - "url": "https://github.com/cssnano/cssnano", + "name": "parse-bmfont-ascii", + "url": "https://github.com/mattdesl/parse-bmfont-ascii", "description": "", "pathes": [ "." @@ -21127,8 +14863,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-normalize-string", - "url": "https://github.com/cssnano/cssnano", + "name": "parse-bmfont-binary", + "url": "https://github.com/Jam3/parse-bmfont-binary", "description": "", "pathes": [ "." @@ -21147,8 +14883,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-normalize-timing-functions", - "url": "https://github.com/cssnano/cssnano", + "name": "parse-bmfont-xml", + "url": "https://github.com/mattdesl/parse-bmfont-xml", "description": "", "pathes": [ "." @@ -21167,8 +14903,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-normalize-unicode", - "url": "https://github.com/cssnano/cssnano", + "name": "parse-glob", + "url": "https://github.com/jonschlinkert/parse-glob", "description": "", "pathes": [ "." @@ -21187,8 +14923,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-normalize-url", - "url": "https://github.com/ben-eb/postcss-normalize-url", + "name": "parse-headers", + "url": "https://github.com/kesla/parse-headers", "description": "", "pathes": [ "." @@ -21207,8 +14943,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-normalize-url", - "url": "https://github.com/cssnano/cssnano", + "name": "parse-json", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -21227,8 +14963,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-normalize-whitespace", - "url": "https://github.com/cssnano/cssnano", + "name": "parseurl", + "url": "Unknown", "description": "", "pathes": [ "." @@ -21247,8 +14983,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-ordered-values", - "url": "https://github.com/ben-eb/postcss-ordered-values", + "name": "pascalcase", + "url": "https://github.com/jonschlinkert/pascalcase", "description": "", "pathes": [ "." @@ -21267,8 +15003,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-ordered-values", - "url": "https://github.com/cssnano/cssnano", + "name": "path-browserify", + "url": "https://github.com/substack/path-browserify", "description": "", "pathes": [ "." @@ -21278,16 +15014,17 @@ { "licenses": [ { - "name": "CC0-1.0", - "url": "" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "CC0-1.0" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-overflow-shorthand", - "url": "https://github.com/jonathantneal/postcss-overflow-shorthand#readme", + "name": "path-dirname", + "url": "Unknown", "description": "", "pathes": [ "." @@ -21306,8 +15043,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-page-break", - "url": "https://github.com/shrpne/postcss-page-break", + "name": "path-exists", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -21317,16 +15054,17 @@ { "licenses": [ { - "name": "CC0-1.0", - "url": "" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "CC0-1.0" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-place", - "url": "https://github.com/jonathantneal/postcss-place#readme", + "name": "path-is-absolute", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -21336,16 +15074,17 @@ { "licenses": [ { - "name": "CC0-1.0", - "url": "" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "CC0-1.0" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-preset-env", - "url": "https://github.com/csstools/postcss-preset-env#readme", + "name": "path-key", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -21355,16 +15094,17 @@ { "licenses": [ { - "name": "CC0-1.0", - "url": "" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "CC0-1.0" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-pseudo-class-any-link", - "url": "https://github.com/jonathantneal/postcss-pseudo-class-any-link#readme", + "name": "path-parse", + "url": "https://github.com/jbgutierrez/path-parse#readme", "description": "", "pathes": [ "." @@ -21383,8 +15123,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-reduce-idents", - "url": "https://github.com/ben-eb/postcss-reduce-idents", + "name": "path-to-regexp", + "url": "Unknown", "description": "", "pathes": [ "." @@ -21403,8 +15143,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-reduce-initial", - "url": "https://github.com/ben-eb/postcss-reduce-initial", + "name": "path-to-regexp", + "url": "Unknown", "description": "", "pathes": [ "." @@ -21423,8 +15163,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-reduce-initial", - "url": "https://github.com/cssnano/cssnano", + "name": "pbkdf2", + "url": "https://github.com/crypto-browserify/pbkdf2", "description": "", "pathes": [ "." @@ -21443,8 +15183,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-reduce-transforms", - "url": "https://github.com/ben-eb/postcss-reduce-transforms", + "name": "performance-now", + "url": "https://github.com/braveg1rl/performance-now", "description": "", "pathes": [ "." @@ -21463,8 +15203,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-reduce-transforms", - "url": "https://github.com/cssnano/cssnano", + "name": "picomatch", + "url": "https://github.com/micromatch/picomatch", "description": "", "pathes": [ "." @@ -21483,8 +15223,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-replace-overflow-wrap", - "url": "https://github.com/MattDiMu/postcss-replace-overflow-wrap", + "name": "pify", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -21503,8 +15243,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-selector-matches", - "url": "Unknown", + "name": "pify", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -21523,8 +15263,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-selector-not", - "url": "Unknown", + "name": "pify", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -21534,17 +15274,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "postcss-selector-parser", - "url": "https://github.com/postcss/postcss-selector-parser", + "name": "pixelmatch", + "url": "https://github.com/mapbox/pixelmatch#readme", "description": "", "pathes": [ "." @@ -21563,8 +15303,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-selector-parser", - "url": "https://github.com/postcss/postcss-selector-parser", + "name": "pkg-dir", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -21583,8 +15323,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-selector-parser", - "url": "https://github.com/postcss/postcss-selector-parser", + "name": "pngjs", + "url": "https://github.com/lukeapage/pngjs", "description": "", "pathes": [ "." @@ -21603,8 +15343,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-selector-parser", - "url": "https://github.com/postcss/postcss-selector-parser", + "name": "popper.js", + "url": "https://popper.js.org/", "description": "", "pathes": [ "." @@ -21623,8 +15363,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-svgo", - "url": "https://github.com/ben-eb/postcss-svgo", + "name": "posix-character-classes", + "url": "https://github.com/jonschlinkert/posix-character-classes", "description": "", "pathes": [ "." @@ -21643,8 +15383,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-svgo", - "url": "https://github.com/cssnano/cssnano", + "name": "postcss", + "url": "http://postcss.org/", "description": "", "pathes": [ "." @@ -21663,8 +15403,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-unique-selectors", - "url": "https://github.com/ben-eb/postcss-unique-selectors", + "name": "postcss", + "url": "https://postcss.org/", "description": "", "pathes": [ "." @@ -21683,8 +15423,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-unique-selectors", - "url": "https://github.com/cssnano/cssnano", + "name": "postcss-attribute-case-insensitive", + "url": "https://github.com/Semigradsky/postcss-attribute-case-insensitive#readme", "description": "", "pathes": [ "." @@ -21703,7 +15443,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-url", + "name": "postcss-calc", "url": "Unknown", "description": "", "pathes": [ @@ -21723,8 +15463,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "postcss-value-parser", - "url": "https://github.com/TrySound/postcss-value-parser", + "name": "postcss-calc", + "url": "Unknown", "description": "", "pathes": [ "." @@ -21734,17 +15474,16 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "CC0-1.0", + "url": "" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "CC0-1.0" }, "dependency": { - "name": "postcss-values-parser", - "url": "shellscape", + "name": "postcss-color-functional-notation", + "url": "https://github.com/jonathantneal/postcss-color-functional-notation#readme", "description": "", "pathes": [ "." @@ -21754,17 +15493,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "postcss-zindex", - "url": "https://github.com/ben-eb/postcss-zindex", + "name": "postcss-color-gray", + "url": "https://github.com/postcss/postcss-color-gray#readme", "description": "", "pathes": [ "." @@ -21783,8 +15522,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "prelude-ls", - "url": "http://preludels.com/", + "name": "postcss-color-hex-alpha", + "url": "https://github.com/postcss/postcss-color-hex-alpha#readme", "description": "", "pathes": [ "." @@ -21794,17 +15533,16 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "CC0-1.0", + "url": "" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "CC0-1.0" }, "dependency": { - "name": "prepend-http", - "url": "sindresorhus.com", + "name": "postcss-color-mod-function", + "url": "https://github.com/jonathantneal/postcss-color-mod-function#readme", "description": "", "pathes": [ "." @@ -21823,8 +15561,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "prepend-http", - "url": "sindresorhus.com", + "name": "postcss-color-rebeccapurple", + "url": "Unknown", "description": "", "pathes": [ "." @@ -21843,8 +15581,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "preserve", - "url": "https://github.com/jonschlinkert/preserve", + "name": "postcss-colormin", + "url": "https://github.com/ben-eb/postcss-colormin", "description": "", "pathes": [ "." @@ -21863,8 +15601,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "prettier", - "url": "https://prettier.io/", + "name": "postcss-colormin", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -21882,9 +15620,9 @@ "name": "MIT", "url": "http://opensource.org/licenses/mit-license" }, - "dependency": { - "name": "pretty-bytes", - "url": "sindresorhus.com", + "dependency": { + "name": "postcss-convert-values", + "url": "https://github.com/ben-eb/postcss-convert-values", "description": "", "pathes": [ "." @@ -21903,8 +15641,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "pretty-error", - "url": "Unknown", + "name": "postcss-convert-values", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -21923,8 +15661,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "pretty-time", - "url": "https://github.com/jonschlinkert/pretty-time", + "name": "postcss-custom-media", + "url": "https://github.com/postcss/postcss-custom-media#readme", "description": "", "pathes": [ "." @@ -21943,8 +15681,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "private", - "url": "http://github.com/benjamn/private", + "name": "postcss-custom-properties", + "url": "https://github.com/postcss/postcss-custom-properties#readme", "description": "", "pathes": [ "." @@ -21963,8 +15701,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "process", - "url": "Unknown", + "name": "postcss-custom-selectors", + "url": "https://github.com/postcss/postcss-custom-selectors#readme", "description": "", "pathes": [ "." @@ -21974,17 +15712,16 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "CC0-1.0", + "url": "" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "CC0-1.0" }, "dependency": { - "name": "process", - "url": "Unknown", + "name": "postcss-dir-pseudo-class", + "url": "https://github.com/jonathantneal/postcss-dir-pseudo-class#readme", "description": "", "pathes": [ "." @@ -22003,8 +15740,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "process-nextick-args", - "url": "https://github.com/calvinmetcalf/process-nextick-args", + "name": "postcss-discard-comments", + "url": "https://github.com/ben-eb/postcss-discard-comments", "description": "", "pathes": [ "." @@ -22023,8 +15760,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "progress", - "url": "Unknown", + "name": "postcss-discard-comments", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -22034,17 +15771,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "promise-inflight", - "url": "https://github.com/iarna/promise-inflight#readme", + "name": "postcss-discard-duplicates", + "url": "https://github.com/ben-eb/postcss-discard-duplicates", "description": "", "pathes": [ "." @@ -22063,8 +15800,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "proper-lockfile", - "url": "https://github.com/moxystudio/node-proper-lockfile", + "name": "postcss-discard-duplicates", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -22083,8 +15820,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "proxy-addr", - "url": "Unknown", + "name": "postcss-discard-empty", + "url": "https://github.com/ben-eb/postcss-discard-empty", "description": "", "pathes": [ "." @@ -22103,8 +15840,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "prr", - "url": "https://github.com/rvagg/prr", + "name": "postcss-discard-empty", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -22114,17 +15851,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "pseudomap", - "url": "https://github.com/isaacs/pseudomap#readme", + "name": "postcss-discard-overridden", + "url": "https://github.com/Justineo/postcss-discard-overridden", "description": "", "pathes": [ "." @@ -22143,8 +15880,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "public-encrypt", - "url": "https://github.com/crypto-browserify/publicEncrypt", + "name": "postcss-discard-overridden", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -22163,8 +15900,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "pump", - "url": "Unknown", + "name": "postcss-discard-unused", + "url": "https://github.com/ben-eb/postcss-discard-unused", "description": "", "pathes": [ "." @@ -22174,17 +15911,16 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "CC0-1.0", + "url": "" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "CC0-1.0" }, "dependency": { - "name": "pump", - "url": "Unknown", + "name": "postcss-double-position-gradients", + "url": "https://github.com/jonathantneal/postcss-double-position-gradients#readme", "description": "", "pathes": [ "." @@ -22194,17 +15930,16 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "CC0-1.0", + "url": "" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "CC0-1.0" }, "dependency": { - "name": "pumpify", - "url": "https://github.com/mafintosh/pumpify", + "name": "postcss-env-function", + "url": "https://github.com/jonathantneal/postcss-env-function#readme", "description": "", "pathes": [ "." @@ -22223,8 +15958,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "punycode", - "url": "https://mths.be/punycode", + "name": "postcss-filter-plugins", + "url": "https://github.com/postcss/postcss-filter-plugins", "description": "", "pathes": [ "." @@ -22234,17 +15969,16 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "CC0-1.0", + "url": "" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "CC0-1.0" }, "dependency": { - "name": "punycode", - "url": "https://mths.be/punycode", + "name": "postcss-focus-visible", + "url": "https://github.com/jonathantneal/postcss-focus-visible#readme", "description": "", "pathes": [ "." @@ -22254,17 +15988,16 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "CC0-1.0", + "url": "" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "CC0-1.0" }, "dependency": { - "name": "punycode", - "url": "https://mths.be/punycode", + "name": "postcss-focus-within", + "url": "https://github.com/jonathantneal/postcss-focus-within#readme", "description": "", "pathes": [ "." @@ -22283,8 +16016,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "q", - "url": "https://github.com/kriskowal/q", + "name": "postcss-font-variant", + "url": "Unknown", "description": "", "pathes": [ "." @@ -22294,16 +16027,16 @@ { "licenses": [ { - "name": "SEE LICENSE IN LICENSE", + "name": "CC0-1.0", "url": "" } ], "license": { - "name": "SEE LICENSE IN LICENSE" + "name": "CC0-1.0" }, "dependency": { - "name": "qs", - "url": "https://github.com/hapijs/qs", + "name": "postcss-gap-properties", + "url": "https://github.com/jonathantneal/postcss-gap-properties#readme", "description": "", "pathes": [ "." @@ -22313,17 +16046,16 @@ { "licenses": [ { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "CC0-1.0", + "url": "" } ], "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "CC0-1.0" }, "dependency": { - "name": "qs", - "url": "https://github.com/ljharb/qs", + "name": "postcss-image-set-function", + "url": "https://github.com/jonathantneal/postcss-image-set-function#readme", "description": "", "pathes": [ "." @@ -22333,17 +16065,17 @@ { "licenses": [ { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "qs", - "url": "https://github.com/ljharb/qs", + "name": "postcss-import", + "url": "Unknown", "description": "", "pathes": [ "." @@ -22362,8 +16094,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "query-string", - "url": "sindresorhus.com", + "name": "postcss-import-resolver", + "url": "Unknown", "description": "", "pathes": [ "." @@ -22382,8 +16114,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "query-string", - "url": "sindresorhus.com", + "name": "postcss-initial", + "url": "Unknown", "description": "", "pathes": [ "." @@ -22393,17 +16125,16 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "CC0-1.0", + "url": "" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "CC0-1.0" }, "dependency": { - "name": "querystring", - "url": "Unknown", + "name": "postcss-lab-function", + "url": "https://github.com/jonathantneal/postcss-lab-function#readme", "description": "", "pathes": [ "." @@ -22422,8 +16153,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "querystring-es3", - "url": "Unknown", + "name": "postcss-load-config", + "url": "https://github.com/michael-ciniawsky/postcss-load-config#readme", "description": "", "pathes": [ "." @@ -22442,8 +16173,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "randomatic", - "url": "https://github.com/jonschlinkert/randomatic", + "name": "postcss-loader", + "url": "https://github.com/postcss/postcss-loader#readme", "description": "", "pathes": [ "." @@ -22453,17 +16184,16 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "CC0-1.0", + "url": "" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "CC0-1.0" }, "dependency": { - "name": "randombytes", - "url": "https://github.com/crypto-browserify/randombytes", + "name": "postcss-logical", + "url": "https://github.com/jonathantneal/postcss-logical#readme", "description": "", "pathes": [ "." @@ -22482,8 +16212,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "randomfill", - "url": "https://github.com/crypto-browserify/randomfill", + "name": "postcss-media-minmax", + "url": "Unknown", "description": "", "pathes": [ "." @@ -22502,8 +16232,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "range-parser", - "url": "http://tjholowaychuk.com", + "name": "postcss-merge-idents", + "url": "https://github.com/ben-eb/postcss-merge-idents", "description": "", "pathes": [ "." @@ -22522,8 +16252,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "raw-body", - "url": "http://jongleberry.com", + "name": "postcss-merge-longhand", + "url": "https://github.com/ben-eb/postcss-merge-longhand", "description": "", "pathes": [ "." @@ -22542,8 +16272,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "raw-loader", - "url": "Unknown", + "name": "postcss-merge-longhand", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -22553,16 +16283,17 @@ { "licenses": [ { - "name": "(BSD-2-Clause OR MIT OR Apache-2.0)", - "url": "" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "(BSD-2-Clause OR MIT OR Apache-2.0)" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "rc", - "url": "dominictarr.com", + "name": "postcss-merge-rules", + "url": "https://github.com/ben-eb/postcss-merge-rules", "description": "", "pathes": [ "." @@ -22581,8 +16312,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "read-cache", - "url": "https://github.com/TrySound/read-cache#readme", + "name": "postcss-merge-rules", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -22601,8 +16332,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "read-chunk", - "url": "http://sindresorhus.com", + "name": "postcss-message-helpers", + "url": "Unknown", "description": "", "pathes": [ "." @@ -22621,8 +16352,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "read-pkg", - "url": "sindresorhus.com", + "name": "postcss-minify-font-values", + "url": "https://github.com/TrySound/postcss-minify-font-values", "description": "", "pathes": [ "." @@ -22641,8 +16372,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "read-pkg", - "url": "sindresorhus.com", + "name": "postcss-minify-font-values", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -22661,8 +16392,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "read-pkg-up", - "url": "sindresorhus.com", + "name": "postcss-minify-gradients", + "url": "https://github.com/ben-eb/postcss-minify-gradients", "description": "", "pathes": [ "." @@ -22681,8 +16412,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "read-pkg-up", - "url": "sindresorhus.com", + "name": "postcss-minify-gradients", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -22701,8 +16432,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "readable-stream", - "url": "http://blog.izs.me/", + "name": "postcss-minify-params", + "url": "https://github.com/ben-eb/postcss-minify-params", "description": "", "pathes": [ "." @@ -22721,8 +16452,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "readable-stream", - "url": "Unknown", + "name": "postcss-minify-params", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -22741,8 +16472,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "readable-stream", - "url": "Unknown", + "name": "postcss-minify-selectors", + "url": "https://github.com/ben-eb/postcss-minify-selectors", "description": "", "pathes": [ "." @@ -22761,8 +16492,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "readdirp", - "url": "https://github.com/paulmillr/readdirp", + "name": "postcss-minify-selectors", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -22772,17 +16503,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "readdirp", - "url": "https://github.com/paulmillr/readdirp", + "name": "postcss-modules-extract-imports", + "url": "https://github.com/css-modules/postcss-modules-extract-imports", "description": "", "pathes": [ "." @@ -22801,7 +16532,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "reduce-css-calc", + "name": "postcss-modules-local-by-default", "url": "Unknown", "description": "", "pathes": [ @@ -22812,17 +16543,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "reduce-function-call", - "url": "Unknown", + "name": "postcss-modules-scope", + "url": "https://github.com/css-modules/postcss-modules-scope", "description": "", "pathes": [ "." @@ -22832,17 +16563,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "regenerate", - "url": "https://mths.be/regenerate", + "name": "postcss-modules-values", + "url": "https://github.com/css-modules/postcss-modules-values#readme", "description": "", "pathes": [ "." @@ -22852,17 +16583,16 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "CC0-1.0", + "url": "" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "CC0-1.0" }, "dependency": { - "name": "regenerate-unicode-properties", - "url": "https://github.com/mathiasbynens/regenerate-unicode-properties", + "name": "postcss-nesting", + "url": "https://github.com/jonathantneal/postcss-nesting#readme", "description": "", "pathes": [ "." @@ -22881,8 +16611,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "regenerator-runtime", - "url": "Unknown", + "name": "postcss-normalize-charset", + "url": "https://github.com/ben-eb/postcss-charset", "description": "", "pathes": [ "." @@ -22901,8 +16631,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "regenerator-runtime", - "url": "Unknown", + "name": "postcss-normalize-charset", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -22921,8 +16651,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "regenerator-transform", - "url": "Unknown", + "name": "postcss-normalize-display-values", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -22941,8 +16671,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "regex-cache", - "url": "https://github.com/jonschlinkert/regex-cache", + "name": "postcss-normalize-positions", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -22961,8 +16691,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "regex-not", - "url": "https://github.com/jonschlinkert/regex-not", + "name": "postcss-normalize-repeat-style", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -22981,8 +16711,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "regexp-tree", - "url": "https://github.com/DmitrySoshnikov/regexp-tree", + "name": "postcss-normalize-string", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -23001,8 +16731,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "regexpu-core", - "url": "https://mths.be/regexpu", + "name": "postcss-normalize-timing-functions", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -23021,8 +16751,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "regjsgen", - "url": "https://github.com/bnjmnt4n/regjsgen", + "name": "postcss-normalize-unicode", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -23032,17 +16762,17 @@ { "licenses": [ { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "regjsparser", - "url": "https://github.com/jviereck/regjsparser", + "name": "postcss-normalize-url", + "url": "https://github.com/ben-eb/postcss-normalize-url", "description": "", "pathes": [ "." @@ -23061,8 +16791,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "relateurl", - "url": "https://github.com/stevenvachon/relateurl", + "name": "postcss-normalize-url", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -23072,17 +16802,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "remove-trailing-separator", - "url": "https://github.com/darsain/remove-trailing-separator#readme", + "name": "postcss-normalize-whitespace", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -23101,8 +16831,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "renderkid", - "url": "Unknown", + "name": "postcss-ordered-values", + "url": "https://github.com/ben-eb/postcss-ordered-values", "description": "", "pathes": [ "." @@ -23121,8 +16851,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "repeat-element", - "url": "https://github.com/jonschlinkert/repeat-element", + "name": "postcss-ordered-values", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -23132,17 +16862,16 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "CC0-1.0", + "url": "" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "CC0-1.0" }, "dependency": { - "name": "repeat-string", - "url": "https://github.com/jonschlinkert/repeat-string", + "name": "postcss-overflow-shorthand", + "url": "https://github.com/jonathantneal/postcss-overflow-shorthand#readme", "description": "", "pathes": [ "." @@ -23161,8 +16890,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "repeating", - "url": "sindresorhus.com", + "name": "postcss-page-break", + "url": "https://github.com/shrpne/postcss-page-break", "description": "", "pathes": [ "." @@ -23172,17 +16901,16 @@ { "licenses": [ { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "CC0-1.0", + "url": "" } ], "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "CC0-1.0" }, "dependency": { - "name": "request", - "url": "Unknown", + "name": "postcss-place", + "url": "https://github.com/jonathantneal/postcss-place#readme", "description": "", "pathes": [ "." @@ -23192,17 +16920,16 @@ { "licenses": [ { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "CC0-1.0", + "url": "" } ], "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "CC0-1.0" }, "dependency": { - "name": "request", - "url": "Unknown", + "name": "postcss-preset-env", + "url": "https://github.com/csstools/postcss-preset-env#readme", "description": "", "pathes": [ "." @@ -23212,17 +16939,16 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "CC0-1.0", + "url": "" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "CC0-1.0" }, "dependency": { - "name": "request-promise-core", - "url": "https://github.com/request/promise-core#readme", + "name": "postcss-pseudo-class-any-link", + "url": "https://github.com/jonathantneal/postcss-pseudo-class-any-link#readme", "description": "", "pathes": [ "." @@ -23232,17 +16958,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "request-promise-native", - "url": "https://github.com/request/request-promise-native#readme", + "name": "postcss-reduce-idents", + "url": "https://github.com/ben-eb/postcss-reduce-idents", "description": "", "pathes": [ "." @@ -23261,8 +16987,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "require-directory", - "url": "https://github.com/troygoode/node-require-directory/", + "name": "postcss-reduce-initial", + "url": "https://github.com/ben-eb/postcss-reduce-initial", "description": "", "pathes": [ "." @@ -23281,8 +17007,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "require-from-string", - "url": "github.com/floatdrop", + "name": "postcss-reduce-initial", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -23292,17 +17018,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "require-main-filename", - "url": "https://github.com/yargs/require-main-filename#readme", + "name": "postcss-reduce-transforms", + "url": "https://github.com/ben-eb/postcss-reduce-transforms", "description": "", "pathes": [ "." @@ -23321,8 +17047,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "require-uncached", - "url": "sindresorhus.com", + "name": "postcss-reduce-transforms", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -23341,8 +17067,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "requires-port", - "url": "https://github.com/unshiftio/requires-port", + "name": "postcss-replace-overflow-wrap", + "url": "https://github.com/MattDiMu/postcss-replace-overflow-wrap", "description": "", "pathes": [ "." @@ -23361,8 +17087,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "resolve", - "url": "http://substack.net", + "name": "postcss-selector-matches", + "url": "Unknown", "description": "", "pathes": [ "." @@ -23381,8 +17107,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "resolve", - "url": "http://substack.net", + "name": "postcss-selector-not", + "url": "Unknown", "description": "", "pathes": [ "." @@ -23401,8 +17127,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "resolve-from", - "url": "sindresorhus.com", + "name": "postcss-selector-parser", + "url": "https://github.com/postcss/postcss-selector-parser", "description": "", "pathes": [ "." @@ -23421,8 +17147,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "resolve-from", - "url": "sindresorhus.com", + "name": "postcss-selector-parser", + "url": "https://github.com/postcss/postcss-selector-parser", "description": "", "pathes": [ "." @@ -23441,8 +17167,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "resolve-from", - "url": "sindresorhus.com", + "name": "postcss-selector-parser", + "url": "https://github.com/postcss/postcss-selector-parser", "description": "", "pathes": [ "." @@ -23461,8 +17187,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "resolve-url", - "url": "Unknown", + "name": "postcss-selector-parser", + "url": "https://github.com/postcss/postcss-selector-parser", "description": "", "pathes": [ "." @@ -23481,8 +17207,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "restore-cursor", - "url": "sindresorhus.com", + "name": "postcss-svgo", + "url": "https://github.com/ben-eb/postcss-svgo", "description": "", "pathes": [ "." @@ -23501,8 +17227,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "resumer", - "url": "https://github.com/substack/resumer", + "name": "postcss-svgo", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -23521,8 +17247,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "ret", - "url": "https://github.com/fent", + "name": "postcss-unique-selectors", + "url": "https://github.com/ben-eb/postcss-unique-selectors", "description": "", "pathes": [ "." @@ -23541,8 +17267,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "retry", - "url": "https://github.com/tim-kos/node-retry", + "name": "postcss-unique-selectors", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -23561,8 +17287,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "rgb-regex", - "url": "https://github.com/regexps/rgb-regex", + "name": "postcss-url", + "url": "Unknown", "description": "", "pathes": [ "." @@ -23581,8 +17307,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "rgba-regex", - "url": "https://github.com/johnotander/rgba-regex", + "name": "postcss-value-parser", + "url": "https://github.com/TrySound/postcss-value-parser", "description": "", "pathes": [ "." @@ -23601,8 +17327,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "right-align", - "url": "https://github.com/jonschlinkert/right-align", + "name": "postcss-values-parser", + "url": "shellscape", "description": "", "pathes": [ "." @@ -23612,17 +17338,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "rimraf", - "url": "http://blog.izs.me/", + "name": "postcss-zindex", + "url": "https://github.com/ben-eb/postcss-zindex", "description": "", "pathes": [ "." @@ -23632,17 +17358,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "rimraf", - "url": "http://blog.izs.me/", + "name": "prepend-http", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -23661,8 +17387,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "ripemd160", - "url": "Unknown", + "name": "prepend-http", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -23681,8 +17407,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "run-async", - "url": "Unknown", + "name": "preserve", + "url": "https://github.com/jonschlinkert/preserve", "description": "", "pathes": [ "." @@ -23692,17 +17418,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "run-queue", - "url": "https://npmjs.com/package/run-queue", + "name": "prettier", + "url": "https://prettier.io/", "description": "", "pathes": [ "." @@ -23721,8 +17447,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "rupture", - "url": "Unknown", + "name": "pretty-bytes", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -23732,17 +17458,17 @@ { "licenses": [ { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "rx-lite", - "url": "https://github.com/Reactive-Extensions/RxJS", + "name": "pretty-error", + "url": "Unknown", "description": "", "pathes": [ "." @@ -23752,17 +17478,17 @@ { "licenses": [ { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "rx-lite-aggregates", - "url": "https://github.com/Reactive-Extensions/RxJS", + "name": "pretty-time", + "url": "https://github.com/jonschlinkert/pretty-time", "description": "", "pathes": [ "." @@ -23781,8 +17507,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "safe-buffer", - "url": "https://github.com/feross/safe-buffer", + "name": "private", + "url": "http://github.com/benjamn/private", "description": "", "pathes": [ "." @@ -23801,8 +17527,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "safe-regex", - "url": "https://github.com/substack/safe-regex", + "name": "process", + "url": "Unknown", "description": "", "pathes": [ "." @@ -23821,8 +17547,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "safer-buffer", - "url": "https://github.com/ChALkeR", + "name": "process", + "url": "Unknown", "description": "", "pathes": [ "." @@ -23832,17 +17558,17 @@ { "licenses": [ { - "name": "BSD", - "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "BSD", - "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "sax", - "url": "http://blog.izs.me/", + "name": "process-nextick-args", + "url": "https://github.com/calvinmetcalf/process-nextick-args", "description": "", "pathes": [ "." @@ -23861,8 +17587,8 @@ "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "sax", - "url": "http://blog.izs.me/", + "name": "promise-inflight", + "url": "https://github.com/iarna/promise-inflight#readme", "description": "", "pathes": [ "." @@ -23881,8 +17607,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "schema-utils", - "url": "https://github.com/webpack-contrib/schema-utils", + "name": "proper-lockfile", + "url": "https://github.com/moxystudio/node-proper-lockfile", "description": "", "pathes": [ "." @@ -23892,16 +17618,16 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "semver", + "name": "proxy-addr", "url": "Unknown", "description": "", "pathes": [ @@ -23912,17 +17638,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "semver", - "url": "Unknown", + "name": "prr", + "url": "https://github.com/rvagg/prr", "description": "", "pathes": [ "." @@ -23941,8 +17667,8 @@ "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "semver", - "url": "Unknown", + "name": "pseudomap", + "url": "https://github.com/isaacs/pseudomap#readme", "description": "", "pathes": [ "." @@ -23952,17 +17678,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "semver", - "url": "Unknown", + "name": "public-encrypt", + "url": "https://github.com/crypto-browserify/publicEncrypt", "description": "", "pathes": [ "." @@ -23981,7 +17707,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "send", + "name": "pump", "url": "Unknown", "description": "", "pathes": [ @@ -23992,17 +17718,17 @@ { "licenses": [ { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "serialize-javascript", - "url": "https://github.com/yahoo/serialize-javascript", + "name": "pump", + "url": "Unknown", "description": "", "pathes": [ "." @@ -24021,8 +17747,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "serve-placeholder", - "url": "Unknown", + "name": "pumpify", + "url": "https://github.com/mafintosh/pumpify", "description": "", "pathes": [ "." @@ -24041,8 +17767,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "serve-static", - "url": "Unknown", + "name": "punycode", + "url": "https://mths.be/punycode", "description": "", "pathes": [ "." @@ -24052,17 +17778,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "server-destroy", - "url": "http://blog.izs.me", + "name": "punycode", + "url": "https://mths.be/punycode", "description": "", "pathes": [ "." @@ -24072,17 +17798,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "set-blocking", - "url": "https://github.com/yargs/set-blocking#readme", + "name": "punycode", + "url": "https://mths.be/punycode", "description": "", "pathes": [ "." @@ -24101,8 +17827,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "set-value", - "url": "https://github.com/jonschlinkert/set-value", + "name": "q", + "url": "https://github.com/kriskowal/q", "description": "", "pathes": [ "." @@ -24112,17 +17838,37 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "set-value", - "url": "https://github.com/jonschlinkert/set-value", + "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": [ "." @@ -24141,8 +17887,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "setimmediate", - "url": "Unknown", + "name": "query-string", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -24152,17 +17898,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "setprototypeof", - "url": "https://github.com/wesleytodd/setprototypeof", + "name": "query-string", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -24172,16 +17918,17 @@ { "licenses": [ { - "name": "(MIT AND BSD-3-Clause)", - "url": "" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "(MIT AND BSD-3-Clause)" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "sha.js", - "url": "https://github.com/crypto-browserify/sha.js", + "name": "querystring", + "url": "Unknown", "description": "", "pathes": [ "." @@ -24200,8 +17947,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "shebang-command", - "url": "github.com/kevva", + "name": "querystring-es3", + "url": "Unknown", "description": "", "pathes": [ "." @@ -24220,8 +17967,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "shebang-regex", - "url": "sindresorhus.com", + "name": "randomatic", + "url": "https://github.com/jonschlinkert/randomatic", "description": "", "pathes": [ "." @@ -24240,8 +17987,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "shell-quote", - "url": "http://substack.net", + "name": "randombytes", + "url": "https://github.com/crypto-browserify/randombytes", "description": "", "pathes": [ "." @@ -24251,17 +17998,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "signal-exit", - "url": "https://github.com/tapjs/signal-exit", + "name": "randomfill", + "url": "https://github.com/crypto-browserify/randomfill", "description": "", "pathes": [ "." @@ -24280,8 +18027,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "simple-swizzle", - "url": "http://github.com/qix-", + "name": "range-parser", + "url": "http://tjholowaychuk.com", "description": "", "pathes": [ "." @@ -24300,8 +18047,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "sitemap", - "url": "Unknown", + "name": "raw-body", + "url": "http://jongleberry.com", "description": "", "pathes": [ "." @@ -24320,7 +18067,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "slice-ansi", + "name": "raw-loader", "url": "Unknown", "description": "", "pathes": [ @@ -24331,17 +18078,16 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "(BSD-2-Clause OR MIT OR Apache-2.0)", + "url": "" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "(BSD-2-Clause OR MIT OR Apache-2.0)" }, "dependency": { - "name": "slide", - "url": "http://blog.izs.me/", + "name": "rc", + "url": "dominictarr.com", "description": "", "pathes": [ "." @@ -24360,8 +18106,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "slideout", - "url": "Unknown", + "name": "read-cache", + "url": "https://github.com/TrySound/read-cache#readme", "description": "", "pathes": [ "." @@ -24380,8 +18126,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "snapdragon", - "url": "https://github.com/jonschlinkert/snapdragon", + "name": "read-chunk", + "url": "http://sindresorhus.com", "description": "", "pathes": [ "." @@ -24400,8 +18146,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "snapdragon-node", - "url": "https://github.com/jonschlinkert/snapdragon-node", + "name": "readable-stream", + "url": "Unknown", "description": "", "pathes": [ "." @@ -24420,8 +18166,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "snapdragon-util", - "url": "https://github.com/jonschlinkert/snapdragon-util", + "name": "readable-stream", + "url": "Unknown", "description": "", "pathes": [ "." @@ -24431,17 +18177,17 @@ { "licenses": [ { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "sntp", - "url": "http://hueniverse.com", + "name": "readdirp", + "url": "https://github.com/paulmillr/readdirp", "description": "", "pathes": [ "." @@ -24451,17 +18197,17 @@ { "licenses": [ { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "sntp", - "url": "http://hueniverse.com", + "name": "readdirp", + "url": "https://github.com/paulmillr/readdirp", "description": "", "pathes": [ "." @@ -24480,8 +18226,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "sort-keys", - "url": "sindresorhus.com", + "name": "reduce-css-calc", + "url": "Unknown", "description": "", "pathes": [ "." @@ -24500,8 +18246,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "sort-keys", - "url": "sindresorhus.com", + "name": "reduce-function-call", + "url": "Unknown", "description": "", "pathes": [ "." @@ -24520,8 +18266,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "source-list-map", - "url": "https://github.com/webpack/source-list-map", + "name": "regenerate", + "url": "https://mths.be/regenerate", "description": "", "pathes": [ "." @@ -24540,8 +18286,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "source-list-map", - "url": "https://github.com/webpack/source-list-map", + "name": "regenerate-unicode-properties", + "url": "https://github.com/mathiasbynens/regenerate-unicode-properties", "description": "", "pathes": [ "." @@ -24551,17 +18297,17 @@ { "licenses": [ { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "source-map", - "url": "https://github.com/mozilla/source-map", + "name": "regenerator-runtime", + "url": "Unknown", "description": "", "pathes": [ "." @@ -24571,17 +18317,17 @@ { "licenses": [ { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "source-map", - "url": "https://github.com/mozilla/source-map", + "name": "regenerator-transform", + "url": "Unknown", "description": "", "pathes": [ "." @@ -24591,17 +18337,17 @@ { "licenses": [ { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "source-map", - "url": "https://github.com/mozilla/source-map", + "name": "regex-cache", + "url": "https://github.com/jonschlinkert/regex-cache", "description": "", "pathes": [ "." @@ -24611,17 +18357,17 @@ { "licenses": [ { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "source-map", - "url": "https://github.com/mozilla/source-map", + "name": "regex-not", + "url": "https://github.com/jonschlinkert/regex-not", "description": "", "pathes": [ "." @@ -24631,17 +18377,17 @@ { "licenses": [ { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "source-map", - "url": "https://github.com/mozilla/source-map", + "name": "regexp-tree", + "url": "https://github.com/DmitrySoshnikov/regexp-tree", "description": "", "pathes": [ "." @@ -24660,8 +18406,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "source-map-resolve", - "url": "Unknown", + "name": "regexpu-core", + "url": "https://mths.be/regexpu", "description": "", "pathes": [ "." @@ -24680,8 +18426,28 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "source-map-support", - "url": "Unknown", + "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": [ "." @@ -24700,8 +18466,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "source-map-url", - "url": "Unknown", + "name": "relateurl", + "url": "https://github.com/stevenvachon/relateurl", "description": "", "pathes": [ "." @@ -24720,8 +18486,8 @@ "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "spawn-wrap", - "url": "https://github.com/isaacs/spawn-wrap#readme", + "name": "remove-trailing-separator", + "url": "https://github.com/darsain/remove-trailing-separator#readme", "description": "", "pathes": [ "." @@ -24731,17 +18497,17 @@ { "licenses": [ { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "spdx-correct", - "url": "https://kemitchell.com", + "name": "renderkid", + "url": "Unknown", "description": "", "pathes": [ "." @@ -24751,16 +18517,17 @@ { "licenses": [ { - "name": "CC-BY-3.0", - "url": "" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "CC-BY-3.0" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "spdx-exceptions", - "url": "Unknown", + "name": "repeat-element", + "url": "https://github.com/jonschlinkert/repeat-element", "description": "", "pathes": [ "." @@ -24779,8 +18546,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "spdx-expression-parse", - "url": "http://kemitchell.com", + "name": "repeat-string", + "url": "https://github.com/jonschlinkert/repeat-string", "description": "", "pathes": [ "." @@ -24790,16 +18557,17 @@ { "licenses": [ { - "name": "CC0-1.0", - "url": "" + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" } ], "license": { - "name": "CC0-1.0" + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, "dependency": { - "name": "spdx-license-ids", - "url": "https://github.com/shinnn", + "name": "request", + "url": "Unknown", "description": "", "pathes": [ "." @@ -24809,16 +18577,17 @@ { "licenses": [ { - "name": "MIT*", - "url": "" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "MIT*" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "split", - "url": "http://github.com/dominictarr/split", + "name": "require-from-string", + "url": "github.com/floatdrop", "description": "", "pathes": [ "." @@ -24837,8 +18606,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "split-string", - "url": "https://github.com/jonschlinkert/split-string", + "name": "requires-port", + "url": "https://github.com/unshiftio/requires-port", "description": "", "pathes": [ "." @@ -24848,17 +18617,17 @@ { "licenses": [ { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "sprintf-js", - "url": "http://alexei.ro/", + "name": "resolve", + "url": "http://substack.net", "description": "", "pathes": [ "." @@ -24877,8 +18646,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "sshpk", - "url": "https://github.com/arekinath/node-sshpk#readme", + "name": "resolve-from", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -24888,16 +18657,16 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "ssri", + "name": "resolve-url", "url": "Unknown", "description": "", "pathes": [ @@ -24917,8 +18686,28 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "stable", - "url": "Unknown", + "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": [ "." @@ -24937,8 +18726,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "stack-trace", - "url": "https://github.com/felixge/node-stack-trace", + "name": "rgb-regex", + "url": "https://github.com/regexps/rgb-regex", "description": "", "pathes": [ "." @@ -24957,8 +18746,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "stackframe", - "url": "https://www.stacktracejs.com/", + "name": "rgba-regex", + "url": "https://github.com/johnotander/rgba-regex", "description": "", "pathes": [ "." @@ -24968,17 +18757,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "static-extend", - "url": "https://github.com/jonschlinkert/static-extend", + "name": "rimraf", + "url": "http://blog.izs.me/", "description": "", "pathes": [ "." @@ -24988,17 +18777,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "statuses", - "url": "Unknown", + "name": "rimraf", + "url": "http://blog.izs.me/", "description": "", "pathes": [ "." @@ -25017,7 +18806,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "std-env", + "name": "ripemd160", "url": "Unknown", "description": "", "pathes": [ @@ -25037,8 +18826,8 @@ "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "stealthy-require", - "url": "https://github.com/analog-nico/stealthy-require#readme", + "name": "run-queue", + "url": "https://npmjs.com/package/run-queue", "description": "", "pathes": [ "." @@ -25057,8 +18846,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "stream-browserify", - "url": "https://github.com/browserify/stream-browserify", + "name": "safe-buffer", + "url": "https://github.com/feross/safe-buffer", "description": "", "pathes": [ "." @@ -25077,8 +18866,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "stream-combiner", - "url": "https://github.com/dominictarr/stream-combiner", + "name": "safe-regex", + "url": "https://github.com/substack/safe-regex", "description": "", "pathes": [ "." @@ -25097,8 +18886,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "stream-each", - "url": "https://github.com/mafintosh/stream-each", + "name": "safer-buffer", + "url": "https://github.com/ChALkeR", "description": "", "pathes": [ "." @@ -25108,17 +18897,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "stream-http", - "url": "https://github.com/jhiesey/stream-http#readme", + "name": "sax", + "url": "http://blog.izs.me/", "description": "", "pathes": [ "." @@ -25137,8 +18926,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "stream-shift", - "url": "https://github.com/mafintosh/stream-shift", + "name": "schema-utils", + "url": "https://github.com/webpack-contrib/schema-utils", "description": "", "pathes": [ "." @@ -25148,17 +18937,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "stream-to", - "url": "http://jongleberry.com", + "name": "semver", + "url": "Unknown", "description": "", "pathes": [ "." @@ -25168,17 +18957,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "stream-to-buffer", - "url": "http://jongleberry.com", + "name": "semver", + "url": "Unknown", "description": "", "pathes": [ "." @@ -25188,17 +18977,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "strict-uri-encode", - "url": "github.com/kevva", + "name": "semver", + "url": "Unknown", "description": "", "pathes": [ "." @@ -25217,8 +19006,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "string", - "url": "http://stringjs.com/", + "name": "send", + "url": "Unknown", "description": "", "pathes": [ "." @@ -25228,17 +19017,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "string-width", - "url": "sindresorhus.com", + "name": "serialize-javascript", + "url": "https://github.com/yahoo/serialize-javascript", "description": "", "pathes": [ "." @@ -25257,8 +19046,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "string-width", - "url": "sindresorhus.com", + "name": "serve-placeholder", + "url": "Unknown", "description": "", "pathes": [ "." @@ -25277,8 +19066,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "string-width", - "url": "sindresorhus.com", + "name": "serve-static", + "url": "Unknown", "description": "", "pathes": [ "." @@ -25288,17 +19077,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "string_decoder", - "url": "https://github.com/rvagg/string_decoder", + "name": "server-destroy", + "url": "http://blog.izs.me", "description": "", "pathes": [ "." @@ -25308,17 +19097,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "string_decoder", - "url": "https://github.com/nodejs/string_decoder", + "name": "set-blocking", + "url": "https://github.com/yargs/set-blocking#readme", "description": "", "pathes": [ "." @@ -25337,8 +19126,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "string_decoder", - "url": "https://github.com/nodejs/string_decoder", + "name": "set-value", + "url": "https://github.com/jonschlinkert/set-value", "description": "", "pathes": [ "." @@ -25357,8 +19146,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "stringstream", - "url": "http://github.com/mhart", + "name": "set-value", + "url": "https://github.com/jonschlinkert/set-value", "description": "", "pathes": [ "." @@ -25377,8 +19166,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "stringstream", - "url": "http://github.com/mhart", + "name": "setimmediate", + "url": "Unknown", "description": "", "pathes": [ "." @@ -25388,17 +19177,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "strip-ansi", - "url": "sindresorhus.com", + "name": "setprototypeof", + "url": "https://github.com/wesleytodd/setprototypeof", "description": "", "pathes": [ "." @@ -25408,17 +19197,16 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "(MIT AND BSD-3-Clause)", + "url": "" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "(MIT AND BSD-3-Clause)" }, "dependency": { - "name": "strip-ansi", - "url": "sindresorhus.com", + "name": "sha.js", + "url": "https://github.com/crypto-browserify/sha.js", "description": "", "pathes": [ "." @@ -25437,8 +19225,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "strip-ansi", - "url": "sindresorhus.com", + "name": "shebang-command", + "url": "github.com/kevva", "description": "", "pathes": [ "." @@ -25457,7 +19245,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "strip-bom", + "name": "shebang-regex", "url": "sindresorhus.com", "description": "", "pathes": [ @@ -25477,8 +19265,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "strip-bom", - "url": "sindresorhus.com", + "name": "shell-quote", + "url": "http://substack.net", "description": "", "pathes": [ "." @@ -25488,17 +19276,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "strip-eof", - "url": "sindresorhus.com", + "name": "signal-exit", + "url": "https://github.com/tapjs/signal-exit", "description": "", "pathes": [ "." @@ -25517,8 +19305,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "strip-indent", - "url": "sindresorhus.com", + "name": "simple-swizzle", + "url": "http://github.com/qix-", "description": "", "pathes": [ "." @@ -25537,8 +19325,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "strip-json-comments", - "url": "sindresorhus.com", + "name": "sitemap", + "url": "Unknown", "description": "", "pathes": [ "." @@ -25557,8 +19345,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "style-resources-loader", - "url": "https://github.com/yenshih/style-resources-loader", + "name": "slideout", + "url": "Unknown", "description": "", "pathes": [ "." @@ -25577,8 +19365,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "stylehacks", - "url": "https://github.com/cssnano/cssnano", + "name": "snapdragon", + "url": "https://github.com/jonschlinkert/snapdragon", "description": "", "pathes": [ "." @@ -25597,8 +19385,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "stylus", - "url": "https://github.com/stylus/stylus", + "name": "snapdragon-node", + "url": "https://github.com/jonschlinkert/snapdragon-node", "description": "", "pathes": [ "." @@ -25617,8 +19405,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "stylus-loader", - "url": "http://dontkry.com", + "name": "snapdragon-util", + "url": "https://github.com/jonschlinkert/snapdragon-util", "description": "", "pathes": [ "." @@ -25628,17 +19416,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "supports-color", - "url": "sindresorhus.com", + "name": "sntp", + "url": "http://hueniverse.com", "description": "", "pathes": [ "." @@ -25657,7 +19445,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "supports-color", + "name": "sort-keys", "url": "sindresorhus.com", "description": "", "pathes": [ @@ -25677,7 +19465,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "supports-color", + "name": "sort-keys", "url": "sindresorhus.com", "description": "", "pathes": [ @@ -25697,8 +19485,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "supports-color", - "url": "sindresorhus.com", + "name": "source-list-map", + "url": "https://github.com/webpack/source-list-map", "description": "", "pathes": [ "." @@ -25708,17 +19496,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "supports-color", - "url": "sindresorhus.com", + "name": "source-map", + "url": "https://github.com/mozilla/source-map", "description": "", "pathes": [ "." @@ -25728,17 +19516,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "svg-tags", - "url": "Unknown", + "name": "source-map", + "url": "https://github.com/mozilla/source-map", "description": "", "pathes": [ "." @@ -25748,17 +19536,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "svgo", - "url": "https://github.com/svg/svgo", + "name": "source-map", + "url": "https://github.com/mozilla/source-map", "description": "", "pathes": [ "." @@ -25777,8 +19565,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "svgo", - "url": "https://github.com/svg/svgo", + "name": "source-map-resolve", + "url": "Unknown", "description": "", "pathes": [ "." @@ -25797,8 +19585,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "symbol-tree", - "url": "https://github.com/jsdom/js-symbol-tree#symbol-tree", + "name": "source-map-support", + "url": "Unknown", "description": "", "pathes": [ "." @@ -25808,17 +19596,17 @@ { "licenses": [ { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "table", - "url": "http://gajus.com", + "name": "source-map-url", + "url": "Unknown", "description": "", "pathes": [ "." @@ -25837,8 +19625,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "tapable", - "url": "https://github.com/webpack/tapable", + "name": "split-string", + "url": "https://github.com/jonschlinkert/split-string", "description": "", "pathes": [ "." @@ -25848,17 +19636,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "tapable", - "url": "https://github.com/webpack/tapable", + "name": "sprintf-js", + "url": "http://alexei.ro/", "description": "", "pathes": [ "." @@ -25877,8 +19665,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "tape", - "url": "https://github.com/substack/tape", + "name": "sshpk", + "url": "https://github.com/arekinath/node-sshpk#readme", "description": "", "pathes": [ "." @@ -25897,8 +19685,8 @@ "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "tar", - "url": "http://blog.izs.me/", + "name": "ssri", + "url": "Unknown", "description": "", "pathes": [ "." @@ -25917,8 +19705,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "term-size", - "url": "sindresorhus.com", + "name": "stable", + "url": "Unknown", "description": "", "pathes": [ "." @@ -25928,17 +19716,17 @@ { "licenses": [ { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "terser", - "url": "https://github.com/fabiosantoscode/terser", + "name": "stack-trace", + "url": "https://github.com/felixge/node-stack-trace", "description": "", "pathes": [ "." @@ -25957,8 +19745,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "terser-webpack-plugin", - "url": "https://github.com/webpack-contrib/terser-webpack-plugin", + "name": "stackframe", + "url": "https://www.stacktracejs.com/", "description": "", "pathes": [ "." @@ -25968,17 +19756,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "test-exclude", - "url": "https://github.com/istanbuljs/istanbuljs#readme", + "name": "static-extend", + "url": "https://github.com/jonschlinkert/static-extend", "description": "", "pathes": [ "." @@ -25997,8 +19785,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "text-table", - "url": "https://github.com/substack/text-table", + "name": "statuses", + "url": "Unknown", "description": "", "pathes": [ "." @@ -26017,8 +19805,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "thread-loader", - "url": "https://github.com/webpack-contrib/thread-loader", + "name": "std-env", + "url": "Unknown", "description": "", "pathes": [ "." @@ -26037,8 +19825,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "through", - "url": "https://github.com/dominictarr/through", + "name": "stream-browserify", + "url": "https://github.com/browserify/stream-browserify", "description": "", "pathes": [ "." @@ -26057,8 +19845,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "through2", - "url": "https://github.com/rvagg", + "name": "stream-each", + "url": "https://github.com/mafintosh/stream-each", "description": "", "pathes": [ "." @@ -26077,8 +19865,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "time-fix-plugin", - "url": "Unknown", + "name": "stream-http", + "url": "https://github.com/jhiesey/stream-http#readme", "description": "", "pathes": [ "." @@ -26097,8 +19885,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "timers-browserify", - "url": "https://github.com/jryans/timers-browserify", + "name": "stream-shift", + "url": "https://github.com/mafintosh/stream-shift", "description": "", "pathes": [ "." @@ -26117,8 +19905,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "timsort", - "url": "https://github.com/mziccard/node-timsort", + "name": "stream-to", + "url": "http://jongleberry.com", "description": "", "pathes": [ "." @@ -26137,8 +19925,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "tinycolor2", - "url": "http://briangrinstead.com", + "name": "stream-to-buffer", + "url": "http://jongleberry.com", "description": "", "pathes": [ "." @@ -26157,8 +19945,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "tmp", - "url": "http://github.com/raszi/node-tmp", + "name": "strict-uri-encode", + "url": "github.com/kevva", "description": "", "pathes": [ "." @@ -26177,8 +19965,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "to-arraybuffer", - "url": "https://github.com/jhiesey/to-arraybuffer#readme", + "name": "string", + "url": "http://stringjs.com/", "description": "", "pathes": [ "." @@ -26197,7 +19985,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "to-fast-properties", + "name": "string-width", "url": "sindresorhus.com", "description": "", "pathes": [ @@ -26217,7 +20005,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "to-fast-properties", + "name": "string-width", "url": "sindresorhus.com", "description": "", "pathes": [ @@ -26237,8 +20025,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "to-object-path", - "url": "https://github.com/jonschlinkert/to-object-path", + "name": "string-width", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -26257,8 +20045,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "to-regex", - "url": "https://github.com/jonschlinkert/to-regex", + "name": "string_decoder", + "url": "https://github.com/nodejs/string_decoder", "description": "", "pathes": [ "." @@ -26277,8 +20065,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "to-regex-range", - "url": "https://github.com/micromatch/to-regex-range", + "name": "string_decoder", + "url": "https://github.com/nodejs/string_decoder", "description": "", "pathes": [ "." @@ -26297,8 +20085,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "to-regex-range", - "url": "https://github.com/micromatch/to-regex-range", + "name": "stringstream", + "url": "http://github.com/mhart", "description": "", "pathes": [ "." @@ -26317,8 +20105,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "toidentifier", - "url": "Unknown", + "name": "strip-ansi", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -26337,28 +20125,8 @@ "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", + "name": "strip-ansi", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -26377,8 +20145,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "tr46", - "url": "Unknown", + "name": "strip-ansi", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -26397,8 +20165,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "trim", - "url": "Unknown", + "name": "strip-eof", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -26417,7 +20185,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "trim-right", + "name": "strip-json-comments", "url": "sindresorhus.com", "description": "", "pathes": [ @@ -26437,8 +20205,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "tryer", - "url": "https://gitlab.com/philbooth/tryer", + "name": "style-resources-loader", + "url": "https://github.com/yenshih/style-resources-loader", "description": "", "pathes": [ "." @@ -26448,17 +20216,17 @@ { "licenses": [ { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "tslib", - "url": "http://typescriptlang.org/", + "name": "stylehacks", + "url": "https://github.com/cssnano/cssnano", "description": "", "pathes": [ "." @@ -26477,8 +20245,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "tty-browserify", - "url": "https://github.com/substack/tty-browserify", + "name": "supports-color", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -26488,17 +20256,17 @@ { "licenses": [ { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "tunnel-agent", - "url": "http://www.futurealoof.com", + "name": "supports-color", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -26508,17 +20276,17 @@ { "licenses": [ { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "tunnel-agent", - "url": "http://www.futurealoof.com", + "name": "supports-color", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -26528,16 +20296,17 @@ { "licenses": [ { - "name": "Unlicense", - "url": "" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "Unlicense" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "tweetnacl", - "url": "https://tweetnacl.js.org/", + "name": "supports-color", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -26556,8 +20325,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "type-check", - "url": "https://github.com/gkz/type-check", + "name": "svg-tags", + "url": "Unknown", "description": "", "pathes": [ "." @@ -26576,8 +20345,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "type-detect", - "url": "http://alogicalparadox.com", + "name": "svgo", + "url": "https://github.com/svg/svgo", "description": "", "pathes": [ "." @@ -26587,16 +20356,17 @@ { "licenses": [ { - "name": "(MIT OR CC0-1.0)", - "url": "" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "(MIT OR CC0-1.0)" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "type-fest", - "url": "sindresorhus.com", + "name": "svgo", + "url": "https://github.com/svg/svgo", "description": "", "pathes": [ "." @@ -26615,8 +20385,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "type-is", - "url": "Unknown", + "name": "tapable", + "url": "https://github.com/webpack/tapable", "description": "", "pathes": [ "." @@ -26635,8 +20405,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "typedarray", - "url": "https://github.com/substack/typedarray", + "name": "tapable", + "url": "https://github.com/webpack/tapable", "description": "", "pathes": [ "." @@ -26646,16 +20416,17 @@ { "licenses": [ { - "name": "(GPL-2.0 OR MIT)", - "url": "" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "(GPL-2.0 OR MIT)" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "ua-parser-js", - "url": "http://github.com/faisalman/ua-parser-js", + "name": "tar", + "url": "http://blog.izs.me/", "description": "", "pathes": [ "." @@ -26674,8 +20445,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "uc.micro", - "url": "Unknown", + "name": "term-size", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -26694,8 +20465,8 @@ "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "uglify-js", - "url": "http://lisperator.net/uglifyjs", + "name": "terser", + "url": "https://github.com/fabiosantoscode/terser", "description": "", "pathes": [ "." @@ -26705,17 +20476,17 @@ { "licenses": [ { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "uglify-js", - "url": "http://lisperator.net/", + "name": "terser-webpack-plugin", + "url": "https://github.com/webpack-contrib/terser-webpack-plugin", "description": "", "pathes": [ "." @@ -26725,17 +20496,17 @@ { "licenses": [ { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "uglify-js", - "url": "http://lisperator.net/", + "name": "text-table", + "url": "https://github.com/substack/text-table", "description": "", "pathes": [ "." @@ -26754,8 +20525,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "uglify-to-browserify", - "url": "Unknown", + "name": "thread-loader", + "url": "https://github.com/webpack-contrib/thread-loader", "description": "", "pathes": [ "." @@ -26774,8 +20545,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "underscore", - "url": "http://underscorejs.org/", + "name": "through2", + "url": "https://github.com/rvagg", "description": "", "pathes": [ "." @@ -26794,8 +20565,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "unfetch", - "url": "https://github.com/developit/unfetch", + "name": "time-fix-plugin", + "url": "Unknown", "description": "", "pathes": [ "." @@ -26814,8 +20585,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "unicode-canonical-property-names-ecmascript", - "url": "https://github.com/mathiasbynens/unicode-canonical-property-names-ecmascript", + "name": "timers-browserify", + "url": "https://github.com/jryans/timers-browserify", "description": "", "pathes": [ "." @@ -26834,8 +20605,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "unicode-match-property-ecmascript", - "url": "https://github.com/mathiasbynens/unicode-match-property-ecmascript", + "name": "timsort", + "url": "https://github.com/mziccard/node-timsort", "description": "", "pathes": [ "." @@ -26854,8 +20625,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "unicode-match-property-value-ecmascript", - "url": "https://github.com/mathiasbynens/unicode-match-property-value-ecmascript", + "name": "tinycolor2", + "url": "http://briangrinstead.com", "description": "", "pathes": [ "." @@ -26874,8 +20645,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "unicode-property-aliases-ecmascript", - "url": "https://github.com/mathiasbynens/unicode-property-aliases-ecmascript", + "name": "to-arraybuffer", + "url": "https://github.com/jhiesey/to-arraybuffer#readme", "description": "", "pathes": [ "." @@ -26894,8 +20665,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "union-value", - "url": "https://github.com/jonschlinkert/union-value", + "name": "to-fast-properties", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -26914,8 +20685,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "uniq", - "url": "Unknown", + "name": "to-object-path", + "url": "https://github.com/jonschlinkert/to-object-path", "description": "", "pathes": [ "." @@ -26934,8 +20705,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "uniqs", - "url": "Unknown", + "name": "to-regex", + "url": "https://github.com/jonschlinkert/to-regex", "description": "", "pathes": [ "." @@ -26945,17 +20716,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "unique-filename", - "url": "https://github.com/iarna/unique-filename", + "name": "to-regex-range", + "url": "https://github.com/micromatch/to-regex-range", "description": "", "pathes": [ "." @@ -26965,17 +20736,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "unique-slug", - "url": "http://re-becca.org", + "name": "to-regex-range", + "url": "https://github.com/micromatch/to-regex-range", "description": "", "pathes": [ "." @@ -26994,8 +20765,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "universalify", - "url": "https://github.com/RyanZim/universalify#readme", + "name": "toidentifier", + "url": "Unknown", "description": "", "pathes": [ "." @@ -27014,7 +20785,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "unpipe", + "name": "toposort", "url": "Unknown", "description": "", "pathes": [ @@ -27025,17 +20796,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "unquote", - "url": "https://github.com/lakenen/node-unquote", + "name": "tough-cookie", + "url": "https://github.com/salesforce/tough-cookie", "description": "", "pathes": [ "." @@ -27054,8 +20825,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "unset-value", - "url": "https://github.com/jonschlinkert/unset-value", + "name": "trim", + "url": "Unknown", "description": "", "pathes": [ "." @@ -27074,8 +20845,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "upath", - "url": "http://github.com/anodynos/upath/", + "name": "trim-right", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -27094,8 +20865,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "upper-case", - "url": "https://github.com/blakeembrey/upper-case", + "name": "tryer", + "url": "https://gitlab.com/philbooth/tryer", "description": "", "pathes": [ "." @@ -27105,17 +20876,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, "dependency": { - "name": "uppercamelcase", - "url": "Unknown", + "name": "tslib", + "url": "http://typescriptlang.org/", "description": "", "pathes": [ "." @@ -27125,17 +20896,17 @@ { "licenses": [ { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "uri-js", - "url": "https://github.com/garycourt/uri-js", + "name": "tty-browserify", + "url": "https://github.com/substack/tty-browserify", "description": "", "pathes": [ "." @@ -27145,17 +20916,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, "dependency": { - "name": "urix", - "url": "Unknown", + "name": "tunnel-agent", + "url": "http://www.futurealoof.com", "description": "", "pathes": [ "." @@ -27165,17 +20936,16 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Unlicense", + "url": "" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Unlicense" }, "dependency": { - "name": "url", - "url": "Unknown", + "name": "tweetnacl", + "url": "https://tweetnacl.js.org/", "description": "", "pathes": [ "." @@ -27185,17 +20955,16 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "(MIT OR CC0-1.0)", + "url": "" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "(MIT OR CC0-1.0)" }, "dependency": { - "name": "url-join", - "url": "http://joseoncode.com", + "name": "type-fest", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -27214,8 +20983,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "url-loader", - "url": "https://github.com/webpack-contrib/url-loader", + "name": "type-is", + "url": "Unknown", "description": "", "pathes": [ "." @@ -27234,8 +21003,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "url-regex", - "url": "https://github.com/kevva", + "name": "typedarray", + "url": "https://github.com/substack/typedarray", "description": "", "pathes": [ "." @@ -27245,17 +21014,16 @@ { "licenses": [ { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "(GPL-2.0 OR MIT)", + "url": "" } ], "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "(GPL-2.0 OR MIT)" }, "dependency": { - "name": "urlgrey", - "url": "Unknown", + "name": "ua-parser-js", + "url": "http://github.com/faisalman/ua-parser-js", "description": "", "pathes": [ "." @@ -27274,8 +21042,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "use", - "url": "https://github.com/jonschlinkert/use", + "name": "uc.micro", + "url": "Unknown", "description": "", "pathes": [ "." @@ -27285,17 +21053,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "util", - "url": "https://github.com/defunctzombie/node-util", + "name": "uglify-js", + "url": "http://lisperator.net/", "description": "", "pathes": [ "." @@ -27305,17 +21073,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "util", - "url": "https://github.com/defunctzombie/node-util", + "name": "uglify-js", + "url": "http://lisperator.net/", "description": "", "pathes": [ "." @@ -27334,8 +21102,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "util-deprecate", - "url": "https://github.com/TooTallNate/util-deprecate", + "name": "underscore", + "url": "http://underscorejs.org/", "description": "", "pathes": [ "." @@ -27354,8 +21122,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "util.promisify", - "url": "https://github.com/ljharb/util.promisify#readme", + "name": "unfetch", + "url": "https://github.com/developit/unfetch", "description": "", "pathes": [ "." @@ -27374,8 +21142,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "utila", - "url": "Unknown", + "name": "unicode-canonical-property-names-ecmascript", + "url": "https://github.com/mathiasbynens/unicode-canonical-property-names-ecmascript", "description": "", "pathes": [ "." @@ -27394,8 +21162,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "utils-merge", - "url": "http://www.jaredhanson.net/", + "name": "unicode-match-property-ecmascript", + "url": "https://github.com/mathiasbynens/unicode-match-property-ecmascript", "description": "", "pathes": [ "." @@ -27414,8 +21182,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "uuid", - "url": "Unknown", + "name": "unicode-match-property-value-ecmascript", + "url": "https://github.com/mathiasbynens/unicode-match-property-value-ecmascript", "description": "", "pathes": [ "." @@ -27425,17 +21193,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "v-tooltip", - "url": "https://github.com/Akryum/vue-tooltip#readme", + "name": "unicode-property-aliases-ecmascript", + "url": "https://github.com/mathiasbynens/unicode-property-aliases-ecmascript", "description": "", "pathes": [ "." @@ -27445,17 +21213,17 @@ { "licenses": [ { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "validate-npm-package-license", - "url": "https://kemitchell.com", + "name": "union-value", + "url": "https://github.com/jonschlinkert/union-value", "description": "", "pathes": [ "." @@ -27474,7 +21242,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "vary", + "name": "uniq", "url": "Unknown", "description": "", "pathes": [ @@ -27494,8 +21262,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "vendors", - "url": "https://wooorm.com", + "name": "uniqs", + "url": "Unknown", "description": "", "pathes": [ "." @@ -27505,17 +21273,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "verror", - "url": "Unknown", + "name": "unique-filename", + "url": "https://github.com/iarna/unique-filename", "description": "", "pathes": [ "." @@ -27525,17 +21293,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "vm-browserify", - "url": "http://substack.net", + "name": "unique-slug", + "url": "http://re-becca.org", "description": "", "pathes": [ "." @@ -27554,8 +21322,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "vue", - "url": "https://github.com/vuejs/vue#readme", + "name": "universalify", + "url": "https://github.com/RyanZim/universalify#readme", "description": "", "pathes": [ "." @@ -27574,8 +21342,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "vue-disqus", - "url": "https://github.com/ktquez/vue-disqus#readme", + "name": "unpipe", + "url": "Unknown", "description": "", "pathes": [ "." @@ -27594,8 +21362,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "vue-hot-reload-api", - "url": "https://github.com/vuejs/vue-hot-reload-api#readme", + "name": "unquote", + "url": "https://github.com/lakenen/node-unquote", "description": "", "pathes": [ "." @@ -27614,8 +21382,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "vue-loader", - "url": "https://github.com/vuejs/vue-loader", + "name": "unset-value", + "url": "https://github.com/jonschlinkert/unset-value", "description": "", "pathes": [ "." @@ -27634,8 +21402,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "vue-meta", - "url": "https://github.com/declandewet/vue-meta", + "name": "upath", + "url": "http://github.com/anodynos/upath/", "description": "", "pathes": [ "." @@ -27645,17 +21413,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "vue-moment", - "url": "https://github.com/brockpetrie/vue-moment#readme", + "name": "upper-case", + "url": "https://github.com/blakeembrey/upper-case", "description": "", "pathes": [ "." @@ -27674,7 +21442,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "vue-no-ssr", + "name": "uppercamelcase", "url": "Unknown", "description": "", "pathes": [ @@ -27685,17 +21453,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Simplified BSD", + "url": "http://opensource.org/licenses/bsd-license" }, "dependency": { - "name": "vue-resize", - "url": "https://github.com/Akryum/vue-resize#readme", + "name": "uri-js", + "url": "https://github.com/garycourt/uri-js", "description": "", "pathes": [ "." @@ -27714,8 +21482,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "vue-router", - "url": "https://github.com/vuejs/vue-router#readme", + "name": "urix", + "url": "Unknown", "description": "", "pathes": [ "." @@ -27734,8 +21502,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "vue-scrollto", - "url": "http://igor-randjelovic.com", + "name": "url", + "url": "Unknown", "description": "", "pathes": [ "." @@ -27754,8 +21522,8 @@ "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", + "name": "url-join", + "url": "http://joseoncode.com", "description": "", "pathes": [ "." @@ -27765,16 +21533,17 @@ { "licenses": [ { - "name": "UNKNOWN", - "url": "" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "UNKNOWN" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "vue-slideout", - "url": "Unknown", + "name": "url-loader", + "url": "https://github.com/webpack-contrib/url-loader", "description": "", "pathes": [ "." @@ -27793,8 +21562,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "vue-style-loader", - "url": "Unknown", + "name": "url-regex", + "url": "https://github.com/kevva", "description": "", "pathes": [ "." @@ -27813,8 +21582,8 @@ "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", + "name": "use", + "url": "https://github.com/jonschlinkert/use", "description": "", "pathes": [ "." @@ -27833,8 +21602,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "vue-template-es2015-compiler", - "url": "Unknown", + "name": "util", + "url": "https://github.com/defunctzombie/node-util", "description": "", "pathes": [ "." @@ -27853,8 +21622,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "vuex", - "url": "https://github.com/vuejs/vuex#readme", + "name": "util", + "url": "https://github.com/defunctzombie/node-util", "description": "", "pathes": [ "." @@ -27873,8 +21642,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "w3c-hr-time", - "url": "Unknown", + "name": "util-deprecate", + "url": "https://github.com/TooTallNate/util-deprecate", "description": "", "pathes": [ "." @@ -27893,8 +21662,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "watchpack", - "url": "https://github.com/webpack/watchpack", + "name": "util.promisify", + "url": "https://github.com/ljharb/util.promisify#readme", "description": "", "pathes": [ "." @@ -27904,17 +21673,17 @@ { "licenses": [ { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "webidl-conversions", - "url": "https://domenic.me/", + "name": "utila", + "url": "Unknown", "description": "", "pathes": [ "." @@ -27933,8 +21702,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "webpack", - "url": "https://github.com/webpack/webpack", + "name": "utils-merge", + "url": "http://www.jaredhanson.net/", "description": "", "pathes": [ "." @@ -27953,8 +21722,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "webpack-bundle-analyzer", - "url": "https://github.com/webpack-contrib/webpack-bundle-analyzer", + "name": "uuid", + "url": "Unknown", "description": "", "pathes": [ "." @@ -27964,17 +21733,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "webpack-dev-middleware", - "url": "https://github.com/webpack/webpack-dev-middleware", + "name": "v-tooltip", + "url": "https://github.com/Akryum/vue-tooltip#readme", "description": "", "pathes": [ "." @@ -27993,7 +21762,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "webpack-hot-middleware", + "name": "vary", "url": "Unknown", "description": "", "pathes": [ @@ -28013,8 +21782,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "webpack-info-plugin", - "url": "https://github.com/zinserjan/webpack-info-plugin#readme", + "name": "vendors", + "url": "https://wooorm.com", "description": "", "pathes": [ "." @@ -28033,8 +21802,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "webpack-log", - "url": "https://github.com/webpack-contrib/webpack-log#readme", + "name": "verror", + "url": "Unknown", "description": "", "pathes": [ "." @@ -28053,8 +21822,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "webpack-node-externals", - "url": "https://github.com/liady/webpack-node-externals", + "name": "vm-browserify", + "url": "http://substack.net", "description": "", "pathes": [ "." @@ -28073,8 +21842,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "webpack-sources", - "url": "https://github.com/webpack/webpack-sources#readme", + "name": "vue", + "url": "https://github.com/vuejs/vue#readme", "description": "", "pathes": [ "." @@ -28093,8 +21862,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "webpack-sources", - "url": "https://github.com/webpack/webpack-sources#readme", + "name": "vue-disqus", + "url": "https://github.com/ktquez/vue-disqus#readme", "description": "", "pathes": [ "." @@ -28113,8 +21882,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "webpackbar", - "url": "https://github.com/nuxt/webpackbar", + "name": "vue-hot-reload-api", + "url": "https://github.com/vuejs/vue-hot-reload-api#readme", "description": "", "pathes": [ "." @@ -28133,8 +21902,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "whatwg-encoding", - "url": "https://domenic.me/", + "name": "vue-loader", + "url": "https://github.com/vuejs/vue-loader", "description": "", "pathes": [ "." @@ -28153,8 +21922,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "whatwg-url", - "url": "Unknown", + "name": "vue-meta", + "url": "https://github.com/declandewet/vue-meta", "description": "", "pathes": [ "." @@ -28164,17 +21933,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "when", - "url": "http://cujojs.com/", + "name": "vue-moment", + "url": "https://github.com/brockpetrie/vue-moment#readme", "description": "", "pathes": [ "." @@ -28193,7 +21962,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "whet.extend", + "name": "vue-no-ssr", "url": "Unknown", "description": "", "pathes": [ @@ -28204,17 +21973,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "which", - "url": "http://blog.izs.me", + "name": "vue-resize", + "url": "https://github.com/Akryum/vue-resize#readme", "description": "", "pathes": [ "." @@ -28224,17 +21993,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "which", - "url": "http://blog.izs.me", + "name": "vue-router", + "url": "https://github.com/vuejs/vue-router#readme", "description": "", "pathes": [ "." @@ -28243,18 +22012,18 @@ }, { "licenses": [ - { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + { + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "which-module", - "url": "https://github.com/nexdrew/which-module#readme", + "name": "vue-scrollto", + "url": "http://igor-randjelovic.com", "description": "", "pathes": [ "." @@ -28264,17 +22033,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "which-module", - "url": "https://github.com/nexdrew/which-module#readme", + "name": "vue-server-renderer", + "url": "https://github.com/vuejs/vue/tree/dev/packages/vue-server-renderer#readme", "description": "", "pathes": [ "." @@ -28284,17 +22053,16 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "UNKNOWN", + "url": "" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "UNKNOWN" }, "dependency": { - "name": "wide-align", - "url": "http://re-becca.org/", + "name": "vue-slideout", + "url": "Unknown", "description": "", "pathes": [ "." @@ -28313,8 +22081,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "widest-line", - "url": "sindresorhus.com", + "name": "vue-style-loader", + "url": "Unknown", "description": "", "pathes": [ "." @@ -28333,8 +22101,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "window", - "url": "https://github.com/lukechilds/window#readme", + "name": "vue-template-compiler", + "url": "https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme", "description": "", "pathes": [ "." @@ -28353,8 +22121,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "window-size", - "url": "https://github.com/jonschlinkert/window-size", + "name": "vue-template-es2015-compiler", + "url": "Unknown", "description": "", "pathes": [ "." @@ -28373,8 +22141,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "window-size", - "url": "https://github.com/jonschlinkert/window-size", + "name": "vuex", + "url": "https://github.com/vuejs/vuex#readme", "description": "", "pathes": [ "." @@ -28393,8 +22161,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "wordwrap", - "url": "http://substack.net", + "name": "watchpack", + "url": "https://github.com/webpack/watchpack", "description": "", "pathes": [ "." @@ -28413,8 +22181,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "wordwrap", - "url": "http://substack.net", + "name": "webpack", + "url": "https://github.com/webpack/webpack", "description": "", "pathes": [ "." @@ -28433,8 +22201,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "wordwrap", - "url": "http://substack.net", + "name": "webpack-bundle-analyzer", + "url": "https://github.com/webpack-contrib/webpack-bundle-analyzer", "description": "", "pathes": [ "." @@ -28444,17 +22212,17 @@ { "licenses": [ { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "workbox-build", - "url": "https://github.com/GoogleChrome/workbox/tree/master/packages/workbox-build", + "name": "webpack-dev-middleware", + "url": "https://github.com/webpack/webpack-dev-middleware", "description": "", "pathes": [ "." @@ -28464,17 +22232,17 @@ { "licenses": [ { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "workbox-sw", - "url": "https://github.com/GoogleChrome/workbox/tree/master/packages/workbox-sw", + "name": "webpack-hot-middleware", + "url": "Unknown", "description": "", "pathes": [ "." @@ -28493,8 +22261,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "worker-farm", - "url": "https://github.com/rvagg/node-worker-farm", + "name": "webpack-log", + "url": "https://github.com/webpack-contrib/webpack-log#readme", "description": "", "pathes": [ "." @@ -28513,8 +22281,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "wrap-ansi", - "url": "sindresorhus.com", + "name": "webpack-node-externals", + "url": "https://github.com/liady/webpack-node-externals", "description": "", "pathes": [ "." @@ -28533,8 +22301,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "wrap-ansi", - "url": "sindresorhus.com", + "name": "webpack-sources", + "url": "https://github.com/webpack/webpack-sources#readme", "description": "", "pathes": [ "." @@ -28544,17 +22312,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "wrappy", - "url": "https://github.com/npm/wrappy", + "name": "webpackbar", + "url": "https://github.com/nuxt/webpackbar", "description": "", "pathes": [ "." @@ -28573,8 +22341,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "write", - "url": "https://github.com/jonschlinkert/write", + "name": "whet.extend", + "url": "Unknown", "description": "", "pathes": [ "." @@ -28593,8 +22361,8 @@ "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "write-file-atomic", - "url": "https://github.com/iarna/write-file-atomic", + "name": "which", + "url": "http://blog.izs.me", "description": "", "pathes": [ "." @@ -28613,8 +22381,8 @@ "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "write-file-atomic", - "url": "https://github.com/iarna/write-file-atomic", + "name": "wide-align", + "url": "http://re-becca.org/", "description": "", "pathes": [ "." @@ -28633,7 +22401,7 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "write-json-file", + "name": "widest-line", "url": "sindresorhus.com", "description": "", "pathes": [ @@ -28644,17 +22412,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, "dependency": { - "name": "ws", - "url": "https://github.com/websockets/ws", + "name": "workbox-build", + "url": "https://github.com/GoogleChrome/workbox/tree/master/packages/workbox-build", "description": "", "pathes": [ "." @@ -28664,17 +22432,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" }, "dependency": { - "name": "ws", - "url": "https://github.com/websockets/ws", + "name": "workbox-sw", + "url": "https://github.com/GoogleChrome/workbox/tree/master/packages/workbox-sw", "description": "", "pathes": [ "." @@ -28693,8 +22461,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "ws", - "url": "https://github.com/websockets/ws", + "name": "worker-farm", + "url": "https://github.com/rvagg/node-worker-farm", "description": "", "pathes": [ "." @@ -28713,8 +22481,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "xhr", - "url": "https://github.com/naugtur/xhr", + "name": "wrap-ansi", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -28724,17 +22492,17 @@ { "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" } ], "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "xml-name-validator", - "url": "https://domenic.me/", + "name": "wrappy", + "url": "https://github.com/npm/wrappy", "description": "", "pathes": [ "." @@ -28744,17 +22512,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "xml-parse-from-string", - "url": "https://github.com/Jam3/xml-parse-from-string", + "name": "write-file-atomic", + "url": "https://github.com/iarna/write-file-atomic", "description": "", "pathes": [ "." @@ -28773,8 +22541,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "xml2js", - "url": "https://github.com/Leonidas-from-XIV/node-xml2js", + "name": "write-json-file", + "url": "sindresorhus.com", "description": "", "pathes": [ "." @@ -28793,8 +22561,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "xmlbuilder", - "url": "http://github.com/oozcitak/xmlbuilder-js", + "name": "ws", + "url": "https://github.com/websockets/ws", "description": "", "pathes": [ "." @@ -28813,8 +22581,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "xtend", - "url": "https://github.com/Raynos/xtend", + "name": "ws", + "url": "https://github.com/websockets/ws", "description": "", "pathes": [ "." @@ -28833,28 +22601,8 @@ "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", + "name": "xhr", + "url": "https://github.com/naugtur/xhr", "description": "", "pathes": [ "." @@ -28864,17 +22612,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "y18n", - "url": "https://github.com/yargs/y18n", + "name": "xml-parse-from-string", + "url": "https://github.com/Jam3/xml-parse-from-string", "description": "", "pathes": [ "." @@ -28884,17 +22632,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "yallist", - "url": "http://blog.izs.me/", + "name": "xml2js", + "url": "https://github.com/Leonidas-from-XIV/node-xml2js", "description": "", "pathes": [ "." @@ -28904,17 +22652,17 @@ { "licenses": [ { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" } ], "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" + "name": "MIT", + "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "yallist", - "url": "http://blog.izs.me/", + "name": "xmlbuilder", + "url": "http://github.com/oozcitak/xmlbuilder-js", "description": "", "pathes": [ "." @@ -28933,8 +22681,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "yargs", - "url": "http://yargs.js.org/", + "name": "xtend", + "url": "https://github.com/Raynos/xtend", "description": "", "pathes": [ "." @@ -28953,8 +22701,8 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "yargs", - "url": "http://CodeTunnel.com", + "name": "xxhashjs", + "url": "https://github.com/pierrec/js-xxhash", "description": "", "pathes": [ "." @@ -28964,17 +22712,17 @@ { "licenses": [ { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "ISC", + "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "yargs", - "url": "http://yargs.js.org/", + "name": "y18n", + "url": "https://github.com/yargs/y18n", "description": "", "pathes": [ "." @@ -28993,8 +22741,8 @@ "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "yargs-parser", - "url": "Unknown", + "name": "yallist", + "url": "http://blog.izs.me/", "description": "", "pathes": [ "." @@ -29013,8 +22761,8 @@ "url": "http://en.wikipedia.org/wiki/ISC_license" }, "dependency": { - "name": "yargs-parser", - "url": "Unknown", + "name": "yallist", + "url": "http://blog.izs.me/", "description": "", "pathes": [ "." @@ -29022,4 +22770,4 @@ } } ] -} +} \ No newline at end of file diff --git a/spec/fixtures/expected/js/yarn/v2.0.json b/spec/fixtures/expected/js/yarn/v2.0.json index 1881dcf..7553d39 100644 --- a/spec/fixtures/expected/js/yarn/v2.0.json +++ b/spec/fixtures/expected/js/yarn/v2.0.json @@ -5,61 +5,37 @@ "id": "MIT", "name": "MIT License", "url": "https://opensource.org/licenses/MIT", - "count": 1176 + "count": 949 }, { "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 + "count": 87 }, { "id": "BSD-2-Clause", "name": "BSD 2-Clause \"Simplified\" License", "url": "https://opensource.org/licenses/BSD-2-Clause", - "count": 34 + "count": 23 }, { - "id": "Apache-2.0", - "name": "Apache License 2.0", - "url": "https://opensource.org/licenses/Apache-2.0", - "count": 23 + "id": "BSD-3-Clause", + "name": "BSD 3-Clause \"New\" or \"Revised\" License", + "url": "https://opensource.org/licenses/BSD-3-Clause", + "count": 22 }, { "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 + "count": 21 }, { - "id": "BSD-4-Clause", - "name": "BSD 4-Clause \"Original\" or \"Old\" License", - "url": "http://directory.fsf.org/wiki/License:BSD_4Clause", - "count": 2 + "id": "Apache-2.0", + "name": "Apache License 2.0", + "url": "https://opensource.org/licenses/Apache-2.0", + "count": 14 }, { "id": "CC-BY-4.0", @@ -68,8 +44,8 @@ "count": 2 }, { - "id": "see license in license", - "name": "SEE LICENSE IN LICENSE", + "id": "mit*", + "name": "MIT*", "url": "", "count": 2 }, @@ -122,29 +98,17 @@ "count": 1 }, { - "id": "bsd*", - "name": "BSD*", + "id": "(wtfpl or mit)", + "name": "(WTFPL OR MIT)", "url": "", "count": 1 }, { - "id": "bsd-3-clause or mit", - "name": "BSD-3-Clause OR MIT", + "id": "bsd*", + "name": "BSD*", "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", @@ -1645,17 +1609,6 @@ "Apache-2.0" ] }, - { - "name": "abab", - "url": "https://github.com/jsdom/abab#readme", - "description": "", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] - }, { "name": "abbrev", "url": "Unknown", @@ -1678,39 +1631,6 @@ "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", @@ -1733,28 +1653,6 @@ "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", @@ -1810,28 +1708,6 @@ "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", @@ -1843,17 +1719,6 @@ "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", @@ -1887,17 +1752,6 @@ "MIT" ] }, - { - "name": "ansi-escapes", - "url": "sindresorhus.com", - "description": "", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, { "name": "ansi-html", "url": "https://github.com/Tjatse/ansi-html", @@ -1964,17 +1818,6 @@ "MIT" ] }, - { - "name": "anymatch", - "url": "https://github.com/es128/anymatch", - "description": "", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] - }, { "name": "anymatch", "url": "https://github.com/micromatch/anymatch", @@ -1997,17 +1840,6 @@ "ISC" ] }, - { - "name": "append-transform", - "url": "github.com/jamestalmage", - "description": "", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, { "name": "aproba", "url": "https://github.com/iarna/aproba", @@ -2019,17 +1851,6 @@ "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", @@ -2096,17 +1917,6 @@ "MIT" ] }, - { - "name": "array-equal", - "url": "http://jongleberry.com", - "description": "", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, { "name": "array-filter", "url": "https://github.com/juliangruber/array-filter", @@ -2152,8 +1962,8 @@ ] }, { - "name": "array-union", - "url": "sindresorhus.com", + "name": "array-unique", + "url": "https://github.com/jonschlinkert/array-unique", "description": "", "paths": [ "." @@ -2163,8 +1973,8 @@ ] }, { - "name": "array-uniq", - "url": "sindresorhus.com", + "name": "array-unique", + "url": "https://github.com/jonschlinkert/array-unique", "description": "", "paths": [ "." @@ -2174,8 +1984,8 @@ ] }, { - "name": "array-unique", - "url": "https://github.com/jonschlinkert/array-unique", + "name": "asn1", + "url": "joyent.com", "description": "", "paths": [ "." @@ -2185,8 +1995,8 @@ ] }, { - "name": "array-unique", - "url": "https://github.com/jonschlinkert/array-unique", + "name": "asn1.js", + "url": "https://github.com/indutny/asn1.js", "description": "", "paths": [ "." @@ -2196,8 +2006,8 @@ ] }, { - "name": "arrify", - "url": "sindresorhus.com", + "name": "assert", + "url": "https://github.com/browserify/commonjs-assert", "description": "", "paths": [ "." @@ -2207,7 +2017,7 @@ ] }, { - "name": "asn1", + "name": "assert-plus", "url": "Unknown", "description": "", "paths": [ @@ -2218,8 +2028,8 @@ ] }, { - "name": "asn1", - "url": "joyent.com", + "name": "assign-symbols", + "url": "https://github.com/jonschlinkert/assign-symbols", "description": "", "paths": [ "." @@ -2229,8 +2039,8 @@ ] }, { - "name": "asn1.js", - "url": "https://github.com/indutny/asn1.js", + "name": "async", + "url": "https://caolan.github.io/async/", "description": "", "paths": [ "." @@ -2240,29 +2050,29 @@ ] }, { - "name": "assert", - "url": "https://github.com/browserify/commonjs-assert", + "name": "async-cache", + "url": "http://blog.izs.me/", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "assert-plus", - "url": "Unknown", + "name": "async-each", + "url": "https://github.com/paulmillr/async-each/", "description": "", "paths": [ "." ], "licenses": [ - "mit*" + "MIT" ] }, { - "name": "assert-plus", + "name": "async-limiter", "url": "Unknown", "description": "", "paths": [ @@ -2273,8 +2083,8 @@ ] }, { - "name": "assertion-error", - "url": "http://qualiancy.com", + "name": "asynckit", + "url": "https://github.com/alexindigo/asynckit#readme", "description": "", "paths": [ "." @@ -2284,18 +2094,18 @@ ] }, { - "name": "assign-symbols", - "url": "https://github.com/jonschlinkert/assign-symbols", + "name": "atob", + "url": "https://git.coolaj86.com/coolaj86/atob.js.git", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "(mit or apache-2.0)" ] }, { - "name": "async", + "name": "autoprefixer", "url": "Unknown", "description": "", "paths": [ @@ -2306,7 +2116,7 @@ ] }, { - "name": "async", + "name": "autoprefixer", "url": "Unknown", "description": "", "paths": [ @@ -2317,30 +2127,30 @@ ] }, { - "name": "async", - "url": "https://caolan.github.io/async/", + "name": "aws-sign2", + "url": "http://www.futurealoof.com", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "Apache-2.0" ] }, { - "name": "async-cache", - "url": "http://blog.izs.me/", + "name": "aws4", + "url": "http://github.com/mhart", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "MIT" ] }, { - "name": "async-each", - "url": "https://github.com/paulmillr/async-each/", + "name": "axios", + "url": "https://github.com/axios/axios", "description": "", "paths": [ "." @@ -2350,19 +2160,19 @@ ] }, { - "name": "async-limiter", - "url": "Unknown", + "name": "axios-retry", + "url": "https://github.com/softonic/axios-retry", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "Apache-2.0" ] }, { - "name": "asynckit", - "url": "https://github.com/alexindigo/asynckit#readme", + "name": "babel-loader", + "url": "https://github.com/babel/babel-loader", "description": "", "paths": [ "." @@ -2372,19 +2182,19 @@ ] }, { - "name": "atob", - "url": "https://git.coolaj86.com/coolaj86/atob.js.git", + "name": "balanced-match", + "url": "https://github.com/juliangruber/balanced-match", "description": "", "paths": [ "." ], "licenses": [ - "(mit or apache-2.0)" + "MIT" ] }, { - "name": "autoprefixer", - "url": "Unknown", + "name": "balanced-match", + "url": "https://github.com/juliangruber/balanced-match", "description": "", "paths": [ "." @@ -2394,8 +2204,8 @@ ] }, { - "name": "autoprefixer", - "url": "Unknown", + "name": "base", + "url": "https://github.com/node-base/base", "description": "", "paths": [ "." @@ -2405,30 +2215,30 @@ ] }, { - "name": "aws-sign2", - "url": "http://www.futurealoof.com", + "name": "base64-js", + "url": "https://github.com/beatgammit/base64-js", "description": "", "paths": [ "." ], "licenses": [ - "apache*" + "MIT" ] }, { - "name": "aws-sign2", - "url": "http://www.futurealoof.com", + "name": "bcrypt-pbkdf", + "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "Apache-2.0" + "BSD-3-Clause" ] }, { - "name": "aws4", - "url": "http://github.com/mhart", + "name": "bezier-easing", + "url": "Unknown", "description": "", "paths": [ "." @@ -2438,8 +2248,8 @@ ] }, { - "name": "axios", - "url": "https://github.com/axios/axios", + "name": "bfj", + "url": "https://gitlab.com/philbooth/bfj", "description": "", "paths": [ "." @@ -2449,19 +2259,19 @@ ] }, { - "name": "axios-retry", - "url": "https://github.com/softonic/axios-retry", + "name": "big.js", + "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "Apache-2.0" + "MIT" ] }, { - "name": "babel-code-frame", - "url": "https://babeljs.io/", + "name": "big.js", + "url": "Unknown", "description": "", "paths": [ "." @@ -2471,8 +2281,8 @@ ] }, { - "name": "babel-eslint", - "url": "https://github.com/babel/babel-eslint", + "name": "bignumber.js", + "url": "Unknown", "description": "", "paths": [ "." @@ -2482,8 +2292,8 @@ ] }, { - "name": "babel-generator", - "url": "https://babeljs.io/", + "name": "binary-extensions", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -2493,8 +2303,8 @@ ] }, { - "name": "babel-loader", - "url": "https://github.com/babel/babel-loader", + "name": "binary-extensions", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -2504,8 +2314,8 @@ ] }, { - "name": "babel-messages", - "url": "https://babeljs.io/", + "name": "bluebird", + "url": "https://github.com/petkaantonov/bluebird", "description": "", "paths": [ "." @@ -2515,7 +2325,7 @@ ] }, { - "name": "babel-runtime", + "name": "bmp-js", "url": "Unknown", "description": "", "paths": [ @@ -2526,8 +2336,8 @@ ] }, { - "name": "babel-template", - "url": "https://babeljs.io/", + "name": "bn.js", + "url": "https://github.com/indutny/bn.js", "description": "", "paths": [ "." @@ -2537,8 +2347,8 @@ ] }, { - "name": "babel-traverse", - "url": "https://babeljs.io/", + "name": "body-parser", + "url": "Unknown", "description": "", "paths": [ "." @@ -2548,41 +2358,41 @@ ] }, { - "name": "babel-types", - "url": "https://babeljs.io/", + "name": "boolbase", + "url": "https://github.com/fb55/boolbase", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "babylon", - "url": "https://babeljs.io/", + "name": "boom", + "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "BSD-3-Clause" ] }, { - "name": "balanced-match", - "url": "https://github.com/juliangruber/balanced-match", + "name": "boom", + "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "BSD-3-Clause" ] }, { - "name": "balanced-match", - "url": "https://github.com/juliangruber/balanced-match", + "name": "boxen", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -2592,8 +2402,8 @@ ] }, { - "name": "base", - "url": "https://github.com/node-base/base", + "name": "brace-expansion", + "url": "https://github.com/juliangruber/brace-expansion", "description": "", "paths": [ "." @@ -2603,8 +2413,8 @@ ] }, { - "name": "base64-js", - "url": "https://github.com/beatgammit/base64-js", + "name": "braces", + "url": "https://github.com/jonschlinkert/braces", "description": "", "paths": [ "." @@ -2614,19 +2424,19 @@ ] }, { - "name": "bcrypt-pbkdf", - "url": "Unknown", + "name": "braces", + "url": "https://github.com/micromatch/braces", "description": "", "paths": [ "." ], "licenses": [ - "BSD-3-Clause" + "MIT" ] }, { - "name": "bezier-easing", - "url": "Unknown", + "name": "braces", + "url": "https://github.com/micromatch/braces", "description": "", "paths": [ "." @@ -2636,8 +2446,8 @@ ] }, { - "name": "bfj", - "url": "https://gitlab.com/philbooth/bfj", + "name": "brorand", + "url": "https://github.com/indutny/brorand", "description": "", "paths": [ "." @@ -2647,8 +2457,8 @@ ] }, { - "name": "big.js", - "url": "Unknown", + "name": "browserify-aes", + "url": "https://github.com/crypto-browserify/browserify-aes", "description": "", "paths": [ "." @@ -2658,7 +2468,7 @@ ] }, { - "name": "big.js", + "name": "browserify-cipher", "url": "Unknown", "description": "", "paths": [ @@ -2669,8 +2479,8 @@ ] }, { - "name": "bignumber.js", - "url": "Unknown", + "name": "browserify-des", + "url": "https://github.com/crypto-browserify/browserify-des#readme", "description": "", "paths": [ "." @@ -2680,8 +2490,8 @@ ] }, { - "name": "binary-extensions", - "url": "sindresorhus.com", + "name": "browserify-rsa", + "url": "Unknown", "description": "", "paths": [ "." @@ -2691,19 +2501,19 @@ ] }, { - "name": "binary-extensions", - "url": "sindresorhus.com", + "name": "browserify-sign", + "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "bl", - "url": "https://github.com/rvagg/bl", + "name": "browserify-zlib", + "url": "https://github.com/devongovett/browserify-zlib", "description": "", "paths": [ "." @@ -2713,8 +2523,8 @@ ] }, { - "name": "bluebird", - "url": "https://github.com/petkaantonov/bluebird", + "name": "browserslist", + "url": "Unknown", "description": "", "paths": [ "." @@ -2724,7 +2534,7 @@ ] }, { - "name": "bmp-js", + "name": "browserslist", "url": "Unknown", "description": "", "paths": [ @@ -2735,8 +2545,8 @@ ] }, { - "name": "bn.js", - "url": "https://github.com/indutny/bn.js", + "name": "buffer", + "url": "https://github.com/feross/buffer", "description": "", "paths": [ "." @@ -2746,8 +2556,8 @@ ] }, { - "name": "body-parser", - "url": "Unknown", + "name": "buffer-equal", + "url": "http://substack.net", "description": "", "paths": [ "." @@ -2757,52 +2567,52 @@ ] }, { - "name": "boolbase", - "url": "https://github.com/fb55/boolbase", + "name": "buffer-from", + "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "MIT" ] }, { - "name": "boom", - "url": "http://hueniverse.com", + "name": "buffer-json", + "url": "https://github.com/jprichardson/buffer-json#readme", "description": "", "paths": [ "." ], "licenses": [ - "BSD-3-Clause" + "MIT" ] }, { - "name": "boom", - "url": "Unknown", + "name": "buffer-xor", + "url": "https://github.com/crypto-browserify/buffer-xor", "description": "", "paths": [ "." ], "licenses": [ - "BSD-3-Clause" + "MIT" ] }, { - "name": "boom", - "url": "Unknown", + "name": "builtin-status-codes", + "url": "bendrucker.me", "description": "", "paths": [ "." ], "licenses": [ - "BSD-3-Clause" + "MIT" ] }, { - "name": "boxen", - "url": "sindresorhus.com", + "name": "bytes", + "url": "http://tjholowaychuk.com", "description": "", "paths": [ "." @@ -2812,8 +2622,8 @@ ] }, { - "name": "brace-expansion", - "url": "https://github.com/juliangruber/brace-expansion", + "name": "bytes", + "url": "http://tjholowaychuk.com", "description": "", "paths": [ "." @@ -2823,19 +2633,19 @@ ] }, { - "name": "braces", - "url": "https://github.com/jonschlinkert/braces", + "name": "cacache", + "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "braces", - "url": "https://github.com/micromatch/braces", + "name": "cache-base", + "url": "https://github.com/jonschlinkert/cache-base", "description": "", "paths": [ "." @@ -2845,8 +2655,8 @@ ] }, { - "name": "braces", - "url": "https://github.com/micromatch/braces", + "name": "cache-loader", + "url": "https://github.com/webpack-contrib/cache-loader", "description": "", "paths": [ "." @@ -2856,8 +2666,8 @@ ] }, { - "name": "brorand", - "url": "https://github.com/indutny/brorand", + "name": "caller-callsite", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -2867,8 +2677,8 @@ ] }, { - "name": "browser-env", - "url": "https://github.com/lukechilds/browser-env#readme", + "name": "caller-path", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -2878,30 +2688,30 @@ ] }, { - "name": "browser-process-hrtime", - "url": "Unknown", + "name": "callsites", + "url": "sindresorhus.com", "description": "", "paths": [ "." ], "licenses": [ - "BSD-2-Clause" + "MIT" ] }, { - "name": "browser-stdout", - "url": "Unknown", + "name": "camel-case", + "url": "https://github.com/blakeembrey/camel-case", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "MIT" ] }, { - "name": "browserify-aes", - "url": "https://github.com/crypto-browserify/browserify-aes", + "name": "camelcase", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -2911,8 +2721,8 @@ ] }, { - "name": "browserify-cipher", - "url": "Unknown", + "name": "camelcase", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -2922,8 +2732,8 @@ ] }, { - "name": "browserify-des", - "url": "https://github.com/crypto-browserify/browserify-des#readme", + "name": "caniuse-api", + "url": "Unknown", "description": "", "paths": [ "." @@ -2933,7 +2743,7 @@ ] }, { - "name": "browserify-rsa", + "name": "caniuse-api", "url": "Unknown", "description": "", "paths": [ @@ -2944,40 +2754,40 @@ ] }, { - "name": "browserify-sign", + "name": "caniuse-db", "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "CC-BY-4.0" ] }, { - "name": "browserify-zlib", - "url": "https://github.com/devongovett/browserify-zlib", + "name": "caniuse-lite", + "url": "http://beneb.info", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "CC-BY-4.0" ] }, { - "name": "browserslist", + "name": "caseless", "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "Apache-2.0" ] }, { - "name": "browserslist", + "name": "chalk", "url": "Unknown", "description": "", "paths": [ @@ -2988,8 +2798,8 @@ ] }, { - "name": "buffer", - "url": "https://github.com/feross/buffer", + "name": "chalk", + "url": "Unknown", "description": "", "paths": [ "." @@ -2999,8 +2809,8 @@ ] }, { - "name": "buffer-equal", - "url": "http://substack.net", + "name": "chalk", + "url": "Unknown", "description": "", "paths": [ "." @@ -3010,8 +2820,8 @@ ] }, { - "name": "buffer-from", - "url": "Unknown", + "name": "check-types", + "url": "https://gitlab.com/philbooth/check-types.js", "description": "", "paths": [ "." @@ -3021,8 +2831,8 @@ ] }, { - "name": "buffer-json", - "url": "https://github.com/jprichardson/buffer-json#readme", + "name": "chokidar", + "url": "https://github.com/paulmillr/chokidar", "description": "", "paths": [ "." @@ -3032,8 +2842,8 @@ ] }, { - "name": "buffer-xor", - "url": "https://github.com/crypto-browserify/buffer-xor", + "name": "chokidar", + "url": "https://github.com/paulmillr/chokidar", "description": "", "paths": [ "." @@ -3043,19 +2853,19 @@ ] }, { - "name": "builtin-modules", - "url": "sindresorhus.com", + "name": "chownr", + "url": "http://blog.izs.me/", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "builtin-status-codes", - "url": "bendrucker.me", + "name": "chrome-trace-event", + "url": "Unknown", "description": "", "paths": [ "." @@ -3065,8 +2875,8 @@ ] }, { - "name": "bytes", - "url": "http://tjholowaychuk.com", + "name": "ci-info", + "url": "https://github.com/watson/ci-info", "description": "", "paths": [ "." @@ -3076,8 +2886,8 @@ ] }, { - "name": "bytes", - "url": "http://tjholowaychuk.com", + "name": "cipher-base", + "url": "https://github.com/crypto-browserify/cipher-base#readme", "description": "", "paths": [ "." @@ -3087,19 +2897,19 @@ ] }, { - "name": "cacache", - "url": "Unknown", + "name": "clap", + "url": "https://github.com/lahmatiy/clap", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "MIT" ] }, { - "name": "cache-base", - "url": "https://github.com/jonschlinkert/cache-base", + "name": "class-utils", + "url": "https://github.com/jonschlinkert/class-utils", "description": "", "paths": [ "." @@ -3109,8 +2919,8 @@ ] }, { - "name": "cache-loader", - "url": "https://github.com/webpack-contrib/cache-loader", + "name": "clean-css", + "url": "https://github.com/jakubpawlowicz/clean-css", "description": "", "paths": [ "." @@ -3120,8 +2930,8 @@ ] }, { - "name": "caching-transform", - "url": "github.com/jamestalmage", + "name": "cli-boxes", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -3131,8 +2941,8 @@ ] }, { - "name": "caller-callsite", - "url": "sindresorhus.com", + "name": "clone", + "url": "http://paul.vorba.ch/", "description": "", "paths": [ "." @@ -3142,8 +2952,8 @@ ] }, { - "name": "caller-path", - "url": "http://sindresorhus.com", + "name": "co", + "url": "Unknown", "description": "", "paths": [ "." @@ -3153,8 +2963,8 @@ ] }, { - "name": "caller-path", - "url": "sindresorhus.com", + "name": "coa", + "url": "http://github.com/veged/coa", "description": "", "paths": [ "." @@ -3164,8 +2974,8 @@ ] }, { - "name": "callsites", - "url": "http://sindresorhus.com", + "name": "coa", + "url": "http://github.com/veged/coa", "description": "", "paths": [ "." @@ -3175,7 +2985,7 @@ ] }, { - "name": "callsites", + "name": "code-point-at", "url": "sindresorhus.com", "description": "", "paths": [ @@ -3186,8 +2996,8 @@ ] }, { - "name": "camel-case", - "url": "https://github.com/blakeembrey/camel-case", + "name": "collection-visit", + "url": "https://github.com/jonschlinkert/collection-visit", "description": "", "paths": [ "." @@ -3197,8 +3007,8 @@ ] }, { - "name": "camelcase", - "url": "http://sindresorhus.com", + "name": "color", + "url": "Unknown", "description": "", "paths": [ "." @@ -3208,8 +3018,8 @@ ] }, { - "name": "camelcase", - "url": "http://sindresorhus.com", + "name": "color", + "url": "Unknown", "description": "", "paths": [ "." @@ -3219,8 +3029,8 @@ ] }, { - "name": "camelcase", - "url": "sindresorhus.com", + "name": "color-convert", + "url": "Unknown", "description": "", "paths": [ "." @@ -3230,8 +3040,8 @@ ] }, { - "name": "camelcase", - "url": "sindresorhus.com", + "name": "color-name", + "url": "https://github.com/dfcreative/color-name", "description": "", "paths": [ "." @@ -3241,8 +3051,8 @@ ] }, { - "name": "caniuse-api", - "url": "Unknown", + "name": "color-name", + "url": "https://github.com/colorjs/color-name", "description": "", "paths": [ "." @@ -3252,7 +3062,7 @@ ] }, { - "name": "caniuse-api", + "name": "color-string", "url": "Unknown", "description": "", "paths": [ @@ -3263,52 +3073,52 @@ ] }, { - "name": "caniuse-db", + "name": "color-string", "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "CC-BY-4.0" + "MIT" ] }, { - "name": "caniuse-lite", - "url": "http://beneb.info", + "name": "colormin", + "url": "https://github.com/ben-eb/colormin", "description": "", "paths": [ "." ], "licenses": [ - "CC-BY-4.0" + "MIT" ] }, { - "name": "caseless", - "url": "Unknown", + "name": "colors", + "url": "https://github.com/Marak/colors.js", "description": "", "paths": [ "." ], "licenses": [ - "Apache-2.0" + "MIT" ] }, { - "name": "caseless", - "url": "Unknown", + "name": "combined-stream", + "url": "https://github.com/felixge/node-combined-stream", "description": "", "paths": [ "." ], "licenses": [ - "BSD-4-Clause" + "MIT" ] }, { - "name": "center-align", - "url": "https://github.com/jonschlinkert/center-align", + "name": "commander", + "url": "Unknown", "description": "", "paths": [ "." @@ -3318,8 +3128,8 @@ ] }, { - "name": "chai", - "url": "http://chaijs.com/", + "name": "commander", + "url": "Unknown", "description": "", "paths": [ "." @@ -3329,7 +3139,7 @@ ] }, { - "name": "chalk", + "name": "commander", "url": "Unknown", "description": "", "paths": [ @@ -3340,8 +3150,8 @@ ] }, { - "name": "chalk", - "url": "Unknown", + "name": "commondir", + "url": "http://substack.net", "description": "", "paths": [ "." @@ -3351,7 +3161,7 @@ ] }, { - "name": "chalk", + "name": "component-emitter", "url": "Unknown", "description": "", "paths": [ @@ -3362,8 +3172,8 @@ ] }, { - "name": "chardet", - "url": "https://github.com/runk/node-chardet", + "name": "compressible", + "url": "Unknown", "description": "", "paths": [ "." @@ -3373,8 +3183,8 @@ ] }, { - "name": "check-error", - "url": "http://alogicalparadox.com", + "name": "compression", + "url": "Unknown", "description": "", "paths": [ "." @@ -3384,8 +3194,8 @@ ] }, { - "name": "check-types", - "url": "https://gitlab.com/philbooth/check-types.js", + "name": "concat-map", + "url": "http://substack.net", "description": "", "paths": [ "." @@ -3395,8 +3205,8 @@ ] }, { - "name": "chokidar", - "url": "https://github.com/paulmillr/chokidar", + "name": "concat-stream", + "url": "Unknown", "description": "", "paths": [ "." @@ -3406,8 +3216,8 @@ ] }, { - "name": "chokidar", - "url": "https://github.com/paulmillr/chokidar", + "name": "connect", + "url": "http://tjholowaychuk.com", "description": "", "paths": [ "." @@ -3417,19 +3227,19 @@ ] }, { - "name": "chownr", - "url": "http://blog.izs.me/", + "name": "consola", + "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "MIT" ] }, { - "name": "chrome-trace-event", - "url": "Unknown", + "name": "console-browserify", + "url": "https://github.com/Raynos/console-browserify", "description": "", "paths": [ "." @@ -3439,19 +3249,19 @@ ] }, { - "name": "ci-info", - "url": "https://github.com/watson/ci-info", + "name": "console-control-strings", + "url": "http://re-becca.org/", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "ci-info", - "url": "https://github.com/watson/ci-info", + "name": "consolidate", + "url": "https://github.com/tj/consolidate.js", "description": "", "paths": [ "." @@ -3461,8 +3271,8 @@ ] }, { - "name": "cipher-base", - "url": "https://github.com/crypto-browserify/cipher-base#readme", + "name": "constants-browserify", + "url": "https://github.com/juliangruber/constants-browserify", "description": "", "paths": [ "." @@ -3472,8 +3282,8 @@ ] }, { - "name": "circular-json", - "url": "https://github.com/WebReflection/circular-json", + "name": "content-disposition", + "url": "Unknown", "description": "", "paths": [ "." @@ -3483,8 +3293,8 @@ ] }, { - "name": "clap", - "url": "https://github.com/lahmatiy/clap", + "name": "content-type", + "url": "Unknown", "description": "", "paths": [ "." @@ -3494,8 +3304,8 @@ ] }, { - "name": "class-utils", - "url": "https://github.com/jonschlinkert/class-utils", + "name": "convert-source-map", + "url": "https://github.com/thlorenz/convert-source-map", "description": "", "paths": [ "." @@ -3505,8 +3315,8 @@ ] }, { - "name": "clean-css", - "url": "https://github.com/jakubpawlowicz/clean-css", + "name": "cookie", + "url": "Unknown", "description": "", "paths": [ "." @@ -3516,8 +3326,8 @@ ] }, { - "name": "cli-boxes", - "url": "sindresorhus.com", + "name": "cookie", + "url": "Unknown", "description": "", "paths": [ "." @@ -3527,8 +3337,8 @@ ] }, { - "name": "cli-cursor", - "url": "sindresorhus.com", + "name": "cookie-signature", + "url": "Unknown", "description": "", "paths": [ "." @@ -3538,8 +3348,8 @@ ] }, { - "name": "cli-width", - "url": "https://github.com/knownasilya/cli-width", + "name": "copy-concurrently", + "url": "https://www.npmjs.com/package/copy-concurrently", "description": "", "paths": [ "." @@ -3549,41 +3359,41 @@ ] }, { - "name": "cliui", - "url": "Unknown", + "name": "copy-descriptor", + "url": "https://github.com/jonschlinkert/copy-descriptor", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "MIT" ] }, { - "name": "cliui", + "name": "core-js", "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "MIT" ] }, { - "name": "cliui", + "name": "core-js-compat", "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "MIT" ] }, { - "name": "clone", - "url": "http://paul.vorba.ch/", + "name": "core-js-pure", + "url": "Unknown", "description": "", "paths": [ "." @@ -3593,8 +3403,8 @@ ] }, { - "name": "co", - "url": "Unknown", + "name": "core-util-is", + "url": "http://blog.izs.me/", "description": "", "paths": [ "." @@ -3604,8 +3414,8 @@ ] }, { - "name": "coa", - "url": "http://github.com/veged/coa", + "name": "cosmiconfig", + "url": "https://github.com/davidtheclark/cosmiconfig#readme", "description": "", "paths": [ "." @@ -3615,8 +3425,8 @@ ] }, { - "name": "coa", - "url": "http://github.com/veged/coa", + "name": "cosmiconfig", + "url": "https://github.com/davidtheclark/cosmiconfig#readme", "description": "", "paths": [ "." @@ -3626,8 +3436,8 @@ ] }, { - "name": "code-point-at", - "url": "sindresorhus.com", + "name": "create-ecdh", + "url": "https://github.com/crypto-browserify/createECDH", "description": "", "paths": [ "." @@ -3637,8 +3447,8 @@ ] }, { - "name": "codecov.io", - "url": "https://github.com/cainus/codecov.io", + "name": "create-hash", + "url": "https://github.com/crypto-browserify/createHash", "description": "", "paths": [ "." @@ -3648,8 +3458,8 @@ ] }, { - "name": "collection-visit", - "url": "https://github.com/jonschlinkert/collection-visit", + "name": "create-hmac", + "url": "https://github.com/crypto-browserify/createHmac", "description": "", "paths": [ "." @@ -3659,8 +3469,8 @@ ] }, { - "name": "color", - "url": "Unknown", + "name": "cross-spawn", + "url": "http://indigounited.com", "description": "", "paths": [ "." @@ -3670,8 +3480,8 @@ ] }, { - "name": "color", - "url": "Unknown", + "name": "cross-spawn", + "url": "https://github.com/moxystudio/node-cross-spawn", "description": "", "paths": [ "." @@ -3681,19 +3491,19 @@ ] }, { - "name": "color-convert", + "name": "cryptiles", "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "BSD-3-Clause" ] }, { - "name": "color-name", - "url": "https://github.com/dfcreative/color-name", + "name": "crypto-browserify", + "url": "https://github.com/crypto-browserify/crypto-browserify", "description": "", "paths": [ "." @@ -3703,19 +3513,19 @@ ] }, { - "name": "color-name", - "url": "https://github.com/colorjs/color-name", + "name": "css-blank-pseudo", + "url": "https://github.com/csstools/css-blank-pseudo#readme", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "CC0-1.0" ] }, { - "name": "color-string", - "url": "Unknown", + "name": "css-color-names", + "url": "http://www.daveeddy.com", "description": "", "paths": [ "." @@ -3725,8 +3535,8 @@ ] }, { - "name": "color-string", - "url": "Unknown", + "name": "css-declaration-sorter", + "url": "https://selwyn.cc/", "description": "", "paths": [ "." @@ -3736,19 +3546,19 @@ ] }, { - "name": "colormin", - "url": "https://github.com/ben-eb/colormin", + "name": "css-has-pseudo", + "url": "https://github.com/csstools/css-has-pseudo#readme", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "CC0-1.0" ] }, { - "name": "colors", - "url": "https://github.com/Marak/colors.js", + "name": "css-loader", + "url": "https://github.com/webpack-contrib/css-loader", "description": "", "paths": [ "." @@ -3758,41 +3568,41 @@ ] }, { - "name": "combined-stream", - "url": "https://github.com/felixge/node-combined-stream", + "name": "css-prefers-color-scheme", + "url": "https://github.com/csstools/css-prefers-color-scheme#readme", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "CC0-1.0" ] }, { - "name": "combined-stream", - "url": "https://github.com/felixge/node-combined-stream", + "name": "css-select", + "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "BSD-2-Clause" ] }, { - "name": "commander", + "name": "css-select", "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "BSD-2-Clause" ] }, { - "name": "commander", - "url": "Unknown", + "name": "css-select-base-adapter", + "url": "https://github.com/nrkn/css-select-base-adapter#readme", "description": "", "paths": [ "." @@ -3802,8 +3612,8 @@ ] }, { - "name": "commander", - "url": "Unknown", + "name": "css-tree", + "url": "https://github.com/csstree/csstree", "description": "", "paths": [ "." @@ -3813,8 +3623,8 @@ ] }, { - "name": "commander", - "url": "Unknown", + "name": "css-tree", + "url": "https://github.com/csstree/csstree", "description": "", "paths": [ "." @@ -3824,8 +3634,8 @@ ] }, { - "name": "commondir", - "url": "http://substack.net", + "name": "css-unit-converter", + "url": "https://github.com/andyjansson/css-unit-converter", "description": "", "paths": [ "." @@ -3835,8 +3645,8 @@ ] }, { - "name": "component-emitter", - "url": "Unknown", + "name": "css-url-regex", + "url": "https://github.com/johnotander/css-url-regex", "description": "", "paths": [ "." @@ -3846,30 +3656,30 @@ ] }, { - "name": "compressible", - "url": "Unknown", + "name": "css-what", + "url": "http://feedic.com", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "BSD-2-Clause" ] }, { - "name": "compression", - "url": "Unknown", + "name": "cssdb", + "url": "https://github.com/csstools/cssdb#readme", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "CC0-1.0" ] }, { - "name": "concat-map", - "url": "http://substack.net", + "name": "cssesc", + "url": "https://mths.be/cssesc", "description": "", "paths": [ "." @@ -3879,8 +3689,8 @@ ] }, { - "name": "concat-stream", - "url": "Unknown", + "name": "cssesc", + "url": "https://mths.be/cssesc", "description": "", "paths": [ "." @@ -3890,8 +3700,8 @@ ] }, { - "name": "concat-stream", - "url": "Unknown", + "name": "cssnano", + "url": "https://github.com/ben-eb/cssnano", "description": "", "paths": [ "." @@ -3901,8 +3711,8 @@ ] }, { - "name": "connect", - "url": "http://tjholowaychuk.com", + "name": "cssnano", + "url": "https://github.com/cssnano/cssnano", "description": "", "paths": [ "." @@ -3912,8 +3722,8 @@ ] }, { - "name": "consola", - "url": "Unknown", + "name": "cssnano-preset-default", + "url": "https://github.com/cssnano/cssnano", "description": "", "paths": [ "." @@ -3923,8 +3733,8 @@ ] }, { - "name": "console-browserify", - "url": "https://github.com/Raynos/console-browserify", + "name": "cssnano-util-get-arguments", + "url": "https://github.com/cssnano/cssnano", "description": "", "paths": [ "." @@ -3934,19 +3744,19 @@ ] }, { - "name": "console-control-strings", - "url": "http://re-becca.org/", + "name": "cssnano-util-get-match", + "url": "https://github.com/cssnano/cssnano", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "MIT" ] }, { - "name": "consolidate", - "url": "https://github.com/tj/consolidate.js", + "name": "cssnano-util-raw-cache", + "url": "https://github.com/cssnano/cssnano", "description": "", "paths": [ "." @@ -3956,8 +3766,8 @@ ] }, { - "name": "constants-browserify", - "url": "https://github.com/juliangruber/constants-browserify", + "name": "cssnano-util-same-parent", + "url": "https://github.com/cssnano/cssnano", "description": "", "paths": [ "." @@ -3967,8 +3777,8 @@ ] }, { - "name": "contains-path", - "url": "https://github.com/jonschlinkert/contains-path", + "name": "csso", + "url": "https://github.com/css/csso", "description": "", "paths": [ "." @@ -3978,8 +3788,8 @@ ] }, { - "name": "content-disposition", - "url": "Unknown", + "name": "csso", + "url": "https://github.com/css/csso", "description": "", "paths": [ "." @@ -3989,8 +3799,8 @@ ] }, { - "name": "content-type", - "url": "Unknown", + "name": "cuint", + "url": "https://github.com/pierrec/js-cuint", "description": "", "paths": [ "." @@ -4000,19 +3810,19 @@ ] }, { - "name": "content-type-parser", - "url": "https://domenic.me/", + "name": "cyclist", + "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "mit*" ] }, { - "name": "convert-source-map", - "url": "https://github.com/thlorenz/convert-source-map", + "name": "dashdash", + "url": "http://trentm.com", "description": "", "paths": [ "." @@ -4022,8 +3832,8 @@ ] }, { - "name": "convert-source-map", - "url": "https://github.com/thlorenz/convert-source-map", + "name": "data2xml", + "url": "https://github.com/chilts/data2xml", "description": "", "paths": [ "." @@ -4033,7 +3843,7 @@ ] }, { - "name": "cookie", + "name": "date-fns", "url": "Unknown", "description": "", "paths": [ @@ -4044,8 +3854,8 @@ ] }, { - "name": "cookie", - "url": "Unknown", + "name": "date-now", + "url": "https://github.com/Colingo/date-now", "description": "", "paths": [ "." @@ -4055,8 +3865,8 @@ ] }, { - "name": "cookie-signature", - "url": "Unknown", + "name": "de-indent", + "url": "https://github.com/yyx990803/de-indent#readme", "description": "", "paths": [ "." @@ -4066,19 +3876,19 @@ ] }, { - "name": "copy-concurrently", - "url": "https://www.npmjs.com/package/copy-concurrently", + "name": "debug", + "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "MIT" ] }, { - "name": "copy-descriptor", - "url": "https://github.com/jonschlinkert/copy-descriptor", + "name": "debug", + "url": "Unknown", "description": "", "paths": [ "." @@ -4088,7 +3898,7 @@ ] }, { - "name": "core-js", + "name": "debug", "url": "Unknown", "description": "", "paths": [ @@ -4099,8 +3909,8 @@ ] }, { - "name": "core-js-compat", - "url": "Unknown", + "name": "decamelize", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -4110,8 +3920,8 @@ ] }, { - "name": "core-js-pure", - "url": "Unknown", + "name": "decode-uri-component", + "url": "github.com/SamVerschueren", "description": "", "paths": [ "." @@ -4121,8 +3931,8 @@ ] }, { - "name": "core-util-is", - "url": "http://blog.izs.me/", + "name": "decouple", + "url": "Unknown", "description": "", "paths": [ "." @@ -4132,8 +3942,8 @@ ] }, { - "name": "cosmiconfig", - "url": "https://github.com/davidtheclark/cosmiconfig#readme", + "name": "deep-extend", + "url": "https://github.com/unclechu/node-deep-extend", "description": "", "paths": [ "." @@ -4143,8 +3953,8 @@ ] }, { - "name": "cosmiconfig", - "url": "https://github.com/davidtheclark/cosmiconfig#readme", + "name": "deepmerge", + "url": "https://github.com/TehShrike/deepmerge", "description": "", "paths": [ "." @@ -4154,19 +3964,19 @@ ] }, { - "name": "coveralls", + "name": "define-properties", "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "BSD-2-Clause" + "MIT" ] }, { - "name": "create-ecdh", - "url": "https://github.com/crypto-browserify/createECDH", + "name": "define-property", + "url": "https://github.com/jonschlinkert/define-property", "description": "", "paths": [ "." @@ -4176,8 +3986,8 @@ ] }, { - "name": "create-hash", - "url": "https://github.com/crypto-browserify/createHash", + "name": "define-property", + "url": "https://github.com/jonschlinkert/define-property", "description": "", "paths": [ "." @@ -4187,8 +3997,8 @@ ] }, { - "name": "create-hmac", - "url": "https://github.com/crypto-browserify/createHmac", + "name": "define-property", + "url": "https://github.com/jonschlinkert/define-property", "description": "", "paths": [ "." @@ -4198,8 +4008,8 @@ ] }, { - "name": "cross-spawn", - "url": "http://indigounited.com", + "name": "defined", + "url": "https://github.com/substack/defined", "description": "", "paths": [ "." @@ -4209,8 +4019,8 @@ ] }, { - "name": "cross-spawn", - "url": "http://indigounited.com", + "name": "defu", + "url": "Unknown", "description": "", "paths": [ "." @@ -4220,8 +4030,8 @@ ] }, { - "name": "cross-spawn", - "url": "https://github.com/moxystudio/node-cross-spawn", + "name": "delayed-stream", + "url": "https://github.com/felixge/node-delayed-stream", "description": "", "paths": [ "." @@ -4231,30 +4041,30 @@ ] }, { - "name": "cryptiles", - "url": "http://hueniverse.com", + "name": "delegates", + "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "BSD-3-Clause" + "MIT" ] }, { - "name": "cryptiles", + "name": "depd", "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "BSD-3-Clause" + "MIT" ] }, { - "name": "crypto-browserify", - "url": "https://github.com/crypto-browserify/crypto-browserify", + "name": "des.js", + "url": "https://github.com/indutny/des.js#readme", "description": "", "paths": [ "." @@ -4264,19 +4074,19 @@ ] }, { - "name": "css-blank-pseudo", - "url": "https://github.com/csstools/css-blank-pseudo#readme", + "name": "destroy", + "url": "http://jongleberry.com", "description": "", "paths": [ "." ], "licenses": [ - "CC0-1.0" + "MIT" ] }, { - "name": "css-color-names", - "url": "http://www.daveeddy.com", + "name": "detect-indent", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -4286,30 +4096,30 @@ ] }, { - "name": "css-declaration-sorter", - "url": "https://selwyn.cc/", + "name": "detect-libc", + "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "Apache-2.0" ] }, { - "name": "css-has-pseudo", - "url": "https://github.com/csstools/css-has-pseudo#readme", + "name": "diffie-hellman", + "url": "https://github.com/crypto-browserify/diffie-hellman", "description": "", "paths": [ "." ], "licenses": [ - "CC0-1.0" + "MIT" ] }, { - "name": "css-loader", - "url": "https://github.com/webpack-contrib/css-loader", + "name": "dom-converter", + "url": "Unknown", "description": "", "paths": [ "." @@ -4319,7 +4129,7 @@ ] }, { - "name": "css-parse", + "name": "dom-serializer", "url": "Unknown", "description": "", "paths": [ @@ -4330,29 +4140,29 @@ ] }, { - "name": "css-prefers-color-scheme", - "url": "https://github.com/csstools/css-prefers-color-scheme#readme", + "name": "dom-walk", + "url": "https://github.com/Raynos/dom-walk", "description": "", "paths": [ "." ], "licenses": [ - "CC0-1.0" + "MIT" ] }, { - "name": "css-select", - "url": "Unknown", + "name": "domain-browser", + "url": "https://github.com/bevry/domain-browser", "description": "", "paths": [ "." ], "licenses": [ - "BSD-2-Clause" + "MIT" ] }, { - "name": "css-select", + "name": "domelementtype", "url": "Unknown", "description": "", "paths": [ @@ -4363,52 +4173,52 @@ ] }, { - "name": "css-select-base-adapter", - "url": "https://github.com/nrkn/css-select-base-adapter#readme", + "name": "domelementtype", + "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "BSD-2-Clause" ] }, { - "name": "css-tree", - "url": "https://github.com/csstree/csstree", + "name": "domhandler", + "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "BSD-2-Clause" ] }, { - "name": "css-tree", - "url": "https://github.com/csstree/csstree", + "name": "domutils", + "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "BSD-2-Clause" ] }, { - "name": "css-unit-converter", - "url": "https://github.com/andyjansson/css-unit-converter", + "name": "domutils", + "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "BSD-2-Clause" ] }, { - "name": "css-url-regex", - "url": "https://github.com/johnotander/css-url-regex", + "name": "dot-prop", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -4418,30 +4228,30 @@ ] }, { - "name": "css-what", - "url": "http://feedic.com", + "name": "duplexer", + "url": "https://github.com/Raynos/duplexer", "description": "", "paths": [ "." ], "licenses": [ - "BSD-2-Clause" + "MIT" ] }, { - "name": "cssdb", - "url": "https://github.com/csstools/cssdb#readme", + "name": "duplexify", + "url": "https://github.com/mafintosh/duplexify", "description": "", "paths": [ "." ], "licenses": [ - "CC0-1.0" + "MIT" ] }, { - "name": "cssesc", - "url": "https://mths.be/cssesc", + "name": "ecc-jsbn", + "url": "https://github.com/quartzjer/ecc-jsbn", "description": "", "paths": [ "." @@ -4451,8 +4261,8 @@ ] }, { - "name": "cssesc", - "url": "https://mths.be/cssesc", + "name": "ee-first", + "url": "http://jongleberry.com", "description": "", "paths": [ "." @@ -4462,30 +4272,30 @@ ] }, { - "name": "cssnano", - "url": "https://github.com/ben-eb/cssnano", + "name": "ejs", + "url": "https://github.com/mde/ejs", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "Apache-2.0" ] }, { - "name": "cssnano", - "url": "https://github.com/cssnano/cssnano", + "name": "electron-to-chromium", + "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "cssnano-preset-default", - "url": "https://github.com/cssnano/cssnano", + "name": "elliptic", + "url": "https://github.com/indutny/elliptic", "description": "", "paths": [ "." @@ -4495,8 +4305,8 @@ ] }, { - "name": "cssnano-util-get-arguments", - "url": "https://github.com/cssnano/cssnano", + "name": "emitter", + "url": "Unknown", "description": "", "paths": [ "." @@ -4506,8 +4316,8 @@ ] }, { - "name": "cssnano-util-get-match", - "url": "https://github.com/cssnano/cssnano", + "name": "emoji-regex", + "url": "https://mths.be/emoji-regex", "description": "", "paths": [ "." @@ -4517,8 +4327,8 @@ ] }, { - "name": "cssnano-util-raw-cache", - "url": "https://github.com/cssnano/cssnano", + "name": "emojis-list", + "url": "https://github.com/Kikobeats/emojis-list", "description": "", "paths": [ "." @@ -4528,8 +4338,8 @@ ] }, { - "name": "cssnano-util-same-parent", - "url": "https://github.com/cssnano/cssnano", + "name": "encodeurl", + "url": "Unknown", "description": "", "paths": [ "." @@ -4539,8 +4349,8 @@ ] }, { - "name": "csso", - "url": "https://github.com/css/csso", + "name": "end-of-stream", + "url": "https://github.com/mafintosh/end-of-stream", "description": "", "paths": [ "." @@ -4550,8 +4360,8 @@ ] }, { - "name": "csso", - "url": "https://github.com/css/csso", + "name": "enhanced-resolve", + "url": "http://github.com/webpack/enhanced-resolve", "description": "", "paths": [ "." @@ -4561,8 +4371,8 @@ ] }, { - "name": "cssom", - "url": "Unknown", + "name": "enhanced-resolve", + "url": "http://github.com/webpack/enhanced-resolve", "description": "", "paths": [ "." @@ -4572,30 +4382,30 @@ ] }, { - "name": "cssstyle", - "url": "https://github.com/chad3814/CSSStyleDeclaration", + "name": "entities", + "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "BSD-2-Clause" ] }, { - "name": "ctype", - "url": "https://github.com/rmustacc/node-ctype", + "name": "entities", + "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "BSD-2-Clause" ] }, { - "name": "cuint", - "url": "https://github.com/pierrec/js-cuint", + "name": "errno", + "url": "Unknown", "description": "", "paths": [ "." @@ -4605,19 +4415,19 @@ ] }, { - "name": "cyclist", + "name": "error-ex", "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "mit*" + "MIT" ] }, { - "name": "dashdash", - "url": "http://trentm.com", + "name": "error-stack-parser", + "url": "https://www.stacktracejs.com/", "description": "", "paths": [ "." @@ -4627,8 +4437,8 @@ ] }, { - "name": "data2xml", - "url": "https://github.com/chilts/data2xml", + "name": "es-abstract", + "url": "http://ljharb.codes", "description": "", "paths": [ "." @@ -4638,7 +4448,7 @@ ] }, { - "name": "date-fns", + "name": "es-to-primitive", "url": "Unknown", "description": "", "paths": [ @@ -4649,8 +4459,8 @@ ] }, { - "name": "date-now", - "url": "https://github.com/Colingo/date-now", + "name": "es6-promise", + "url": "Conversion to ES6 API by Jake Archibald", "description": "", "paths": [ "." @@ -4660,8 +4470,8 @@ ] }, { - "name": "de-indent", - "url": "https://github.com/yyx990803/de-indent#readme", + "name": "escape-html", + "url": "Unknown", "description": "", "paths": [ "." @@ -4671,8 +4481,8 @@ ] }, { - "name": "debug", - "url": "Unknown", + "name": "escape-string-regexp", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -4682,18 +4492,18 @@ ] }, { - "name": "debug", - "url": "Unknown", + "name": "eslint-scope", + "url": "http://github.com/eslint/eslint-scope", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "BSD-2-Clause" ] }, { - "name": "debug", + "name": "esm", "url": "Unknown", "description": "", "paths": [ @@ -4704,62 +4514,62 @@ ] }, { - "name": "debug", - "url": "Unknown", + "name": "esprima", + "url": "http://esprima.org/", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "BSD-2-Clause" ] }, { - "name": "debug", - "url": "Unknown", + "name": "esprima", + "url": "http://esprima.org/", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "BSD-2-Clause" ] }, { - "name": "debug-log", - "url": "sindresorhus.com", + "name": "esrecurse", + "url": "https://github.com/estools/esrecurse", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "BSD-2-Clause" ] }, { - "name": "decamelize", - "url": "sindresorhus.com", + "name": "estraverse", + "url": "https://github.com/estools/estraverse", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "BSD-2-Clause" ] }, { - "name": "decode-uri-component", - "url": "github.com/SamVerschueren", + "name": "esutils", + "url": "https://github.com/estools/esutils", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "BSD-2-Clause" ] }, { - "name": "decouple", + "name": "etag", "url": "Unknown", "description": "", "paths": [ @@ -4770,7 +4580,7 @@ ] }, { - "name": "deep-eql", + "name": "eventemitter3", "url": "Unknown", "description": "", "paths": [ @@ -4781,8 +4591,8 @@ ] }, { - "name": "deep-equal", - "url": "http://substack.net", + "name": "events", + "url": "http://jeditoolkit.com", "description": "", "paths": [ "." @@ -4792,8 +4602,8 @@ ] }, { - "name": "deep-extend", - "url": "https://github.com/unclechu/node-deep-extend", + "name": "eventsource-polyfill", + "url": "https://github.com/amvtek/EventSource", "description": "", "paths": [ "." @@ -4803,8 +4613,8 @@ ] }, { - "name": "deep-is", - "url": "http://thlorenz.com", + "name": "evp_bytestokey", + "url": "https://github.com/crypto-browserify/EVP_BytesToKey", "description": "", "paths": [ "." @@ -4814,8 +4624,8 @@ ] }, { - "name": "deepmerge", - "url": "https://github.com/TehShrike/deepmerge", + "name": "execa", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -4825,8 +4635,8 @@ ] }, { - "name": "default-require-extensions", - "url": "github.com/jamestalmage", + "name": "execa", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -4836,7 +4646,7 @@ ] }, { - "name": "define-properties", + "name": "exif-parser", "url": "Unknown", "description": "", "paths": [ @@ -4847,8 +4657,8 @@ ] }, { - "name": "define-property", - "url": "https://github.com/jonschlinkert/define-property", + "name": "exit", + "url": "https://github.com/cowboy/node-exit", "description": "", "paths": [ "." @@ -4858,8 +4668,8 @@ ] }, { - "name": "define-property", - "url": "https://github.com/jonschlinkert/define-property", + "name": "expand-brackets", + "url": "https://github.com/jonschlinkert/expand-brackets", "description": "", "paths": [ "." @@ -4869,8 +4679,8 @@ ] }, { - "name": "define-property", - "url": "https://github.com/jonschlinkert/define-property", + "name": "expand-brackets", + "url": "https://github.com/jonschlinkert/expand-brackets", "description": "", "paths": [ "." @@ -4880,8 +4690,8 @@ ] }, { - "name": "defined", - "url": "https://github.com/substack/defined", + "name": "expand-range", + "url": "https://github.com/jonschlinkert/expand-range", "description": "", "paths": [ "." @@ -4891,8 +4701,8 @@ ] }, { - "name": "defined", - "url": "https://github.com/substack/defined", + "name": "express", + "url": "http://expressjs.com/", "description": "", "paths": [ "." @@ -4902,8 +4712,8 @@ ] }, { - "name": "defu", - "url": "Unknown", + "name": "extend", + "url": "http://www.justmoon.net", "description": "", "paths": [ "." @@ -4913,8 +4723,8 @@ ] }, { - "name": "del", - "url": "sindresorhus.com", + "name": "extend-shallow", + "url": "https://github.com/jonschlinkert/extend-shallow", "description": "", "paths": [ "." @@ -4924,8 +4734,8 @@ ] }, { - "name": "delayed-stream", - "url": "https://github.com/felixge/node-delayed-stream", + "name": "extend-shallow", + "url": "https://github.com/jonschlinkert/extend-shallow", "description": "", "paths": [ "." @@ -4935,8 +4745,8 @@ ] }, { - "name": "delayed-stream", - "url": "https://github.com/felixge/node-delayed-stream", + "name": "extglob", + "url": "https://github.com/jonschlinkert/extglob", "description": "", "paths": [ "." @@ -4946,8 +4756,8 @@ ] }, { - "name": "delegates", - "url": "Unknown", + "name": "extglob", + "url": "https://github.com/micromatch/extglob", "description": "", "paths": [ "." @@ -4957,8 +4767,8 @@ ] }, { - "name": "depd", - "url": "Unknown", + "name": "extract-css-chunks-webpack-plugin", + "url": "http://github.com/faceyspacey/extract-css-chunks-webpack-plugin", "description": "", "paths": [ "." @@ -4968,8 +4778,8 @@ ] }, { - "name": "des.js", - "url": "https://github.com/indutny/des.js#readme", + "name": "extsprintf", + "url": "Unknown", "description": "", "paths": [ "." @@ -4979,8 +4789,8 @@ ] }, { - "name": "destroy", - "url": "http://jongleberry.com", + "name": "extsprintf", + "url": "Unknown", "description": "", "paths": [ "." @@ -4990,8 +4800,8 @@ ] }, { - "name": "detect-indent", - "url": "sindresorhus.com", + "name": "fast-deep-equal", + "url": "https://github.com/epoberezkin/fast-deep-equal#readme", "description": "", "paths": [ "." @@ -5001,8 +4811,8 @@ ] }, { - "name": "detect-indent", - "url": "sindresorhus.com", + "name": "fast-deep-equal", + "url": "https://github.com/epoberezkin/fast-deep-equal#readme", "description": "", "paths": [ "." @@ -5012,30 +4822,30 @@ ] }, { - "name": "detect-libc", - "url": "Unknown", + "name": "fast-json-stable-stringify", + "url": "https://github.com/epoberezkin/fast-json-stable-stringify", "description": "", "paths": [ "." ], "licenses": [ - "Apache-2.0" + "MIT" ] }, { - "name": "diff", + "name": "figgy-pudding", "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "BSD-3-Clause" + "ISC" ] }, { - "name": "diffie-hellman", - "url": "https://github.com/crypto-browserify/diffie-hellman", + "name": "figures", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -5045,30 +4855,30 @@ ] }, { - "name": "doctrine", - "url": "https://github.com/eslint/doctrine", + "name": "file-loader", + "url": "https://github.com/webpack-contrib/file-loader", "description": "", "paths": [ "." ], "licenses": [ - "BSD-2-Clause" + "MIT" ] }, { - "name": "doctrine", - "url": "https://github.com/eslint/doctrine", + "name": "file-type", + "url": "sindresorhus.com", "description": "", "paths": [ "." ], "licenses": [ - "Apache-2.0" + "MIT" ] }, { - "name": "dom-converter", - "url": "Unknown", + "name": "filename-regex", + "url": "https://github.com/regexhq/filename-regex", "description": "", "paths": [ "." @@ -5078,20 +4888,20 @@ ] }, { - "name": "dom-serializer", - "url": "Unknown", + "name": "filesize", + "url": "https://filesizejs.com/", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "BSD-3-Clause" ] }, { - "name": "dom-walk", - "url": "https://github.com/Raynos/dom-walk", - "description": "", + "name": "fill-range", + "url": "https://github.com/jonschlinkert/fill-range", + "description": "", "paths": [ "." ], @@ -5100,8 +4910,8 @@ ] }, { - "name": "domain-browser", - "url": "https://github.com/bevry/domain-browser", + "name": "fill-range", + "url": "https://github.com/jonschlinkert/fill-range", "description": "", "paths": [ "." @@ -5111,30 +4921,30 @@ ] }, { - "name": "domelementtype", - "url": "Unknown", + "name": "fill-range", + "url": "https://github.com/jonschlinkert/fill-range", "description": "", "paths": [ "." ], "licenses": [ - "BSD-2-Clause" + "MIT" ] }, { - "name": "domelementtype", + "name": "finalhandler", "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "BSD-2-Clause" + "MIT" ] }, { - "name": "domexception", - "url": "https://domenic.me/", + "name": "find-cache-dir", + "url": "Unknown", "description": "", "paths": [ "." @@ -5144,41 +4954,41 @@ ] }, { - "name": "domhandler", - "url": "Unknown", + "name": "find-up", + "url": "sindresorhus.com", "description": "", "paths": [ "." ], "licenses": [ - "BSD-2-Clause" + "MIT" ] }, { - "name": "domutils", - "url": "Unknown", + "name": "flatten", + "url": "http://jesusabdullah.net", "description": "", "paths": [ "." ], "licenses": [ - "BSD-2-Clause" + "MIT" ] }, { - "name": "domutils", - "url": "Unknown", + "name": "flush-write-stream", + "url": "https://github.com/mafintosh/flush-write-stream", "description": "", "paths": [ "." ], "licenses": [ - "BSD-2-Clause" + "MIT" ] }, { - "name": "dot-prop", - "url": "sindresorhus.com", + "name": "follow-redirects", + "url": "https://github.com/olalonde/follow-redirects", "description": "", "paths": [ "." @@ -5188,8 +4998,8 @@ ] }, { - "name": "duplexer", - "url": "https://github.com/Raynos/duplexer", + "name": "for-each", + "url": "https://github.com/Raynos/for-each", "description": "", "paths": [ "." @@ -5199,8 +5009,8 @@ ] }, { - "name": "duplexify", - "url": "https://github.com/mafintosh/duplexify", + "name": "for-in", + "url": "https://github.com/jonschlinkert/for-in", "description": "", "paths": [ "." @@ -5210,8 +5020,8 @@ ] }, { - "name": "ecc-jsbn", - "url": "https://github.com/quartzjer/ecc-jsbn", + "name": "for-own", + "url": "https://github.com/jonschlinkert/for-own", "description": "", "paths": [ "." @@ -5221,41 +5031,41 @@ ] }, { - "name": "ee-first", - "url": "http://jongleberry.com", + "name": "forever-agent", + "url": "http://www.futurealoof.com", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "Apache-2.0" ] }, { - "name": "ejs", - "url": "https://github.com/mde/ejs", + "name": "form-data", + "url": "http://debuggable.com/", "description": "", "paths": [ "." ], "licenses": [ - "Apache-2.0" + "MIT" ] }, { - "name": "electron-to-chromium", + "name": "forwarded", "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "MIT" ] }, { - "name": "elliptic", - "url": "https://github.com/indutny/elliptic", + "name": "fragment-cache", + "url": "https://github.com/jonschlinkert/fragment-cache", "description": "", "paths": [ "." @@ -5265,8 +5075,8 @@ ] }, { - "name": "emitter", - "url": "Unknown", + "name": "fresh", + "url": "http://tjholowaychuk.com", "description": "", "paths": [ "." @@ -5276,8 +5086,8 @@ ] }, { - "name": "emoji-regex", - "url": "https://mths.be/emoji-regex", + "name": "from2", + "url": "https://github.com/hughsk/from2", "description": "", "paths": [ "." @@ -5287,8 +5097,8 @@ ] }, { - "name": "emojis-list", - "url": "https://github.com/Kikobeats/emojis-list", + "name": "front-matter", + "url": "https://github.com/jxson/front-matter", "description": "", "paths": [ "." @@ -5298,8 +5108,8 @@ ] }, { - "name": "encodeurl", - "url": "Unknown", + "name": "fs-extra", + "url": "https://github.com/jprichardson/node-fs-extra", "description": "", "paths": [ "." @@ -5309,8 +5119,8 @@ ] }, { - "name": "end-of-stream", - "url": "https://github.com/mafintosh/end-of-stream", + "name": "fs-extra", + "url": "https://github.com/jprichardson/node-fs-extra", "description": "", "paths": [ "." @@ -5320,8 +5130,8 @@ ] }, { - "name": "enhanced-resolve", - "url": "http://github.com/webpack/enhanced-resolve", + "name": "fs-extra", + "url": "https://github.com/jprichardson/node-fs-extra", "description": "", "paths": [ "." @@ -5331,8 +5141,8 @@ ] }, { - "name": "enhanced-resolve", - "url": "http://github.com/webpack/enhanced-resolve", + "name": "fs-extra", + "url": "https://github.com/jprichardson/node-fs-extra", "description": "", "paths": [ "." @@ -5342,63 +5152,63 @@ ] }, { - "name": "entities", - "url": "Unknown", + "name": "fs-minipass", + "url": "https://github.com/npm/fs-minipass#readme", "description": "", "paths": [ "." ], "licenses": [ - "BSD-2-Clause" + "ISC" ] }, { - "name": "entities", - "url": "Unknown", + "name": "fs-write-stream-atomic", + "url": "https://github.com/npm/fs-write-stream-atomic", "description": "", "paths": [ "." ], "licenses": [ - "BSD-2-Clause" + "ISC" ] }, { - "name": "errno", - "url": "Unknown", + "name": "fs.realpath", + "url": "http://blog.izs.me/", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "error-ex", - "url": "Unknown", + "name": "fsevents", + "url": "", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "unknown" ] }, { - "name": "error-stack-parser", - "url": "https://www.stacktracejs.com/", + "name": "fsevents", + "url": "", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "unknown" ] }, { - "name": "es-abstract", - "url": "http://ljharb.codes", + "name": "function-bind", + "url": "https://github.com/Raynos/function-bind", "description": "", "paths": [ "." @@ -5408,19 +5218,19 @@ ] }, { - "name": "es-to-primitive", - "url": "Unknown", + "name": "gauge", + "url": "https://github.com/iarna/gauge", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "es6-promise", - "url": "Conversion to ES6 API by Jake Archibald", + "name": "get-stream", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -5430,8 +5240,8 @@ ] }, { - "name": "escape-html", - "url": "Unknown", + "name": "get-stream", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -5441,8 +5251,8 @@ ] }, { - "name": "escape-string-regexp", - "url": "sindresorhus.com", + "name": "get-value", + "url": "https://github.com/jonschlinkert/get-value", "description": "", "paths": [ "." @@ -5452,41 +5262,41 @@ ] }, { - "name": "escodegen", - "url": "http://github.com/estools/escodegen", + "name": "getpass", + "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "BSD-2-Clause" + "MIT" ] }, { - "name": "eslint", - "url": "https://eslint.org/", + "name": "glob", + "url": "http://blog.izs.me/", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "eslint-config-standard", - "url": "https://github.com/feross/eslint-config-standard", + "name": "glob", + "url": "http://blog.izs.me/", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "eslint-import-resolver-node", - "url": "https://github.com/benmosher/eslint-plugin-import", + "name": "glob-base", + "url": "https://github.com/jonschlinkert/glob-base", "description": "", "paths": [ "." @@ -5496,30 +5306,30 @@ ] }, { - "name": "eslint-loader", - "url": "Unknown", + "name": "glob-parent", + "url": "https://github.com/es128/glob-parent", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "eslint-module-utils", - "url": "https://github.com/benmosher/eslint-plugin-import#readme", + "name": "glob-parent", + "url": "https://github.com/es128/glob-parent", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "eslint-plugin-html", - "url": "https://github.com/BenoitZugmeyer/eslint-plugin-html", + "name": "glob-parent", + "url": "https://gulpjs.com/", "description": "", "paths": [ "." @@ -5529,8 +5339,8 @@ ] }, { - "name": "eslint-plugin-import", - "url": "https://github.com/benmosher/eslint-plugin-import", + "name": "global", + "url": "https://github.com/Raynos/global", "description": "", "paths": [ "." @@ -5540,8 +5350,8 @@ ] }, { - "name": "eslint-plugin-node", - "url": "https://github.com/mysticatea/eslint-plugin-node#readme", + "name": "globals", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -5551,7 +5361,7 @@ ] }, { - "name": "eslint-plugin-promise", + "name": "graceful-fs", "url": "Unknown", "description": "", "paths": [ @@ -5562,8 +5372,8 @@ ] }, { - "name": "eslint-plugin-standard", - "url": "https://github.com/xjamundx/eslint-plugin-standard#readme", + "name": "gzip-size", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -5573,41 +5383,41 @@ ] }, { - "name": "eslint-scope", - "url": "http://github.com/eslint/eslint-scope", + "name": "har-schema", + "url": "https://github.com/ahmadnassri/har-schema", "description": "", "paths": [ "." ], "licenses": [ - "BSD-2-Clause" + "ISC" ] }, { - "name": "eslint-scope", - "url": "http://github.com/eslint/eslint-scope", + "name": "har-validator", + "url": "https://github.com/ahmadnassri/har-validator", "description": "", "paths": [ "." ], "licenses": [ - "BSD-2-Clause" + "ISC" ] }, { - "name": "eslint-visitor-keys", - "url": "https://github.com/eslint/eslint-visitor-keys#readme", + "name": "hard-source-webpack-plugin", + "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "Apache-2.0" + "ISC" ] }, { - "name": "esm", - "url": "Unknown", + "name": "has", + "url": "https://github.com/tarruda/has", "description": "", "paths": [ "." @@ -5617,96 +5427,96 @@ ] }, { - "name": "espree", - "url": "https://github.com/eslint/espree", + "name": "has-ansi", + "url": "sindresorhus.com", "description": "", "paths": [ "." ], "licenses": [ - "BSD-2-Clause" + "MIT" ] }, { - "name": "esprima", - "url": "http://esprima.org/", + "name": "has-flag", + "url": "sindresorhus.com", "description": "", "paths": [ "." ], "licenses": [ - "BSD-2-Clause" + "MIT" ] }, { - "name": "esprima", - "url": "http://esprima.org/", + "name": "has-flag", + "url": "sindresorhus.com", "description": "", "paths": [ "." ], "licenses": [ - "BSD-2-Clause" + "MIT" ] }, { - "name": "esprima", - "url": "http://esprima.org/", + "name": "has-symbols", + "url": "http://ljharb.codes", "description": "", "paths": [ "." ], "licenses": [ - "BSD-2-Clause" + "MIT" ] }, { - "name": "esquery", - "url": "Unknown", + "name": "has-unicode", + "url": "https://github.com/iarna/has-unicode", "description": "", "paths": [ "." ], "licenses": [ - "BSD-3-Clause" + "ISC" ] }, { - "name": "esrecurse", - "url": "https://github.com/estools/esrecurse", + "name": "has-value", + "url": "https://github.com/jonschlinkert/has-value", "description": "", "paths": [ "." ], "licenses": [ - "BSD-2-Clause" + "MIT" ] }, { - "name": "estraverse", - "url": "https://github.com/estools/estraverse", + "name": "has-value", + "url": "https://github.com/jonschlinkert/has-value", "description": "", "paths": [ "." ], "licenses": [ - "BSD-2-Clause" + "MIT" ] }, { - "name": "esutils", - "url": "https://github.com/estools/esutils", + "name": "has-values", + "url": "https://github.com/jonschlinkert/has-values", "description": "", "paths": [ "." ], "licenses": [ - "BSD-2-Clause" + "MIT" ] }, { - "name": "etag", - "url": "Unknown", + "name": "has-values", + "url": "https://github.com/jonschlinkert/has-values", "description": "", "paths": [ "." @@ -5716,8 +5526,8 @@ ] }, { - "name": "eventemitter3", - "url": "Unknown", + "name": "hash-base", + "url": "https://github.com/crypto-browserify/hash-base", "description": "", "paths": [ "." @@ -5727,8 +5537,8 @@ ] }, { - "name": "events", - "url": "http://jeditoolkit.com", + "name": "hash-sum", + "url": "https://github.com/bevacqua/hash-sum", "description": "", "paths": [ "." @@ -5738,8 +5548,8 @@ ] }, { - "name": "eventsource-polyfill", - "url": "https://github.com/amvtek/EventSource", + "name": "hash.js", + "url": "https://github.com/indutny/hash.js", "description": "", "paths": [ "." @@ -5749,19 +5559,19 @@ ] }, { - "name": "evp_bytestokey", - "url": "https://github.com/crypto-browserify/EVP_BytesToKey", + "name": "hawk", + "url": "http://hueniverse.com", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "BSD-3-Clause" ] }, { - "name": "execa", - "url": "sindresorhus.com", + "name": "he", + "url": "https://mths.be/he", "description": "", "paths": [ "." @@ -5771,8 +5581,8 @@ ] }, { - "name": "execa", - "url": "sindresorhus.com", + "name": "hex-color-regex", + "url": "http://www.tunnckocore.tk", "description": "", "paths": [ "." @@ -5782,19 +5592,19 @@ ] }, { - "name": "exif-parser", - "url": "Unknown", + "name": "highlight.js", + "url": "https://highlightjs.org/", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "BSD-3-Clause" ] }, { - "name": "exit", - "url": "https://github.com/cowboy/node-exit", + "name": "hmac-drbg", + "url": "https://github.com/indutny/hmac-drbg#readme", "description": "", "paths": [ "." @@ -5804,19 +5614,19 @@ ] }, { - "name": "expand-brackets", - "url": "https://github.com/jonschlinkert/expand-brackets", + "name": "hoek", + "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "BSD-3-Clause" ] }, { - "name": "expand-brackets", - "url": "https://github.com/jonschlinkert/expand-brackets", + "name": "hoopy", + "url": "https://gitlab.com/philbooth/hoopy#readme", "description": "", "paths": [ "." @@ -5826,8 +5636,8 @@ ] }, { - "name": "expand-range", - "url": "https://github.com/jonschlinkert/expand-range", + "name": "hsl-regex", + "url": "https://github.com/regexps/hsl-regex", "description": "", "paths": [ "." @@ -5837,8 +5647,8 @@ ] }, { - "name": "express", - "url": "http://expressjs.com/", + "name": "hsla-regex", + "url": "https://github.com/regexps/hsla-regex", "description": "", "paths": [ "." @@ -5848,8 +5658,8 @@ ] }, { - "name": "extend", - "url": "http://www.justmoon.net", + "name": "html-comment-regex", + "url": "https://github.com/stevemao/html-comment-regex", "description": "", "paths": [ "." @@ -5859,8 +5669,8 @@ ] }, { - "name": "extend-shallow", - "url": "https://github.com/jonschlinkert/extend-shallow", + "name": "html-entities", + "url": "Unknown", "description": "", "paths": [ "." @@ -5870,8 +5680,8 @@ ] }, { - "name": "extend-shallow", - "url": "https://github.com/jonschlinkert/extend-shallow", + "name": "html-minifier", + "url": "https://kangax.github.io/html-minifier/", "description": "", "paths": [ "." @@ -5881,8 +5691,8 @@ ] }, { - "name": "external-editor", - "url": "https://github.com/mrkmg/node-external-editor#readme", + "name": "html-minifier", + "url": "https://kangax.github.io/html-minifier/", "description": "", "paths": [ "." @@ -5892,8 +5702,8 @@ ] }, { - "name": "extglob", - "url": "https://github.com/jonschlinkert/extglob", + "name": "html-tags", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -5903,8 +5713,8 @@ ] }, { - "name": "extglob", - "url": "https://github.com/micromatch/extglob", + "name": "html-webpack-plugin", + "url": "https://github.com/jantimon/html-webpack-plugin", "description": "", "paths": [ "." @@ -5914,8 +5724,8 @@ ] }, { - "name": "extract-css-chunks-webpack-plugin", - "url": "http://github.com/faceyspacey/extract-css-chunks-webpack-plugin", + "name": "htmlparser2", + "url": "Unknown", "description": "", "paths": [ "." @@ -5925,8 +5735,8 @@ ] }, { - "name": "extsprintf", - "url": "Unknown", + "name": "http-errors", + "url": "http://jongleberry.com", "description": "", "paths": [ "." @@ -5936,7 +5746,7 @@ ] }, { - "name": "extsprintf", + "name": "http-proxy", "url": "Unknown", "description": "", "paths": [ @@ -5947,8 +5757,8 @@ ] }, { - "name": "fast-deep-equal", - "url": "https://github.com/epoberezkin/fast-deep-equal#readme", + "name": "http-proxy-middleware", + "url": "https://github.com/chimurai/http-proxy-middleware", "description": "", "paths": [ "." @@ -5958,8 +5768,8 @@ ] }, { - "name": "fast-deep-equal", - "url": "https://github.com/epoberezkin/fast-deep-equal#readme", + "name": "http-signature", + "url": "https://github.com/joyent/node-http-signature/", "description": "", "paths": [ "." @@ -5969,8 +5779,8 @@ ] }, { - "name": "fast-json-stable-stringify", - "url": "https://github.com/epoberezkin/fast-json-stable-stringify", + "name": "https-browserify", + "url": "https://github.com/substack/https-browserify", "description": "", "paths": [ "." @@ -5980,8 +5790,8 @@ ] }, { - "name": "fast-levenshtein", - "url": "http://www.hiddentao.com/", + "name": "iconv-lite", + "url": "https://github.com/ashtuchkin/iconv-lite", "description": "", "paths": [ "." @@ -5991,8 +5801,8 @@ ] }, { - "name": "figgy-pudding", - "url": "Unknown", + "name": "icss-replace-symbols", + "url": "https://github.com/css-modules/icss-replace-symbols#readme", "description": "", "paths": [ "." @@ -6002,30 +5812,30 @@ ] }, { - "name": "figures", - "url": "sindresorhus.com", + "name": "icss-utils", + "url": "https://github.com/css-modules/icss-utils#readme", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "figures", - "url": "sindresorhus.com", + "name": "ieee754", + "url": "http://feross.org", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "BSD-3-Clause" ] }, { - "name": "file-entry-cache", - "url": "http://royriojas.com", + "name": "iferr", + "url": "https://github.com/shesek/iferr", "description": "", "paths": [ "." @@ -6035,8 +5845,8 @@ ] }, { - "name": "file-loader", - "url": "https://github.com/webpack-contrib/file-loader", + "name": "ignore", + "url": "Unknown", "description": "", "paths": [ "." @@ -6046,19 +5856,19 @@ ] }, { - "name": "file-type", - "url": "sindresorhus.com", + "name": "ignore-walk", + "url": "http://blog.izs.me/", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "filename-regex", - "url": "https://github.com/regexhq/filename-regex", + "name": "import-cwd", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -6068,19 +5878,19 @@ ] }, { - "name": "filesize", - "url": "https://filesizejs.com/", + "name": "import-fresh", + "url": "sindresorhus.com", "description": "", "paths": [ "." ], "licenses": [ - "BSD-3-Clause" + "MIT" ] }, { - "name": "fill-range", - "url": "https://github.com/jonschlinkert/fill-range", + "name": "import-from", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -6090,8 +5900,8 @@ ] }, { - "name": "fill-range", - "url": "https://github.com/jonschlinkert/fill-range", + "name": "imurmurhash", + "url": "https://github.com/jensyt/imurmurhash-js", "description": "", "paths": [ "." @@ -6101,8 +5911,8 @@ ] }, { - "name": "fill-range", - "url": "https://github.com/jonschlinkert/fill-range", + "name": "indexes-of", + "url": "https://github.com/dominictarr/indexes-of", "description": "", "paths": [ "." @@ -6112,63 +5922,63 @@ ] }, { - "name": "finalhandler", + "name": "indexof", "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "mit*" ] }, { - "name": "find-cache-dir", - "url": "github.com/jamestalmage", + "name": "inflight", + "url": "https://github.com/isaacs/inflight", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "find-cache-dir", + "name": "inherits", "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "find-up", - "url": "sindresorhus.com", + "name": "inherits", + "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "find-up", - "url": "sindresorhus.com", + "name": "ini", + "url": "http://blog.izs.me/", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "find-up", - "url": "sindresorhus.com", + "name": "invariant", + "url": "Unknown", "description": "", "paths": [ "." @@ -6178,8 +5988,8 @@ ] }, { - "name": "flat-cache", - "url": "http://royriojas.com", + "name": "ip", + "url": "https://github.com/indutny/node-ip", "description": "", "paths": [ "." @@ -6189,8 +5999,8 @@ ] }, { - "name": "flatten", - "url": "http://jesusabdullah.net", + "name": "ip-regex", + "url": "http://sindresorhus.com", "description": "", "paths": [ "." @@ -6200,8 +6010,8 @@ ] }, { - "name": "flush-write-stream", - "url": "https://github.com/mafintosh/flush-write-stream", + "name": "ipaddr.js", + "url": "Unknown", "description": "", "paths": [ "." @@ -6211,8 +6021,8 @@ ] }, { - "name": "follow-redirects", - "url": "https://github.com/olalonde/follow-redirects", + "name": "is-absolute-url", + "url": "http://sindresorhus.com", "description": "", "paths": [ "." @@ -6222,8 +6032,8 @@ ] }, { - "name": "for-each", - "url": "https://github.com/Raynos/for-each", + "name": "is-accessor-descriptor", + "url": "https://github.com/jonschlinkert/is-accessor-descriptor", "description": "", "paths": [ "." @@ -6233,8 +6043,8 @@ ] }, { - "name": "for-in", - "url": "https://github.com/jonschlinkert/for-in", + "name": "is-accessor-descriptor", + "url": "https://github.com/jonschlinkert/is-accessor-descriptor", "description": "", "paths": [ "." @@ -6244,8 +6054,8 @@ ] }, { - "name": "for-own", - "url": "https://github.com/jonschlinkert/for-own", + "name": "is-arrayish", + "url": "http://github.com/qix-", "description": "", "paths": [ "." @@ -6255,41 +6065,41 @@ ] }, { - "name": "foreground-child", - "url": "https://github.com/tapjs/foreground-child#readme", + "name": "is-arrayish", + "url": "http://github.com/qix-", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "MIT" ] }, { - "name": "forever-agent", - "url": "http://www.futurealoof.com", + "name": "is-binary-path", + "url": "sindresorhus.com", "description": "", "paths": [ "." ], "licenses": [ - "apache*" + "MIT" ] }, { - "name": "forever-agent", - "url": "http://www.futurealoof.com", + "name": "is-binary-path", + "url": "sindresorhus.com", "description": "", "paths": [ "." ], "licenses": [ - "Apache-2.0" + "MIT" ] }, { - "name": "form-data", - "url": "http://debuggable.com/", + "name": "is-buffer", + "url": "http://feross.org/", "description": "", "paths": [ "." @@ -6299,8 +6109,8 @@ ] }, { - "name": "form-data", - "url": "http://debuggable.com/", + "name": "is-callable", + "url": "http://ljharb.codes", "description": "", "paths": [ "." @@ -6310,8 +6120,8 @@ ] }, { - "name": "forwarded", - "url": "Unknown", + "name": "is-color-stop", + "url": "https://github.com/pigcan/is-color-stop#readme", "description": "", "paths": [ "." @@ -6321,8 +6131,8 @@ ] }, { - "name": "fragment-cache", - "url": "https://github.com/jonschlinkert/fragment-cache", + "name": "is-data-descriptor", + "url": "https://github.com/jonschlinkert/is-data-descriptor", "description": "", "paths": [ "." @@ -6332,8 +6142,8 @@ ] }, { - "name": "fresh", - "url": "http://tjholowaychuk.com", + "name": "is-data-descriptor", + "url": "https://github.com/jonschlinkert/is-data-descriptor", "description": "", "paths": [ "." @@ -6343,8 +6153,8 @@ ] }, { - "name": "from2", - "url": "https://github.com/hughsk/from2", + "name": "is-date-object", + "url": "Unknown", "description": "", "paths": [ "." @@ -6354,8 +6164,8 @@ ] }, { - "name": "front-matter", - "url": "https://github.com/jxson/front-matter", + "name": "is-descriptor", + "url": "https://github.com/jonschlinkert/is-descriptor", "description": "", "paths": [ "." @@ -6365,8 +6175,8 @@ ] }, { - "name": "fs-extra", - "url": "https://github.com/jprichardson/node-fs-extra", + "name": "is-descriptor", + "url": "https://github.com/jonschlinkert/is-descriptor", "description": "", "paths": [ "." @@ -6376,8 +6186,8 @@ ] }, { - "name": "fs-extra", - "url": "https://github.com/jprichardson/node-fs-extra", + "name": "is-directory", + "url": "https://github.com/jonschlinkert/is-directory", "description": "", "paths": [ "." @@ -6387,2670 +6197,8 @@ ] }, { - "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/", + "name": "is-dotfile", + "url": "https://github.com/jonschlinkert/is-dotfile", "description": "", "paths": [ "." @@ -9060,8 +6208,8 @@ ] }, { - "name": "lodash.keys", - "url": "https://lodash.com/", + "name": "is-equal-shallow", + "url": "https://github.com/jonschlinkert/is-equal-shallow", "description": "", "paths": [ "." @@ -9071,8 +6219,8 @@ ] }, { - "name": "lodash.memoize", - "url": "https://lodash.com/", + "name": "is-extendable", + "url": "https://github.com/jonschlinkert/is-extendable", "description": "", "paths": [ "." @@ -9082,8 +6230,8 @@ ] }, { - "name": "lodash.merge", - "url": "https://lodash.com/", + "name": "is-extendable", + "url": "https://github.com/jonschlinkert/is-extendable", "description": "", "paths": [ "." @@ -9093,8 +6241,8 @@ ] }, { - "name": "lodash.sortby", - "url": "https://lodash.com/", + "name": "is-extglob", + "url": "https://github.com/jonschlinkert/is-extglob", "description": "", "paths": [ "." @@ -9104,8 +6252,8 @@ ] }, { - "name": "lodash.template", - "url": "https://lodash.com/", + "name": "is-extglob", + "url": "https://github.com/jonschlinkert/is-extglob", "description": "", "paths": [ "." @@ -9115,8 +6263,8 @@ ] }, { - "name": "lodash.templatesettings", - "url": "https://lodash.com/", + "name": "is-fullwidth-code-point", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -9126,8 +6274,8 @@ ] }, { - "name": "lodash.uniq", - "url": "https://lodash.com/", + "name": "is-fullwidth-code-point", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -9137,8 +6285,8 @@ ] }, { - "name": "lodash.uniqueid", - "url": "https://lodash.com/", + "name": "is-function", + "url": "https://github.com/grncdr/js-is-function", "description": "", "paths": [ "." @@ -9148,19 +6296,8 @@ ] }, { - "name": "log-driver", - "url": "https://github.com/cainus/logdriver", - "description": "", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] - }, - { - "name": "longest", - "url": "https://github.com/jonschlinkert/longest", + "name": "is-glob", + "url": "https://github.com/jonschlinkert/is-glob", "description": "", "paths": [ "." @@ -9170,8 +6307,8 @@ ] }, { - "name": "loose-envify", - "url": "https://github.com/zertosh/loose-envify", + "name": "is-glob", + "url": "https://github.com/jonschlinkert/is-glob", "description": "", "paths": [ "." @@ -9181,8 +6318,8 @@ ] }, { - "name": "lower-case", - "url": "https://github.com/blakeembrey/lower-case", + "name": "is-glob", + "url": "https://github.com/micromatch/is-glob", "description": "", "paths": [ "." @@ -9192,52 +6329,19 @@ ] }, { - "name": "lru-cache", - "url": "Unknown", - "description": "", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] - }, - { - "name": "lru-cache", - "url": "Unknown", - "description": "", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] - }, - { - "name": "lru-cache", + "name": "is-https", "url": "Unknown", "description": "", "paths": [ "." ], - "licenses": [ - "ISC" - ] - }, - { - "name": "make-dir", - "url": "sindresorhus.com", - "description": "", - "paths": [ - "." - ], "licenses": [ "MIT" ] }, { - "name": "make-dir", - "url": "sindresorhus.com", + "name": "is-number", + "url": "https://github.com/jonschlinkert/is-number", "description": "", "paths": [ "." @@ -9247,8 +6351,8 @@ ] }, { - "name": "mamacro", - "url": "Unknown", + "name": "is-number", + "url": "https://github.com/jonschlinkert/is-number", "description": "", "paths": [ "." @@ -9258,8 +6362,8 @@ ] }, { - "name": "map-cache", - "url": "https://github.com/jonschlinkert/map-cache", + "name": "is-number", + "url": "https://github.com/jonschlinkert/is-number", "description": "", "paths": [ "." @@ -9269,8 +6373,8 @@ ] }, { - "name": "map-visit", - "url": "https://github.com/jonschlinkert/map-visit", + "name": "is-number", + "url": "https://github.com/jonschlinkert/is-number", "description": "", "paths": [ "." @@ -9280,8 +6384,8 @@ ] }, { - "name": "markdown-it", - "url": "Unknown", + "name": "is-obj", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -9291,19 +6395,19 @@ ] }, { - "name": "markdown-it-anchor", - "url": "https://github.com/valeriangalliat/markdown-it-anchor", + "name": "is-plain-obj", + "url": "sindresorhus.com", "description": "", "paths": [ "." ], "licenses": [ - "Unlicense" + "MIT" ] }, { - "name": "math-expression-evaluator", - "url": "https://github.com/redhivesoftware/math-expression-evaluator#readme", + "name": "is-plain-object", + "url": "https://github.com/jonschlinkert/is-plain-object", "description": "", "paths": [ "." @@ -9313,8 +6417,8 @@ ] }, { - "name": "math-random", - "url": "Unknown", + "name": "is-posix-bracket", + "url": "https://github.com/jonschlinkert/is-posix-bracket", "description": "", "paths": [ "." @@ -9324,8 +6428,8 @@ ] }, { - "name": "md5-hex", - "url": "sindresorhus.com", + "name": "is-primitive", + "url": "https://github.com/jonschlinkert/is-primitive", "description": "", "paths": [ "." @@ -9335,8 +6439,8 @@ ] }, { - "name": "md5-o-matic", - "url": "https://github.com/trentmillar/md5-o-matic", + "name": "is-promise", + "url": "Unknown", "description": "", "paths": [ "." @@ -9346,8 +6450,8 @@ ] }, { - "name": "md5.js", - "url": "https://github.com/crypto-browserify/md5.js", + "name": "is-regex", + "url": "https://github.com/ljharb/is-regex", "description": "", "paths": [ "." @@ -9357,19 +6461,19 @@ ] }, { - "name": "mdn-data", - "url": "https://developer.mozilla.org/", + "name": "is-resolvable", + "url": "https://github.com/shinnn", "description": "", "paths": [ "." ], "licenses": [ - "MPL-2.0" + "ISC" ] }, { - "name": "mdurl", - "url": "Unknown", + "name": "is-retry-allowed", + "url": "github.com/floatdrop", "description": "", "paths": [ "." @@ -9379,8 +6483,8 @@ ] }, { - "name": "media-typer", - "url": "Unknown", + "name": "is-stream", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -9390,7 +6494,7 @@ ] }, { - "name": "mem", + "name": "is-svg", "url": "sindresorhus.com", "description": "", "paths": [ @@ -9401,8 +6505,8 @@ ] }, { - "name": "memory-fs", - "url": "https://github.com/webpack/memory-fs", + "name": "is-svg", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -9412,8 +6516,8 @@ ] }, { - "name": "merge-descriptors", - "url": "http://jongleberry.com", + "name": "is-symbol", + "url": "Unknown", "description": "", "paths": [ "." @@ -9423,8 +6527,8 @@ ] }, { - "name": "merge-source-map", - "url": "Unknown", + "name": "is-typedarray", + "url": "https://github.com/hughsk/is-typedarray", "description": "", "paths": [ "." @@ -9434,8 +6538,8 @@ ] }, { - "name": "methods", - "url": "Unknown", + "name": "is-windows", + "url": "https://github.com/jonschlinkert/is-windows", "description": "", "paths": [ "." @@ -9445,8 +6549,8 @@ ] }, { - "name": "micromatch", - "url": "https://github.com/jonschlinkert/micromatch", + "name": "is-wsl", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -9456,8 +6560,8 @@ ] }, { - "name": "micromatch", - "url": "https://github.com/micromatch/micromatch", + "name": "isarray", + "url": "https://github.com/juliangruber/isarray", "description": "", "paths": [ "." @@ -9467,19 +6571,19 @@ ] }, { - "name": "miller-rabin", - "url": "https://github.com/indutny/miller-rabin", + "name": "isexe", + "url": "https://github.com/isaacs/isexe#readme", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "mime", - "url": "http://github.com/broofa", + "name": "isobject", + "url": "https://github.com/jonschlinkert/isobject", "description": "", "paths": [ "." @@ -9489,8 +6593,8 @@ ] }, { - "name": "mime", - "url": "http://github.com/broofa", + "name": "isobject", + "url": "https://github.com/jonschlinkert/isobject", "description": "", "paths": [ "." @@ -9500,8 +6604,8 @@ ] }, { - "name": "mime", - "url": "http://github.com/broofa", + "name": "isstream", + "url": "https://github.com/rvagg/isstream", "description": "", "paths": [ "." @@ -9511,7 +6615,7 @@ ] }, { - "name": "mime-db", + "name": "jimp", "url": "Unknown", "description": "", "paths": [ @@ -9522,29 +6626,29 @@ ] }, { - "name": "mime-db", + "name": "jpeg-js", "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "BSD-3-Clause" ] }, { - "name": "mime-types", - "url": "http://jongleberry.com", + "name": "js-base64", + "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "BSD-3-Clause" ] }, { - "name": "mime-types", + "name": "js-levenshtein", "url": "Unknown", "description": "", "paths": [ @@ -9555,7 +6659,7 @@ ] }, { - "name": "mime-types", + "name": "js-tokens", "url": "Unknown", "description": "", "paths": [ @@ -9566,8 +6670,8 @@ ] }, { - "name": "mimic-fn", - "url": "sindresorhus.com", + "name": "js-yaml", + "url": "https://github.com/nodeca/js-yaml", "description": "", "paths": [ "." @@ -9577,8 +6681,8 @@ ] }, { - "name": "min-document", - "url": "https://github.com/Raynos/min-document", + "name": "js-yaml", + "url": "https://github.com/nodeca/js-yaml", "description": "", "paths": [ "." @@ -9588,19 +6692,19 @@ ] }, { - "name": "minimalistic-assert", - "url": "https://github.com/calvinmetcalf/minimalistic-assert", + "name": "js-yaml", + "url": "https://github.com/nodeca/js-yaml", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "MIT" ] }, { - "name": "minimalistic-crypto-utils", - "url": "https://github.com/indutny/minimalistic-crypto-utils#readme", + "name": "jsbn", + "url": "Unknown", "description": "", "paths": [ "." @@ -9610,19 +6714,19 @@ ] }, { - "name": "minimatch", - "url": "http://blog.izs.me", + "name": "jsesc", + "url": "http://mths.be/jsesc", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "MIT" ] }, { - "name": "minimist", - "url": "https://github.com/substack/minimist", + "name": "jsesc", + "url": "https://mths.be/jsesc", "description": "", "paths": [ "." @@ -9632,8 +6736,8 @@ ] }, { - "name": "minimist", - "url": "https://github.com/substack/minimist", + "name": "json-parse-better-errors", + "url": "Unknown", "description": "", "paths": [ "." @@ -9643,30 +6747,30 @@ ] }, { - "name": "minimist", - "url": "https://github.com/substack/minimist", + "name": "json-schema", + "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "bsd*" ] }, { - "name": "minipass", - "url": "http://blog.izs.me/", + "name": "json-schema-traverse", + "url": "https://github.com/epoberezkin/json-schema-traverse#readme", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "MIT" ] }, { - "name": "minizlib", - "url": "http://blog.izs.me/", + "name": "json-schema-traverse", + "url": "https://github.com/epoberezkin/json-schema-traverse#readme", "description": "", "paths": [ "." @@ -9676,19 +6780,19 @@ ] }, { - "name": "mississippi", - "url": "https://github.com/maxogden/mississippi#readme", + "name": "json-stringify-safe", + "url": "https://github.com/isaacs/json-stringify-safe", "description": "", "paths": [ "." ], "licenses": [ - "BSD-2-Clause" + "ISC" ] }, { - "name": "mixin-deep", - "url": "https://github.com/jonschlinkert/mixin-deep", + "name": "json5", + "url": "http://json5.org/", "description": "", "paths": [ "." @@ -9698,8 +6802,8 @@ ] }, { - "name": "mkdirp", - "url": "http://substack.net", + "name": "json5", + "url": "http://json5.org/", "description": "", "paths": [ "." @@ -9709,8 +6813,8 @@ ] }, { - "name": "mocha", - "url": "https://mochajs.org/", + "name": "json5", + "url": "http://json5.org/", "description": "", "paths": [ "." @@ -9720,7 +6824,7 @@ ] }, { - "name": "mocha-webpack", + "name": "jsonfile", "url": "Unknown", "description": "", "paths": [ @@ -9731,8 +6835,8 @@ ] }, { - "name": "moment", - "url": "http://momentjs.com/", + "name": "jsonfile", + "url": "Unknown", "description": "", "paths": [ "." @@ -9742,18 +6846,18 @@ ] }, { - "name": "move-concurrently", - "url": "https://www.npmjs.com/package/move-concurrently", + "name": "jsonify", + "url": "http://crockford.com/", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "public domain" ] }, { - "name": "ms", + "name": "jsprim", "url": "Unknown", "description": "", "paths": [ @@ -9764,8 +6868,8 @@ ] }, { - "name": "ms", - "url": "Unknown", + "name": "kind-of", + "url": "https://github.com/jonschlinkert/kind-of", "description": "", "paths": [ "." @@ -9775,8 +6879,8 @@ ] }, { - "name": "mustache", - "url": "https://github.com/janl/mustache.js", + "name": "kind-of", + "url": "https://github.com/jonschlinkert/kind-of", "description": "", "paths": [ "." @@ -9786,19 +6890,19 @@ ] }, { - "name": "mute-stream", - "url": "http://blog.izs.me/", + "name": "kind-of", + "url": "https://github.com/jonschlinkert/kind-of", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "MIT" ] }, { - "name": "nan", - "url": "Unknown", + "name": "kind-of", + "url": "https://github.com/jonschlinkert/kind-of", "description": "", "paths": [ "." @@ -9808,8 +6912,8 @@ ] }, { - "name": "nanomatch", - "url": "https://github.com/micromatch/nanomatch", + "name": "last-call-webpack-plugin", + "url": "http://github.com/NMFR/last-call-webpack-plugin", "description": "", "paths": [ "." @@ -9819,8 +6923,8 @@ ] }, { - "name": "natural-compare", - "url": "https://github.com/litejs/natural-compare-lite", + "name": "launch-editor", + "url": "https://github.com/yyx990803/launch-editor#readme", "description": "", "paths": [ "." @@ -9830,8 +6934,8 @@ ] }, { - "name": "needle", - "url": "Unknown", + "name": "launch-editor-middleware", + "url": "https://github.com/yyx990803/launch-editor#readme", "description": "", "paths": [ "." @@ -9841,7 +6945,7 @@ ] }, { - "name": "negotiator", + "name": "linkify-it", "url": "Unknown", "description": "", "paths": [ @@ -9852,8 +6956,8 @@ ] }, { - "name": "neo-async", - "url": "https://github.com/suguru03/neo-async", + "name": "load-bmfont", + "url": "https://github.com/Jam3/load-bmfont", "description": "", "paths": [ "." @@ -9863,8 +6967,8 @@ ] }, { - "name": "nice-try", - "url": "https://github.com/electerious/nice-try", + "name": "loader-runner", + "url": "https://github.com/webpack/loader-runner#readme", "description": "", "paths": [ "." @@ -9874,8 +6978,8 @@ ] }, { - "name": "no-case", - "url": "https://github.com/blakeembrey/no-case", + "name": "loader-utils", + "url": "Unknown", "description": "", "paths": [ "." @@ -9885,8 +6989,8 @@ ] }, { - "name": "node-fetch", - "url": "https://github.com/bitinn/node-fetch", + "name": "loader-utils", + "url": "Unknown", "description": "", "paths": [ "." @@ -9896,8 +7000,8 @@ ] }, { - "name": "node-libs-browser", - "url": "http://github.com/webpack/node-libs-browser", + "name": "locate-path", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -9907,30 +7011,30 @@ ] }, { - "name": "node-object-hash", - "url": "https://github.com/SkeLLLa/node-object-hash", + "name": "lodash", + "url": "https://lodash.com/", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "MIT" ] }, { - "name": "node-pre-gyp", - "url": "Unknown", + "name": "lodash", + "url": "https://lodash.com/", "description": "", "paths": [ "." ], "licenses": [ - "BSD-3-Clause" + "MIT" ] }, { - "name": "node-releases", - "url": "Unknown", + "name": "lodash._reinterpolate", + "url": "https://lodash.com/", "description": "", "paths": [ "." @@ -9940,8 +7044,8 @@ ] }, { - "name": "node-uuid", - "url": "https://github.com/broofa/node-uuid", + "name": "lodash.isplainobject", + "url": "https://lodash.com/", "description": "", "paths": [ "." @@ -9951,30 +7055,30 @@ ] }, { - "name": "nopt", - "url": "http://blog.izs.me/", + "name": "lodash.kebabcase", + "url": "https://lodash.com/", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "MIT" ] }, { - "name": "normalize-package-data", - "url": "Unknown", + "name": "lodash.memoize", + "url": "https://lodash.com/", "description": "", "paths": [ "." ], "licenses": [ - "BSD-2-Clause" + "MIT" ] }, { - "name": "normalize-path", - "url": "https://github.com/jonschlinkert/normalize-path", + "name": "lodash.merge", + "url": "https://lodash.com/", "description": "", "paths": [ "." @@ -9984,8 +7088,8 @@ ] }, { - "name": "normalize-path", - "url": "https://github.com/jonschlinkert/normalize-path", + "name": "lodash.template", + "url": "https://lodash.com/", "description": "", "paths": [ "." @@ -9995,8 +7099,8 @@ ] }, { - "name": "normalize-path", - "url": "https://github.com/jonschlinkert/normalize-path", + "name": "lodash.templatesettings", + "url": "https://lodash.com/", "description": "", "paths": [ "." @@ -10006,8 +7110,8 @@ ] }, { - "name": "normalize-range", - "url": "github.com/jamestalmage", + "name": "lodash.uniq", + "url": "https://lodash.com/", "description": "", "paths": [ "." @@ -10017,8 +7121,8 @@ ] }, { - "name": "normalize-url", - "url": "sindresorhus.com", + "name": "lodash.uniqueid", + "url": "https://lodash.com/", "description": "", "paths": [ "." @@ -10028,8 +7132,8 @@ ] }, { - "name": "normalize-url", - "url": "sindresorhus.com", + "name": "loose-envify", + "url": "https://github.com/zertosh/loose-envify", "description": "", "paths": [ "." @@ -10039,8 +7143,8 @@ ] }, { - "name": "normalize-url", - "url": "sindresorhus.com", + "name": "lower-case", + "url": "https://github.com/blakeembrey/lower-case", "description": "", "paths": [ "." @@ -10050,19 +7154,19 @@ ] }, { - "name": "normalize.css", - "url": "https://necolas.github.io/normalize.css", + "name": "lru-cache", + "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "npm-bundled", - "url": "http://blog.izs.me/", + "name": "lru-cache", + "url": "Unknown", "description": "", "paths": [ "." @@ -10072,8 +7176,8 @@ ] }, { - "name": "npm-packlist", - "url": "https://www.npmjs.com/package/npm-packlist", + "name": "lru-cache", + "url": "Unknown", "description": "", "paths": [ "." @@ -10083,7 +7187,7 @@ ] }, { - "name": "npm-run-path", + "name": "make-dir", "url": "sindresorhus.com", "description": "", "paths": [ @@ -10094,30 +7198,30 @@ ] }, { - "name": "npmlog", - "url": "http://blog.izs.me/", + "name": "make-dir", + "url": "sindresorhus.com", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "MIT" ] }, { - "name": "nth-check", - "url": "https://github.com/fb55/nth-check", + "name": "mamacro", + "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "BSD-2-Clause" + "MIT" ] }, { - "name": "num2fraction", - "url": "http://iyunlu.com/view", + "name": "map-cache", + "url": "https://github.com/jonschlinkert/map-cache", "description": "", "paths": [ "." @@ -10127,8 +7231,8 @@ ] }, { - "name": "number-is-nan", - "url": "sindresorhus.com", + "name": "map-visit", + "url": "https://github.com/jonschlinkert/map-visit", "description": "", "paths": [ "." @@ -10138,7 +7242,7 @@ ] }, { - "name": "nuxt", + "name": "markdown-it", "url": "Unknown", "description": "", "paths": [ @@ -10149,19 +7253,19 @@ ] }, { - "name": "nuxtent", - "url": "https://github.com/nuxt-community/nuxtent-module#readme", + "name": "markdown-it-anchor", + "url": "https://github.com/valeriangalliat/markdown-it-anchor", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "Unlicense" ] }, { - "name": "nwmatcher", - "url": "http://javascript.nwbox.com/NWMatcher/", + "name": "math-expression-evaluator", + "url": "https://github.com/redhivesoftware/math-expression-evaluator#readme", "description": "", "paths": [ "." @@ -10171,41 +7275,41 @@ ] }, { - "name": "nyc", + "name": "math-random", "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "MIT" ] }, { - "name": "oauth-sign", - "url": "http://www.futurealoof.com", + "name": "md5.js", + "url": "https://github.com/crypto-browserify/md5.js", "description": "", "paths": [ "." ], "licenses": [ - "apache*" + "MIT" ] }, { - "name": "oauth-sign", - "url": "http://www.futurealoof.com", + "name": "mdn-data", + "url": "https://developer.mozilla.org/", "description": "", "paths": [ "." ], "licenses": [ - "Apache-2.0" + "MPL-2.0" ] }, { - "name": "object-assign", - "url": "sindresorhus.com", + "name": "mdurl", + "url": "Unknown", "description": "", "paths": [ "." @@ -10215,8 +7319,8 @@ ] }, { - "name": "object-copy", - "url": "https://github.com/jonschlinkert/object-copy", + "name": "media-typer", + "url": "Unknown", "description": "", "paths": [ "." @@ -10226,8 +7330,8 @@ ] }, { - "name": "object-hash", - "url": "https://github.com/puleos/object-hash", + "name": "memory-fs", + "url": "https://github.com/webpack/memory-fs", "description": "", "paths": [ "." @@ -10237,8 +7341,8 @@ ] }, { - "name": "object-keys", - "url": "http://ljharb.codes", + "name": "merge-descriptors", + "url": "http://jongleberry.com", "description": "", "paths": [ "." @@ -10248,8 +7352,8 @@ ] }, { - "name": "object-visit", - "url": "https://github.com/jonschlinkert/object-visit", + "name": "merge-source-map", + "url": "Unknown", "description": "", "paths": [ "." @@ -10259,7 +7363,7 @@ ] }, { - "name": "object.getownpropertydescriptors", + "name": "methods", "url": "Unknown", "description": "", "paths": [ @@ -10270,8 +7374,8 @@ ] }, { - "name": "object.omit", - "url": "https://github.com/jonschlinkert/object.omit", + "name": "micromatch", + "url": "https://github.com/jonschlinkert/micromatch", "description": "", "paths": [ "." @@ -10281,8 +7385,8 @@ ] }, { - "name": "object.pick", - "url": "https://github.com/jonschlinkert/object.pick", + "name": "micromatch", + "url": "https://github.com/micromatch/micromatch", "description": "", "paths": [ "." @@ -10292,8 +7396,8 @@ ] }, { - "name": "object.values", - "url": "Unknown", + "name": "miller-rabin", + "url": "https://github.com/indutny/miller-rabin", "description": "", "paths": [ "." @@ -10303,8 +7407,8 @@ ] }, { - "name": "on-finished", - "url": "Unknown", + "name": "mime", + "url": "http://github.com/broofa", "description": "", "paths": [ "." @@ -10314,7 +7418,18 @@ ] }, { - "name": "on-headers", + "name": "mime", + "url": "http://github.com/broofa", + "description": "", + "paths": [ + "." + ], + "licenses": [ + "MIT" + ] + }, + { + "name": "mime-db", "url": "Unknown", "description": "", "paths": [ @@ -10325,19 +7440,19 @@ ] }, { - "name": "once", - "url": "http://blog.izs.me/", + "name": "mime-db", + "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "MIT" ] }, { - "name": "onetime", - "url": "sindresorhus.com", + "name": "mime-types", + "url": "Unknown", "description": "", "paths": [ "." @@ -10347,19 +7462,19 @@ ] }, { - "name": "opener", - "url": "https://domenic.me/", + "name": "mime-types", + "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "(wtfpl or mit)" + "MIT" ] }, { - "name": "optimist", - "url": "http://substack.net", + "name": "min-document", + "url": "https://github.com/Raynos/min-document", "description": "", "paths": [ "." @@ -10369,19 +7484,19 @@ ] }, { - "name": "optimize-css-assets-webpack-plugin", - "url": "http://github.com/NMFR/optimize-css-assets-webpack-plugin", + "name": "minimalistic-assert", + "url": "https://github.com/calvinmetcalf/minimalistic-assert", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "optionator", - "url": "https://github.com/gkz/optionator", + "name": "minimalistic-crypto-utils", + "url": "https://github.com/indutny/minimalistic-crypto-utils#readme", "description": "", "paths": [ "." @@ -10391,19 +7506,19 @@ ] }, { - "name": "os-browserify", - "url": "Unknown", + "name": "minimatch", + "url": "http://blog.izs.me", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "os-homedir", - "url": "sindresorhus.com", + "name": "minimist", + "url": "https://github.com/substack/minimist", "description": "", "paths": [ "." @@ -10413,8 +7528,8 @@ ] }, { - "name": "os-locale", - "url": "sindresorhus.com", + "name": "minimist", + "url": "https://github.com/substack/minimist", "description": "", "paths": [ "." @@ -10424,19 +7539,19 @@ ] }, { - "name": "os-locale", - "url": "sindresorhus.com", + "name": "minipass", + "url": "http://blog.izs.me/", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "os-tmpdir", - "url": "sindresorhus.com", + "name": "minizlib", + "url": "http://blog.izs.me/", "description": "", "paths": [ "." @@ -10446,19 +7561,19 @@ ] }, { - "name": "osenv", - "url": "http://blog.izs.me/", + "name": "mississippi", + "url": "https://github.com/maxogden/mississippi#readme", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "BSD-2-Clause" ] }, { - "name": "p-finally", - "url": "sindresorhus.com", + "name": "mixin-deep", + "url": "https://github.com/jonschlinkert/mixin-deep", "description": "", "paths": [ "." @@ -10468,8 +7583,8 @@ ] }, { - "name": "p-limit", - "url": "sindresorhus.com", + "name": "mkdirp", + "url": "http://substack.net", "description": "", "paths": [ "." @@ -10479,8 +7594,8 @@ ] }, { - "name": "p-limit", - "url": "sindresorhus.com", + "name": "moment", + "url": "http://momentjs.com/", "description": "", "paths": [ "." @@ -10490,19 +7605,19 @@ ] }, { - "name": "p-locate", - "url": "sindresorhus.com", + "name": "move-concurrently", + "url": "https://www.npmjs.com/package/move-concurrently", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "p-locate", - "url": "sindresorhus.com", + "name": "ms", + "url": "Unknown", "description": "", "paths": [ "." @@ -10512,8 +7627,8 @@ ] }, { - "name": "p-try", - "url": "sindresorhus.com", + "name": "ms", + "url": "Unknown", "description": "", "paths": [ "." @@ -10523,8 +7638,8 @@ ] }, { - "name": "p-try", - "url": "sindresorhus.com", + "name": "mustache", + "url": "https://github.com/janl/mustache.js", "description": "", "paths": [ "." @@ -10534,19 +7649,19 @@ ] }, { - "name": "pako", - "url": "https://github.com/nodeca/pako", + "name": "nan", + "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "(mit and zlib)" + "MIT" ] }, { - "name": "parallel-transform", - "url": "Unknown", + "name": "nanomatch", + "url": "https://github.com/micromatch/nanomatch", "description": "", "paths": [ "." @@ -10556,8 +7671,8 @@ ] }, { - "name": "param-case", - "url": "https://github.com/blakeembrey/param-case", + "name": "needle", + "url": "Unknown", "description": "", "paths": [ "." @@ -10567,19 +7682,19 @@ ] }, { - "name": "parse-asn1", + "name": "negotiator", "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "MIT" ] }, { - "name": "parse-bmfont-ascii", - "url": "https://github.com/mattdesl/parse-bmfont-ascii", + "name": "neo-async", + "url": "https://github.com/suguru03/neo-async", "description": "", "paths": [ "." @@ -10589,8 +7704,8 @@ ] }, { - "name": "parse-bmfont-binary", - "url": "https://github.com/Jam3/parse-bmfont-binary", + "name": "nice-try", + "url": "https://github.com/electerious/nice-try", "description": "", "paths": [ "." @@ -10600,8 +7715,8 @@ ] }, { - "name": "parse-bmfont-xml", - "url": "https://github.com/mattdesl/parse-bmfont-xml", + "name": "no-case", + "url": "https://github.com/blakeembrey/no-case", "description": "", "paths": [ "." @@ -10611,8 +7726,8 @@ ] }, { - "name": "parse-glob", - "url": "https://github.com/jonschlinkert/parse-glob", + "name": "node-fetch", + "url": "https://github.com/bitinn/node-fetch", "description": "", "paths": [ "." @@ -10622,8 +7737,8 @@ ] }, { - "name": "parse-headers", - "url": "https://github.com/kesla/parse-headers", + "name": "node-libs-browser", + "url": "http://github.com/webpack/node-libs-browser", "description": "", "paths": [ "." @@ -10633,30 +7748,30 @@ ] }, { - "name": "parse-json", - "url": "sindresorhus.com", + "name": "node-object-hash", + "url": "https://github.com/SkeLLLa/node-object-hash", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "parse-json", - "url": "sindresorhus.com", + "name": "node-pre-gyp", + "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "BSD-3-Clause" ] }, { - "name": "parse5", - "url": "https://github.com/inikulin/parse5", + "name": "node-releases", + "url": "Unknown", "description": "", "paths": [ "." @@ -10666,19 +7781,19 @@ ] }, { - "name": "parseurl", - "url": "Unknown", + "name": "nopt", + "url": "http://blog.izs.me/", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "pascalcase", - "url": "https://github.com/jonschlinkert/pascalcase", + "name": "normalize-path", + "url": "https://github.com/jonschlinkert/normalize-path", "description": "", "paths": [ "." @@ -10688,8 +7803,8 @@ ] }, { - "name": "path-browserify", - "url": "https://github.com/substack/path-browserify", + "name": "normalize-path", + "url": "https://github.com/jonschlinkert/normalize-path", "description": "", "paths": [ "." @@ -10699,8 +7814,8 @@ ] }, { - "name": "path-dirname", - "url": "Unknown", + "name": "normalize-range", + "url": "github.com/jamestalmage", "description": "", "paths": [ "." @@ -10710,7 +7825,7 @@ ] }, { - "name": "path-exists", + "name": "normalize-url", "url": "sindresorhus.com", "description": "", "paths": [ @@ -10721,7 +7836,7 @@ ] }, { - "name": "path-exists", + "name": "normalize-url", "url": "sindresorhus.com", "description": "", "paths": [ @@ -10732,7 +7847,7 @@ ] }, { - "name": "path-is-absolute", + "name": "normalize-url", "url": "sindresorhus.com", "description": "", "paths": [ @@ -10743,41 +7858,41 @@ ] }, { - "name": "path-is-inside", - "url": "https://domenic.me", + "name": "normalize.css", + "url": "https://necolas.github.io/normalize.css", "description": "", "paths": [ "." ], "licenses": [ - "(wtfpl or mit)" + "MIT" ] }, { - "name": "path-key", - "url": "sindresorhus.com", + "name": "npm-bundled", + "url": "http://blog.izs.me/", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "path-parse", - "url": "https://github.com/jbgutierrez/path-parse#readme", + "name": "npm-packlist", + "url": "https://www.npmjs.com/package/npm-packlist", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "path-to-regexp", - "url": "Unknown", + "name": "npm-run-path", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -10787,30 +7902,30 @@ ] }, { - "name": "path-to-regexp", - "url": "Unknown", + "name": "npmlog", + "url": "http://blog.izs.me/", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "path-type", - "url": "sindresorhus.com", + "name": "nth-check", + "url": "https://github.com/fb55/nth-check", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "BSD-2-Clause" ] }, { - "name": "path-type", - "url": "sindresorhus.com", + "name": "num2fraction", + "url": "http://iyunlu.com/view", "description": "", "paths": [ "." @@ -10820,8 +7935,8 @@ ] }, { - "name": "pathval", - "url": "https://github.com/chaijs/pathval", + "name": "number-is-nan", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -10831,8 +7946,8 @@ ] }, { - "name": "pbkdf2", - "url": "https://github.com/crypto-browserify/pbkdf2", + "name": "nuxt", + "url": "Unknown", "description": "", "paths": [ "." @@ -10842,8 +7957,8 @@ ] }, { - "name": "performance-now", - "url": "https://github.com/braveg1rl/performance-now", + "name": "nuxtent", + "url": "https://github.com/nuxt-community/nuxtent-module#readme", "description": "", "paths": [ "." @@ -10853,18 +7968,18 @@ ] }, { - "name": "picomatch", - "url": "https://github.com/micromatch/picomatch", + "name": "oauth-sign", + "url": "http://www.futurealoof.com", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "Apache-2.0" ] }, { - "name": "pify", + "name": "object-assign", "url": "sindresorhus.com", "description": "", "paths": [ @@ -10875,8 +7990,8 @@ ] }, { - "name": "pify", - "url": "sindresorhus.com", + "name": "object-copy", + "url": "https://github.com/jonschlinkert/object-copy", "description": "", "paths": [ "." @@ -10886,8 +8001,8 @@ ] }, { - "name": "pify", - "url": "sindresorhus.com", + "name": "object-keys", + "url": "http://ljharb.codes", "description": "", "paths": [ "." @@ -10897,8 +8012,8 @@ ] }, { - "name": "pinkie", - "url": "github.com/floatdrop", + "name": "object-visit", + "url": "https://github.com/jonschlinkert/object-visit", "description": "", "paths": [ "." @@ -10908,8 +8023,8 @@ ] }, { - "name": "pinkie-promise", - "url": "github.com/floatdrop", + "name": "object.getownpropertydescriptors", + "url": "Unknown", "description": "", "paths": [ "." @@ -10919,19 +8034,19 @@ ] }, { - "name": "pixelmatch", - "url": "https://github.com/mapbox/pixelmatch#readme", + "name": "object.omit", + "url": "https://github.com/jonschlinkert/object.omit", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "MIT" ] }, { - "name": "pkg-dir", - "url": "sindresorhus.com", + "name": "object.pick", + "url": "https://github.com/jonschlinkert/object.pick", "description": "", "paths": [ "." @@ -10941,8 +8056,8 @@ ] }, { - "name": "pkg-dir", - "url": "sindresorhus.com", + "name": "object.values", + "url": "Unknown", "description": "", "paths": [ "." @@ -10952,8 +8067,8 @@ ] }, { - "name": "pluralize", - "url": "http://blakeembrey.me", + "name": "on-finished", + "url": "Unknown", "description": "", "paths": [ "." @@ -10963,7 +8078,7 @@ ] }, { - "name": "pn", + "name": "on-headers", "url": "Unknown", "description": "", "paths": [ @@ -10974,30 +8089,30 @@ ] }, { - "name": "pngjs", - "url": "https://github.com/lukeapage/pngjs", + "name": "once", + "url": "http://blog.izs.me/", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "popper.js", - "url": "https://popper.js.org/", + "name": "opener", + "url": "https://domenic.me/", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "(wtfpl or mit)" ] }, { - "name": "posix-character-classes", - "url": "https://github.com/jonschlinkert/posix-character-classes", + "name": "optimize-css-assets-webpack-plugin", + "url": "http://github.com/NMFR/optimize-css-assets-webpack-plugin", "description": "", "paths": [ "." @@ -11007,8 +8122,8 @@ ] }, { - "name": "postcss", - "url": "http://postcss.org/", + "name": "os-browserify", + "url": "Unknown", "description": "", "paths": [ "." @@ -11018,8 +8133,8 @@ ] }, { - "name": "postcss", - "url": "https://postcss.org/", + "name": "os-homedir", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -11029,8 +8144,8 @@ ] }, { - "name": "postcss-attribute-case-insensitive", - "url": "https://github.com/Semigradsky/postcss-attribute-case-insensitive#readme", + "name": "os-tmpdir", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -11040,19 +8155,19 @@ ] }, { - "name": "postcss-calc", - "url": "Unknown", + "name": "osenv", + "url": "http://blog.izs.me/", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "postcss-calc", - "url": "Unknown", + "name": "p-finally", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -11062,30 +8177,30 @@ ] }, { - "name": "postcss-color-functional-notation", - "url": "https://github.com/jonathantneal/postcss-color-functional-notation#readme", + "name": "p-limit", + "url": "sindresorhus.com", "description": "", "paths": [ "." ], "licenses": [ - "CC0-1.0" + "MIT" ] }, { - "name": "postcss-color-gray", - "url": "https://github.com/postcss/postcss-color-gray#readme", + "name": "p-locate", + "url": "sindresorhus.com", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "MIT" ] }, { - "name": "postcss-color-hex-alpha", - "url": "https://github.com/postcss/postcss-color-hex-alpha#readme", + "name": "p-try", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -11095,18 +8210,18 @@ ] }, { - "name": "postcss-color-mod-function", - "url": "https://github.com/jonathantneal/postcss-color-mod-function#readme", + "name": "pako", + "url": "https://github.com/nodeca/pako", "description": "", "paths": [ "." ], "licenses": [ - "CC0-1.0" + "(mit and zlib)" ] }, { - "name": "postcss-color-rebeccapurple", + "name": "parallel-transform", "url": "Unknown", "description": "", "paths": [ @@ -11117,8 +8232,8 @@ ] }, { - "name": "postcss-colormin", - "url": "https://github.com/ben-eb/postcss-colormin", + "name": "param-case", + "url": "https://github.com/blakeembrey/param-case", "description": "", "paths": [ "." @@ -11128,19 +8243,19 @@ ] }, { - "name": "postcss-colormin", - "url": "https://github.com/cssnano/cssnano", + "name": "parse-asn1", + "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "postcss-convert-values", - "url": "https://github.com/ben-eb/postcss-convert-values", + "name": "parse-bmfont-ascii", + "url": "https://github.com/mattdesl/parse-bmfont-ascii", "description": "", "paths": [ "." @@ -11150,8 +8265,8 @@ ] }, { - "name": "postcss-convert-values", - "url": "https://github.com/cssnano/cssnano", + "name": "parse-bmfont-binary", + "url": "https://github.com/Jam3/parse-bmfont-binary", "description": "", "paths": [ "." @@ -11161,8 +8276,8 @@ ] }, { - "name": "postcss-custom-media", - "url": "https://github.com/postcss/postcss-custom-media#readme", + "name": "parse-bmfont-xml", + "url": "https://github.com/mattdesl/parse-bmfont-xml", "description": "", "paths": [ "." @@ -11172,8 +8287,8 @@ ] }, { - "name": "postcss-custom-properties", - "url": "https://github.com/postcss/postcss-custom-properties#readme", + "name": "parse-glob", + "url": "https://github.com/jonschlinkert/parse-glob", "description": "", "paths": [ "." @@ -11183,8 +8298,8 @@ ] }, { - "name": "postcss-custom-selectors", - "url": "https://github.com/postcss/postcss-custom-selectors#readme", + "name": "parse-headers", + "url": "https://github.com/kesla/parse-headers", "description": "", "paths": [ "." @@ -11194,19 +8309,19 @@ ] }, { - "name": "postcss-dir-pseudo-class", - "url": "https://github.com/jonathantneal/postcss-dir-pseudo-class#readme", + "name": "parse-json", + "url": "sindresorhus.com", "description": "", "paths": [ "." ], "licenses": [ - "CC0-1.0" + "MIT" ] }, { - "name": "postcss-discard-comments", - "url": "https://github.com/ben-eb/postcss-discard-comments", + "name": "parseurl", + "url": "Unknown", "description": "", "paths": [ "." @@ -11216,8 +8331,8 @@ ] }, { - "name": "postcss-discard-comments", - "url": "https://github.com/cssnano/cssnano", + "name": "pascalcase", + "url": "https://github.com/jonschlinkert/pascalcase", "description": "", "paths": [ "." @@ -11227,8 +8342,8 @@ ] }, { - "name": "postcss-discard-duplicates", - "url": "https://github.com/ben-eb/postcss-discard-duplicates", + "name": "path-browserify", + "url": "https://github.com/substack/path-browserify", "description": "", "paths": [ "." @@ -11238,8 +8353,8 @@ ] }, { - "name": "postcss-discard-duplicates", - "url": "https://github.com/cssnano/cssnano", + "name": "path-dirname", + "url": "Unknown", "description": "", "paths": [ "." @@ -11249,8 +8364,8 @@ ] }, { - "name": "postcss-discard-empty", - "url": "https://github.com/ben-eb/postcss-discard-empty", + "name": "path-exists", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -11260,8 +8375,8 @@ ] }, { - "name": "postcss-discard-empty", - "url": "https://github.com/cssnano/cssnano", + "name": "path-is-absolute", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -11271,8 +8386,8 @@ ] }, { - "name": "postcss-discard-overridden", - "url": "https://github.com/Justineo/postcss-discard-overridden", + "name": "path-key", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -11282,8 +8397,8 @@ ] }, { - "name": "postcss-discard-overridden", - "url": "https://github.com/cssnano/cssnano", + "name": "path-parse", + "url": "https://github.com/jbgutierrez/path-parse#readme", "description": "", "paths": [ "." @@ -11293,8 +8408,8 @@ ] }, { - "name": "postcss-discard-unused", - "url": "https://github.com/ben-eb/postcss-discard-unused", + "name": "path-to-regexp", + "url": "Unknown", "description": "", "paths": [ "." @@ -11304,30 +8419,30 @@ ] }, { - "name": "postcss-double-position-gradients", - "url": "https://github.com/jonathantneal/postcss-double-position-gradients#readme", + "name": "path-to-regexp", + "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "CC0-1.0" + "MIT" ] }, { - "name": "postcss-env-function", - "url": "https://github.com/jonathantneal/postcss-env-function#readme", + "name": "pbkdf2", + "url": "https://github.com/crypto-browserify/pbkdf2", "description": "", "paths": [ "." ], "licenses": [ - "CC0-1.0" + "MIT" ] }, { - "name": "postcss-filter-plugins", - "url": "https://github.com/postcss/postcss-filter-plugins", + "name": "performance-now", + "url": "https://github.com/braveg1rl/performance-now", "description": "", "paths": [ "." @@ -11337,30 +8452,30 @@ ] }, { - "name": "postcss-focus-visible", - "url": "https://github.com/jonathantneal/postcss-focus-visible#readme", + "name": "picomatch", + "url": "https://github.com/micromatch/picomatch", "description": "", "paths": [ "." ], "licenses": [ - "CC0-1.0" + "MIT" ] }, { - "name": "postcss-focus-within", - "url": "https://github.com/jonathantneal/postcss-focus-within#readme", + "name": "pify", + "url": "sindresorhus.com", "description": "", "paths": [ "." ], "licenses": [ - "CC0-1.0" + "MIT" ] }, { - "name": "postcss-font-variant", - "url": "Unknown", + "name": "pify", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -11370,30 +8485,30 @@ ] }, { - "name": "postcss-gap-properties", - "url": "https://github.com/jonathantneal/postcss-gap-properties#readme", + "name": "pify", + "url": "sindresorhus.com", "description": "", "paths": [ "." ], "licenses": [ - "CC0-1.0" + "MIT" ] }, { - "name": "postcss-image-set-function", - "url": "https://github.com/jonathantneal/postcss-image-set-function#readme", + "name": "pixelmatch", + "url": "https://github.com/mapbox/pixelmatch#readme", "description": "", "paths": [ "." ], "licenses": [ - "CC0-1.0" + "ISC" ] }, { - "name": "postcss-import", - "url": "Unknown", + "name": "pkg-dir", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -11403,8 +8518,8 @@ ] }, { - "name": "postcss-import-resolver", - "url": "Unknown", + "name": "pngjs", + "url": "https://github.com/lukeapage/pngjs", "description": "", "paths": [ "." @@ -11414,8 +8529,8 @@ ] }, { - "name": "postcss-initial", - "url": "Unknown", + "name": "popper.js", + "url": "https://popper.js.org/", "description": "", "paths": [ "." @@ -11425,19 +8540,19 @@ ] }, { - "name": "postcss-lab-function", - "url": "https://github.com/jonathantneal/postcss-lab-function#readme", + "name": "posix-character-classes", + "url": "https://github.com/jonschlinkert/posix-character-classes", "description": "", "paths": [ "." ], "licenses": [ - "CC0-1.0" + "MIT" ] }, { - "name": "postcss-load-config", - "url": "https://github.com/michael-ciniawsky/postcss-load-config#readme", + "name": "postcss", + "url": "http://postcss.org/", "description": "", "paths": [ "." @@ -11447,8 +8562,8 @@ ] }, { - "name": "postcss-loader", - "url": "https://github.com/postcss/postcss-loader#readme", + "name": "postcss", + "url": "https://postcss.org/", "description": "", "paths": [ "." @@ -11458,18 +8573,18 @@ ] }, { - "name": "postcss-logical", - "url": "https://github.com/jonathantneal/postcss-logical#readme", + "name": "postcss-attribute-case-insensitive", + "url": "https://github.com/Semigradsky/postcss-attribute-case-insensitive#readme", "description": "", "paths": [ "." ], "licenses": [ - "CC0-1.0" + "MIT" ] }, { - "name": "postcss-media-minmax", + "name": "postcss-calc", "url": "Unknown", "description": "", "paths": [ @@ -11480,8 +8595,8 @@ ] }, { - "name": "postcss-merge-idents", - "url": "https://github.com/ben-eb/postcss-merge-idents", + "name": "postcss-calc", + "url": "Unknown", "description": "", "paths": [ "." @@ -11491,30 +8606,30 @@ ] }, { - "name": "postcss-merge-longhand", - "url": "https://github.com/ben-eb/postcss-merge-longhand", + "name": "postcss-color-functional-notation", + "url": "https://github.com/jonathantneal/postcss-color-functional-notation#readme", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "CC0-1.0" ] }, { - "name": "postcss-merge-longhand", - "url": "https://github.com/cssnano/cssnano", + "name": "postcss-color-gray", + "url": "https://github.com/postcss/postcss-color-gray#readme", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "postcss-merge-rules", - "url": "https://github.com/ben-eb/postcss-merge-rules", + "name": "postcss-color-hex-alpha", + "url": "https://github.com/postcss/postcss-color-hex-alpha#readme", "description": "", "paths": [ "." @@ -11524,18 +8639,18 @@ ] }, { - "name": "postcss-merge-rules", - "url": "https://github.com/cssnano/cssnano", + "name": "postcss-color-mod-function", + "url": "https://github.com/jonathantneal/postcss-color-mod-function#readme", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "CC0-1.0" ] }, { - "name": "postcss-message-helpers", + "name": "postcss-color-rebeccapurple", "url": "Unknown", "description": "", "paths": [ @@ -11546,8 +8661,8 @@ ] }, { - "name": "postcss-minify-font-values", - "url": "https://github.com/TrySound/postcss-minify-font-values", + "name": "postcss-colormin", + "url": "https://github.com/ben-eb/postcss-colormin", "description": "", "paths": [ "." @@ -11557,7 +8672,7 @@ ] }, { - "name": "postcss-minify-font-values", + "name": "postcss-colormin", "url": "https://github.com/cssnano/cssnano", "description": "", "paths": [ @@ -11568,8 +8683,8 @@ ] }, { - "name": "postcss-minify-gradients", - "url": "https://github.com/ben-eb/postcss-minify-gradients", + "name": "postcss-convert-values", + "url": "https://github.com/ben-eb/postcss-convert-values", "description": "", "paths": [ "." @@ -11579,7 +8694,7 @@ ] }, { - "name": "postcss-minify-gradients", + "name": "postcss-convert-values", "url": "https://github.com/cssnano/cssnano", "description": "", "paths": [ @@ -11590,8 +8705,8 @@ ] }, { - "name": "postcss-minify-params", - "url": "https://github.com/ben-eb/postcss-minify-params", + "name": "postcss-custom-media", + "url": "https://github.com/postcss/postcss-custom-media#readme", "description": "", "paths": [ "." @@ -11601,8 +8716,8 @@ ] }, { - "name": "postcss-minify-params", - "url": "https://github.com/cssnano/cssnano", + "name": "postcss-custom-properties", + "url": "https://github.com/postcss/postcss-custom-properties#readme", "description": "", "paths": [ "." @@ -11612,8 +8727,8 @@ ] }, { - "name": "postcss-minify-selectors", - "url": "https://github.com/ben-eb/postcss-minify-selectors", + "name": "postcss-custom-selectors", + "url": "https://github.com/postcss/postcss-custom-selectors#readme", "description": "", "paths": [ "." @@ -11623,8 +8738,19 @@ ] }, { - "name": "postcss-minify-selectors", - "url": "https://github.com/cssnano/cssnano", + "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": [ "." @@ -11634,19 +8760,19 @@ ] }, { - "name": "postcss-modules-extract-imports", - "url": "https://github.com/css-modules/postcss-modules-extract-imports", + "name": "postcss-discard-comments", + "url": "https://github.com/cssnano/cssnano", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "MIT" ] }, { - "name": "postcss-modules-local-by-default", - "url": "Unknown", + "name": "postcss-discard-duplicates", + "url": "https://github.com/ben-eb/postcss-discard-duplicates", "description": "", "paths": [ "." @@ -11656,41 +8782,41 @@ ] }, { - "name": "postcss-modules-scope", - "url": "https://github.com/css-modules/postcss-modules-scope", + "name": "postcss-discard-duplicates", + "url": "https://github.com/cssnano/cssnano", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "MIT" ] }, { - "name": "postcss-modules-values", - "url": "https://github.com/css-modules/postcss-modules-values#readme", + "name": "postcss-discard-empty", + "url": "https://github.com/ben-eb/postcss-discard-empty", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "MIT" ] }, { - "name": "postcss-nesting", - "url": "https://github.com/jonathantneal/postcss-nesting#readme", + "name": "postcss-discard-empty", + "url": "https://github.com/cssnano/cssnano", "description": "", "paths": [ "." ], "licenses": [ - "CC0-1.0" + "MIT" ] }, { - "name": "postcss-normalize-charset", - "url": "https://github.com/ben-eb/postcss-charset", + "name": "postcss-discard-overridden", + "url": "https://github.com/Justineo/postcss-discard-overridden", "description": "", "paths": [ "." @@ -11700,7 +8826,7 @@ ] }, { - "name": "postcss-normalize-charset", + "name": "postcss-discard-overridden", "url": "https://github.com/cssnano/cssnano", "description": "", "paths": [ @@ -11711,8 +8837,8 @@ ] }, { - "name": "postcss-normalize-display-values", - "url": "https://github.com/cssnano/cssnano", + "name": "postcss-discard-unused", + "url": "https://github.com/ben-eb/postcss-discard-unused", "description": "", "paths": [ "." @@ -11722,30 +8848,30 @@ ] }, { - "name": "postcss-normalize-positions", - "url": "https://github.com/cssnano/cssnano", + "name": "postcss-double-position-gradients", + "url": "https://github.com/jonathantneal/postcss-double-position-gradients#readme", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "CC0-1.0" ] }, { - "name": "postcss-normalize-repeat-style", - "url": "https://github.com/cssnano/cssnano", + "name": "postcss-env-function", + "url": "https://github.com/jonathantneal/postcss-env-function#readme", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "CC0-1.0" ] }, { - "name": "postcss-normalize-string", - "url": "https://github.com/cssnano/cssnano", + "name": "postcss-filter-plugins", + "url": "https://github.com/postcss/postcss-filter-plugins", "description": "", "paths": [ "." @@ -11755,30 +8881,30 @@ ] }, { - "name": "postcss-normalize-timing-functions", - "url": "https://github.com/cssnano/cssnano", + "name": "postcss-focus-visible", + "url": "https://github.com/jonathantneal/postcss-focus-visible#readme", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "CC0-1.0" ] }, { - "name": "postcss-normalize-unicode", - "url": "https://github.com/cssnano/cssnano", + "name": "postcss-focus-within", + "url": "https://github.com/jonathantneal/postcss-focus-within#readme", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "CC0-1.0" ] }, { - "name": "postcss-normalize-url", - "url": "https://github.com/ben-eb/postcss-normalize-url", + "name": "postcss-font-variant", + "url": "Unknown", "description": "", "paths": [ "." @@ -11788,30 +8914,30 @@ ] }, { - "name": "postcss-normalize-url", - "url": "https://github.com/cssnano/cssnano", + "name": "postcss-gap-properties", + "url": "https://github.com/jonathantneal/postcss-gap-properties#readme", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "CC0-1.0" ] }, { - "name": "postcss-normalize-whitespace", - "url": "https://github.com/cssnano/cssnano", + "name": "postcss-image-set-function", + "url": "https://github.com/jonathantneal/postcss-image-set-function#readme", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "CC0-1.0" ] }, { - "name": "postcss-ordered-values", - "url": "https://github.com/ben-eb/postcss-ordered-values", + "name": "postcss-import", + "url": "Unknown", "description": "", "paths": [ "." @@ -11821,8 +8947,8 @@ ] }, { - "name": "postcss-ordered-values", - "url": "https://github.com/cssnano/cssnano", + "name": "postcss-import-resolver", + "url": "Unknown", "description": "", "paths": [ "." @@ -11832,52 +8958,52 @@ ] }, { - "name": "postcss-overflow-shorthand", - "url": "https://github.com/jonathantneal/postcss-overflow-shorthand#readme", + "name": "postcss-initial", + "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "CC0-1.0" + "MIT" ] }, { - "name": "postcss-page-break", - "url": "https://github.com/shrpne/postcss-page-break", + "name": "postcss-lab-function", + "url": "https://github.com/jonathantneal/postcss-lab-function#readme", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "CC0-1.0" ] }, { - "name": "postcss-place", - "url": "https://github.com/jonathantneal/postcss-place#readme", + "name": "postcss-load-config", + "url": "https://github.com/michael-ciniawsky/postcss-load-config#readme", "description": "", "paths": [ "." ], "licenses": [ - "CC0-1.0" + "MIT" ] }, { - "name": "postcss-preset-env", - "url": "https://github.com/csstools/postcss-preset-env#readme", + "name": "postcss-loader", + "url": "https://github.com/postcss/postcss-loader#readme", "description": "", "paths": [ "." ], "licenses": [ - "CC0-1.0" + "MIT" ] }, { - "name": "postcss-pseudo-class-any-link", - "url": "https://github.com/jonathantneal/postcss-pseudo-class-any-link#readme", + "name": "postcss-logical", + "url": "https://github.com/jonathantneal/postcss-logical#readme", "description": "", "paths": [ "." @@ -11887,8 +9013,8 @@ ] }, { - "name": "postcss-reduce-idents", - "url": "https://github.com/ben-eb/postcss-reduce-idents", + "name": "postcss-media-minmax", + "url": "Unknown", "description": "", "paths": [ "." @@ -11898,8 +9024,8 @@ ] }, { - "name": "postcss-reduce-initial", - "url": "https://github.com/ben-eb/postcss-reduce-initial", + "name": "postcss-merge-idents", + "url": "https://github.com/ben-eb/postcss-merge-idents", "description": "", "paths": [ "." @@ -11909,8 +9035,8 @@ ] }, { - "name": "postcss-reduce-initial", - "url": "https://github.com/cssnano/cssnano", + "name": "postcss-merge-longhand", + "url": "https://github.com/ben-eb/postcss-merge-longhand", "description": "", "paths": [ "." @@ -11920,8 +9046,8 @@ ] }, { - "name": "postcss-reduce-transforms", - "url": "https://github.com/ben-eb/postcss-reduce-transforms", + "name": "postcss-merge-longhand", + "url": "https://github.com/cssnano/cssnano", "description": "", "paths": [ "." @@ -11931,8 +9057,8 @@ ] }, { - "name": "postcss-reduce-transforms", - "url": "https://github.com/cssnano/cssnano", + "name": "postcss-merge-rules", + "url": "https://github.com/ben-eb/postcss-merge-rules", "description": "", "paths": [ "." @@ -11942,8 +9068,8 @@ ] }, { - "name": "postcss-replace-overflow-wrap", - "url": "https://github.com/MattDiMu/postcss-replace-overflow-wrap", + "name": "postcss-merge-rules", + "url": "https://github.com/cssnano/cssnano", "description": "", "paths": [ "." @@ -11953,7 +9079,7 @@ ] }, { - "name": "postcss-selector-matches", + "name": "postcss-message-helpers", "url": "Unknown", "description": "", "paths": [ @@ -11964,8 +9090,8 @@ ] }, { - "name": "postcss-selector-not", - "url": "Unknown", + "name": "postcss-minify-font-values", + "url": "https://github.com/TrySound/postcss-minify-font-values", "description": "", "paths": [ "." @@ -11975,8 +9101,8 @@ ] }, { - "name": "postcss-selector-parser", - "url": "https://github.com/postcss/postcss-selector-parser", + "name": "postcss-minify-font-values", + "url": "https://github.com/cssnano/cssnano", "description": "", "paths": [ "." @@ -11986,8 +9112,8 @@ ] }, { - "name": "postcss-selector-parser", - "url": "https://github.com/postcss/postcss-selector-parser", + "name": "postcss-minify-gradients", + "url": "https://github.com/ben-eb/postcss-minify-gradients", "description": "", "paths": [ "." @@ -11997,8 +9123,8 @@ ] }, { - "name": "postcss-selector-parser", - "url": "https://github.com/postcss/postcss-selector-parser", + "name": "postcss-minify-gradients", + "url": "https://github.com/cssnano/cssnano", "description": "", "paths": [ "." @@ -12008,8 +9134,8 @@ ] }, { - "name": "postcss-selector-parser", - "url": "https://github.com/postcss/postcss-selector-parser", + "name": "postcss-minify-params", + "url": "https://github.com/ben-eb/postcss-minify-params", "description": "", "paths": [ "." @@ -12019,8 +9145,8 @@ ] }, { - "name": "postcss-svgo", - "url": "https://github.com/ben-eb/postcss-svgo", + "name": "postcss-minify-params", + "url": "https://github.com/cssnano/cssnano", "description": "", "paths": [ "." @@ -12030,8 +9156,8 @@ ] }, { - "name": "postcss-svgo", - "url": "https://github.com/cssnano/cssnano", + "name": "postcss-minify-selectors", + "url": "https://github.com/ben-eb/postcss-minify-selectors", "description": "", "paths": [ "." @@ -12041,8 +9167,8 @@ ] }, { - "name": "postcss-unique-selectors", - "url": "https://github.com/ben-eb/postcss-unique-selectors", + "name": "postcss-minify-selectors", + "url": "https://github.com/cssnano/cssnano", "description": "", "paths": [ "." @@ -12052,18 +9178,18 @@ ] }, { - "name": "postcss-unique-selectors", - "url": "https://github.com/cssnano/cssnano", + "name": "postcss-modules-extract-imports", + "url": "https://github.com/css-modules/postcss-modules-extract-imports", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "postcss-url", + "name": "postcss-modules-local-by-default", "url": "Unknown", "description": "", "paths": [ @@ -12074,41 +9200,41 @@ ] }, { - "name": "postcss-value-parser", - "url": "https://github.com/TrySound/postcss-value-parser", + "name": "postcss-modules-scope", + "url": "https://github.com/css-modules/postcss-modules-scope", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "postcss-values-parser", - "url": "shellscape", + "name": "postcss-modules-values", + "url": "https://github.com/css-modules/postcss-modules-values#readme", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "postcss-zindex", - "url": "https://github.com/ben-eb/postcss-zindex", + "name": "postcss-nesting", + "url": "https://github.com/jonathantneal/postcss-nesting#readme", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "CC0-1.0" ] }, { - "name": "prelude-ls", - "url": "http://preludels.com/", + "name": "postcss-normalize-charset", + "url": "https://github.com/ben-eb/postcss-charset", "description": "", "paths": [ "." @@ -12118,8 +9244,8 @@ ] }, { - "name": "prepend-http", - "url": "sindresorhus.com", + "name": "postcss-normalize-charset", + "url": "https://github.com/cssnano/cssnano", "description": "", "paths": [ "." @@ -12129,8 +9255,8 @@ ] }, { - "name": "prepend-http", - "url": "sindresorhus.com", + "name": "postcss-normalize-display-values", + "url": "https://github.com/cssnano/cssnano", "description": "", "paths": [ "." @@ -12140,8 +9266,8 @@ ] }, { - "name": "preserve", - "url": "https://github.com/jonschlinkert/preserve", + "name": "postcss-normalize-positions", + "url": "https://github.com/cssnano/cssnano", "description": "", "paths": [ "." @@ -12151,8 +9277,8 @@ ] }, { - "name": "prettier", - "url": "https://prettier.io/", + "name": "postcss-normalize-repeat-style", + "url": "https://github.com/cssnano/cssnano", "description": "", "paths": [ "." @@ -12162,8 +9288,8 @@ ] }, { - "name": "pretty-bytes", - "url": "sindresorhus.com", + "name": "postcss-normalize-string", + "url": "https://github.com/cssnano/cssnano", "description": "", "paths": [ "." @@ -12173,8 +9299,8 @@ ] }, { - "name": "pretty-error", - "url": "Unknown", + "name": "postcss-normalize-timing-functions", + "url": "https://github.com/cssnano/cssnano", "description": "", "paths": [ "." @@ -12184,8 +9310,8 @@ ] }, { - "name": "pretty-time", - "url": "https://github.com/jonschlinkert/pretty-time", + "name": "postcss-normalize-unicode", + "url": "https://github.com/cssnano/cssnano", "description": "", "paths": [ "." @@ -12195,8 +9321,8 @@ ] }, { - "name": "private", - "url": "http://github.com/benjamn/private", + "name": "postcss-normalize-url", + "url": "https://github.com/ben-eb/postcss-normalize-url", "description": "", "paths": [ "." @@ -12206,8 +9332,8 @@ ] }, { - "name": "process", - "url": "Unknown", + "name": "postcss-normalize-url", + "url": "https://github.com/cssnano/cssnano", "description": "", "paths": [ "." @@ -12217,8 +9343,8 @@ ] }, { - "name": "process", - "url": "Unknown", + "name": "postcss-normalize-whitespace", + "url": "https://github.com/cssnano/cssnano", "description": "", "paths": [ "." @@ -12228,8 +9354,8 @@ ] }, { - "name": "process-nextick-args", - "url": "https://github.com/calvinmetcalf/process-nextick-args", + "name": "postcss-ordered-values", + "url": "https://github.com/ben-eb/postcss-ordered-values", "description": "", "paths": [ "." @@ -12239,8 +9365,8 @@ ] }, { - "name": "progress", - "url": "Unknown", + "name": "postcss-ordered-values", + "url": "https://github.com/cssnano/cssnano", "description": "", "paths": [ "." @@ -12250,19 +9376,19 @@ ] }, { - "name": "promise-inflight", - "url": "https://github.com/iarna/promise-inflight#readme", + "name": "postcss-overflow-shorthand", + "url": "https://github.com/jonathantneal/postcss-overflow-shorthand#readme", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "CC0-1.0" ] }, { - "name": "proper-lockfile", - "url": "https://github.com/moxystudio/node-proper-lockfile", + "name": "postcss-page-break", + "url": "https://github.com/shrpne/postcss-page-break", "description": "", "paths": [ "." @@ -12272,41 +9398,41 @@ ] }, { - "name": "proxy-addr", - "url": "Unknown", + "name": "postcss-place", + "url": "https://github.com/jonathantneal/postcss-place#readme", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "CC0-1.0" ] }, { - "name": "prr", - "url": "https://github.com/rvagg/prr", + "name": "postcss-preset-env", + "url": "https://github.com/csstools/postcss-preset-env#readme", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "CC0-1.0" ] }, { - "name": "pseudomap", - "url": "https://github.com/isaacs/pseudomap#readme", + "name": "postcss-pseudo-class-any-link", + "url": "https://github.com/jonathantneal/postcss-pseudo-class-any-link#readme", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "CC0-1.0" ] }, { - "name": "public-encrypt", - "url": "https://github.com/crypto-browserify/publicEncrypt", + "name": "postcss-reduce-idents", + "url": "https://github.com/ben-eb/postcss-reduce-idents", "description": "", "paths": [ "." @@ -12316,8 +9442,8 @@ ] }, { - "name": "pump", - "url": "Unknown", + "name": "postcss-reduce-initial", + "url": "https://github.com/ben-eb/postcss-reduce-initial", "description": "", "paths": [ "." @@ -12327,8 +9453,8 @@ ] }, { - "name": "pump", - "url": "Unknown", + "name": "postcss-reduce-initial", + "url": "https://github.com/cssnano/cssnano", "description": "", "paths": [ "." @@ -12338,8 +9464,8 @@ ] }, { - "name": "pumpify", - "url": "https://github.com/mafintosh/pumpify", + "name": "postcss-reduce-transforms", + "url": "https://github.com/ben-eb/postcss-reduce-transforms", "description": "", "paths": [ "." @@ -12349,8 +9475,8 @@ ] }, { - "name": "punycode", - "url": "https://mths.be/punycode", + "name": "postcss-reduce-transforms", + "url": "https://github.com/cssnano/cssnano", "description": "", "paths": [ "." @@ -12360,8 +9486,8 @@ ] }, { - "name": "punycode", - "url": "https://mths.be/punycode", + "name": "postcss-replace-overflow-wrap", + "url": "https://github.com/MattDiMu/postcss-replace-overflow-wrap", "description": "", "paths": [ "." @@ -12371,8 +9497,8 @@ ] }, { - "name": "punycode", - "url": "https://mths.be/punycode", + "name": "postcss-selector-matches", + "url": "Unknown", "description": "", "paths": [ "." @@ -12382,8 +9508,8 @@ ] }, { - "name": "q", - "url": "https://github.com/kriskowal/q", + "name": "postcss-selector-not", + "url": "Unknown", "description": "", "paths": [ "." @@ -12393,41 +9519,41 @@ ] }, { - "name": "qs", - "url": "https://github.com/hapijs/qs", + "name": "postcss-selector-parser", + "url": "https://github.com/postcss/postcss-selector-parser", "description": "", "paths": [ "." ], "licenses": [ - "see license in license" + "MIT" ] }, { - "name": "qs", - "url": "https://github.com/ljharb/qs", + "name": "postcss-selector-parser", + "url": "https://github.com/postcss/postcss-selector-parser", "description": "", "paths": [ "." ], "licenses": [ - "BSD-3-Clause" + "MIT" ] }, { - "name": "qs", - "url": "https://github.com/ljharb/qs", + "name": "postcss-selector-parser", + "url": "https://github.com/postcss/postcss-selector-parser", "description": "", "paths": [ "." ], "licenses": [ - "BSD-3-Clause" + "MIT" ] }, { - "name": "query-string", - "url": "sindresorhus.com", + "name": "postcss-selector-parser", + "url": "https://github.com/postcss/postcss-selector-parser", "description": "", "paths": [ "." @@ -12437,8 +9563,8 @@ ] }, { - "name": "query-string", - "url": "sindresorhus.com", + "name": "postcss-svgo", + "url": "https://github.com/ben-eb/postcss-svgo", "description": "", "paths": [ "." @@ -12448,8 +9574,8 @@ ] }, { - "name": "querystring", - "url": "Unknown", + "name": "postcss-svgo", + "url": "https://github.com/cssnano/cssnano", "description": "", "paths": [ "." @@ -12459,8 +9585,8 @@ ] }, { - "name": "querystring-es3", - "url": "Unknown", + "name": "postcss-unique-selectors", + "url": "https://github.com/ben-eb/postcss-unique-selectors", "description": "", "paths": [ "." @@ -12470,8 +9596,8 @@ ] }, { - "name": "randomatic", - "url": "https://github.com/jonschlinkert/randomatic", + "name": "postcss-unique-selectors", + "url": "https://github.com/cssnano/cssnano", "description": "", "paths": [ "." @@ -12481,8 +9607,8 @@ ] }, { - "name": "randombytes", - "url": "https://github.com/crypto-browserify/randombytes", + "name": "postcss-url", + "url": "Unknown", "description": "", "paths": [ "." @@ -12492,8 +9618,8 @@ ] }, { - "name": "randomfill", - "url": "https://github.com/crypto-browserify/randomfill", + "name": "postcss-value-parser", + "url": "https://github.com/TrySound/postcss-value-parser", "description": "", "paths": [ "." @@ -12503,8 +9629,8 @@ ] }, { - "name": "range-parser", - "url": "http://tjholowaychuk.com", + "name": "postcss-values-parser", + "url": "shellscape", "description": "", "paths": [ "." @@ -12514,8 +9640,8 @@ ] }, { - "name": "raw-body", - "url": "http://jongleberry.com", + "name": "postcss-zindex", + "url": "https://github.com/ben-eb/postcss-zindex", "description": "", "paths": [ "." @@ -12525,8 +9651,8 @@ ] }, { - "name": "raw-loader", - "url": "Unknown", + "name": "prepend-http", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -12536,19 +9662,19 @@ ] }, { - "name": "rc", - "url": "dominictarr.com", + "name": "prepend-http", + "url": "sindresorhus.com", "description": "", "paths": [ "." ], "licenses": [ - "(bsd-2-clause or mit or apache-2.0)" + "MIT" ] }, { - "name": "read-cache", - "url": "https://github.com/TrySound/read-cache#readme", + "name": "preserve", + "url": "https://github.com/jonschlinkert/preserve", "description": "", "paths": [ "." @@ -12558,8 +9684,8 @@ ] }, { - "name": "read-chunk", - "url": "http://sindresorhus.com", + "name": "prettier", + "url": "https://prettier.io/", "description": "", "paths": [ "." @@ -12569,7 +9695,7 @@ ] }, { - "name": "read-pkg", + "name": "pretty-bytes", "url": "sindresorhus.com", "description": "", "paths": [ @@ -12580,8 +9706,8 @@ ] }, { - "name": "read-pkg", - "url": "sindresorhus.com", + "name": "pretty-error", + "url": "Unknown", "description": "", "paths": [ "." @@ -12591,8 +9717,8 @@ ] }, { - "name": "read-pkg-up", - "url": "sindresorhus.com", + "name": "pretty-time", + "url": "https://github.com/jonschlinkert/pretty-time", "description": "", "paths": [ "." @@ -12602,8 +9728,8 @@ ] }, { - "name": "read-pkg-up", - "url": "sindresorhus.com", + "name": "private", + "url": "http://github.com/benjamn/private", "description": "", "paths": [ "." @@ -12613,8 +9739,8 @@ ] }, { - "name": "readable-stream", - "url": "http://blog.izs.me/", + "name": "process", + "url": "Unknown", "description": "", "paths": [ "." @@ -12624,7 +9750,7 @@ ] }, { - "name": "readable-stream", + "name": "process", "url": "Unknown", "description": "", "paths": [ @@ -12635,8 +9761,8 @@ ] }, { - "name": "readable-stream", - "url": "Unknown", + "name": "process-nextick-args", + "url": "https://github.com/calvinmetcalf/process-nextick-args", "description": "", "paths": [ "." @@ -12646,19 +9772,19 @@ ] }, { - "name": "readdirp", - "url": "https://github.com/paulmillr/readdirp", + "name": "promise-inflight", + "url": "https://github.com/iarna/promise-inflight#readme", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "readdirp", - "url": "https://github.com/paulmillr/readdirp", + "name": "proper-lockfile", + "url": "https://github.com/moxystudio/node-proper-lockfile", "description": "", "paths": [ "." @@ -12668,7 +9794,7 @@ ] }, { - "name": "reduce-css-calc", + "name": "proxy-addr", "url": "Unknown", "description": "", "paths": [ @@ -12679,8 +9805,8 @@ ] }, { - "name": "reduce-function-call", - "url": "Unknown", + "name": "prr", + "url": "https://github.com/rvagg/prr", "description": "", "paths": [ "." @@ -12690,19 +9816,19 @@ ] }, { - "name": "regenerate", - "url": "https://mths.be/regenerate", + "name": "pseudomap", + "url": "https://github.com/isaacs/pseudomap#readme", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "regenerate-unicode-properties", - "url": "https://github.com/mathiasbynens/regenerate-unicode-properties", + "name": "public-encrypt", + "url": "https://github.com/crypto-browserify/publicEncrypt", "description": "", "paths": [ "." @@ -12712,7 +9838,7 @@ ] }, { - "name": "regenerator-runtime", + "name": "pump", "url": "Unknown", "description": "", "paths": [ @@ -12723,7 +9849,7 @@ ] }, { - "name": "regenerator-runtime", + "name": "pump", "url": "Unknown", "description": "", "paths": [ @@ -12734,8 +9860,8 @@ ] }, { - "name": "regenerator-transform", - "url": "Unknown", + "name": "pumpify", + "url": "https://github.com/mafintosh/pumpify", "description": "", "paths": [ "." @@ -12745,8 +9871,8 @@ ] }, { - "name": "regex-cache", - "url": "https://github.com/jonschlinkert/regex-cache", + "name": "punycode", + "url": "https://mths.be/punycode", "description": "", "paths": [ "." @@ -12756,8 +9882,8 @@ ] }, { - "name": "regex-not", - "url": "https://github.com/jonschlinkert/regex-not", + "name": "punycode", + "url": "https://mths.be/punycode", "description": "", "paths": [ "." @@ -12767,8 +9893,8 @@ ] }, { - "name": "regexp-tree", - "url": "https://github.com/DmitrySoshnikov/regexp-tree", + "name": "punycode", + "url": "https://mths.be/punycode", "description": "", "paths": [ "." @@ -12778,8 +9904,8 @@ ] }, { - "name": "regexpu-core", - "url": "https://mths.be/regexpu", + "name": "q", + "url": "https://github.com/kriskowal/q", "description": "", "paths": [ "." @@ -12789,30 +9915,30 @@ ] }, { - "name": "regjsgen", - "url": "https://github.com/bnjmnt4n/regjsgen", + "name": "qs", + "url": "https://github.com/ljharb/qs", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "BSD-3-Clause" ] }, { - "name": "regjsparser", - "url": "https://github.com/jviereck/regjsparser", + "name": "qs", + "url": "https://github.com/ljharb/qs", "description": "", "paths": [ "." ], "licenses": [ - "BSD-2-Clause" + "BSD-3-Clause" ] }, { - "name": "relateurl", - "url": "https://github.com/stevenvachon/relateurl", + "name": "query-string", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -12822,18 +9948,18 @@ ] }, { - "name": "remove-trailing-separator", - "url": "https://github.com/darsain/remove-trailing-separator#readme", + "name": "query-string", + "url": "sindresorhus.com", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "MIT" ] }, { - "name": "renderkid", + "name": "querystring", "url": "Unknown", "description": "", "paths": [ @@ -12844,8 +9970,8 @@ ] }, { - "name": "repeat-element", - "url": "https://github.com/jonschlinkert/repeat-element", + "name": "querystring-es3", + "url": "Unknown", "description": "", "paths": [ "." @@ -12855,8 +9981,8 @@ ] }, { - "name": "repeat-string", - "url": "https://github.com/jonschlinkert/repeat-string", + "name": "randomatic", + "url": "https://github.com/jonschlinkert/randomatic", "description": "", "paths": [ "." @@ -12866,8 +9992,8 @@ ] }, { - "name": "repeating", - "url": "sindresorhus.com", + "name": "randombytes", + "url": "https://github.com/crypto-browserify/randombytes", "description": "", "paths": [ "." @@ -12877,63 +10003,63 @@ ] }, { - "name": "request", - "url": "Unknown", + "name": "randomfill", + "url": "https://github.com/crypto-browserify/randomfill", "description": "", "paths": [ "." ], "licenses": [ - "Apache-2.0" + "MIT" ] }, { - "name": "request", - "url": "Unknown", + "name": "range-parser", + "url": "http://tjholowaychuk.com", "description": "", "paths": [ "." ], "licenses": [ - "Apache-2.0" + "MIT" ] }, { - "name": "request-promise-core", - "url": "https://github.com/request/promise-core#readme", + "name": "raw-body", + "url": "http://jongleberry.com", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "MIT" ] }, { - "name": "request-promise-native", - "url": "https://github.com/request/request-promise-native#readme", + "name": "raw-loader", + "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "MIT" ] }, { - "name": "require-directory", - "url": "https://github.com/troygoode/node-require-directory/", + "name": "rc", + "url": "dominictarr.com", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "(bsd-2-clause or mit or apache-2.0)" ] }, { - "name": "require-from-string", - "url": "github.com/floatdrop", + "name": "read-cache", + "url": "https://github.com/TrySound/read-cache#readme", "description": "", "paths": [ "." @@ -12943,19 +10069,19 @@ ] }, { - "name": "require-main-filename", - "url": "https://github.com/yargs/require-main-filename#readme", + "name": "read-chunk", + "url": "http://sindresorhus.com", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "MIT" ] }, { - "name": "require-uncached", - "url": "sindresorhus.com", + "name": "readable-stream", + "url": "Unknown", "description": "", "paths": [ "." @@ -12965,8 +10091,8 @@ ] }, { - "name": "requires-port", - "url": "https://github.com/unshiftio/requires-port", + "name": "readable-stream", + "url": "Unknown", "description": "", "paths": [ "." @@ -12976,8 +10102,8 @@ ] }, { - "name": "resolve", - "url": "http://substack.net", + "name": "readdirp", + "url": "https://github.com/paulmillr/readdirp", "description": "", "paths": [ "." @@ -12987,8 +10113,8 @@ ] }, { - "name": "resolve", - "url": "http://substack.net", + "name": "readdirp", + "url": "https://github.com/paulmillr/readdirp", "description": "", "paths": [ "." @@ -12998,8 +10124,8 @@ ] }, { - "name": "resolve-from", - "url": "sindresorhus.com", + "name": "reduce-css-calc", + "url": "Unknown", "description": "", "paths": [ "." @@ -13009,8 +10135,8 @@ ] }, { - "name": "resolve-from", - "url": "sindresorhus.com", + "name": "reduce-function-call", + "url": "Unknown", "description": "", "paths": [ "." @@ -13020,8 +10146,8 @@ ] }, { - "name": "resolve-from", - "url": "sindresorhus.com", + "name": "regenerate", + "url": "https://mths.be/regenerate", "description": "", "paths": [ "." @@ -13031,8 +10157,8 @@ ] }, { - "name": "resolve-url", - "url": "Unknown", + "name": "regenerate-unicode-properties", + "url": "https://github.com/mathiasbynens/regenerate-unicode-properties", "description": "", "paths": [ "." @@ -13042,8 +10168,8 @@ ] }, { - "name": "restore-cursor", - "url": "sindresorhus.com", + "name": "regenerator-runtime", + "url": "Unknown", "description": "", "paths": [ "." @@ -13053,8 +10179,8 @@ ] }, { - "name": "resumer", - "url": "https://github.com/substack/resumer", + "name": "regenerator-transform", + "url": "Unknown", "description": "", "paths": [ "." @@ -13064,8 +10190,8 @@ ] }, { - "name": "ret", - "url": "https://github.com/fent", + "name": "regex-cache", + "url": "https://github.com/jonschlinkert/regex-cache", "description": "", "paths": [ "." @@ -13075,8 +10201,8 @@ ] }, { - "name": "retry", - "url": "https://github.com/tim-kos/node-retry", + "name": "regex-not", + "url": "https://github.com/jonschlinkert/regex-not", "description": "", "paths": [ "." @@ -13086,8 +10212,8 @@ ] }, { - "name": "rgb-regex", - "url": "https://github.com/regexps/rgb-regex", + "name": "regexp-tree", + "url": "https://github.com/DmitrySoshnikov/regexp-tree", "description": "", "paths": [ "." @@ -13097,8 +10223,8 @@ ] }, { - "name": "rgba-regex", - "url": "https://github.com/johnotander/rgba-regex", + "name": "regexpu-core", + "url": "https://mths.be/regexpu", "description": "", "paths": [ "." @@ -13108,8 +10234,8 @@ ] }, { - "name": "right-align", - "url": "https://github.com/jonschlinkert/right-align", + "name": "regjsgen", + "url": "https://github.com/bnjmnt4n/regjsgen", "description": "", "paths": [ "." @@ -13119,40 +10245,40 @@ ] }, { - "name": "rimraf", - "url": "http://blog.izs.me/", + "name": "regjsparser", + "url": "https://github.com/jviereck/regjsparser", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "BSD-2-Clause" ] }, { - "name": "rimraf", - "url": "http://blog.izs.me/", + "name": "relateurl", + "url": "https://github.com/stevenvachon/relateurl", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "MIT" ] }, { - "name": "ripemd160", - "url": "Unknown", + "name": "remove-trailing-separator", + "url": "https://github.com/darsain/remove-trailing-separator#readme", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "run-async", + "name": "renderkid", "url": "Unknown", "description": "", "paths": [ @@ -13163,19 +10289,19 @@ ] }, { - "name": "run-queue", - "url": "https://npmjs.com/package/run-queue", + "name": "repeat-element", + "url": "https://github.com/jonschlinkert/repeat-element", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "MIT" ] }, { - "name": "rupture", - "url": "Unknown", + "name": "repeat-string", + "url": "https://github.com/jonschlinkert/repeat-string", "description": "", "paths": [ "." @@ -13185,8 +10311,8 @@ ] }, { - "name": "rx-lite", - "url": "https://github.com/Reactive-Extensions/RxJS", + "name": "request", + "url": "Unknown", "description": "", "paths": [ "." @@ -13196,19 +10322,19 @@ ] }, { - "name": "rx-lite-aggregates", - "url": "https://github.com/Reactive-Extensions/RxJS", + "name": "require-from-string", + "url": "github.com/floatdrop", "description": "", "paths": [ "." ], "licenses": [ - "Apache-2.0" + "MIT" ] }, { - "name": "safe-buffer", - "url": "https://github.com/feross/safe-buffer", + "name": "requires-port", + "url": "https://github.com/unshiftio/requires-port", "description": "", "paths": [ "." @@ -13218,8 +10344,8 @@ ] }, { - "name": "safe-regex", - "url": "https://github.com/substack/safe-regex", + "name": "resolve", + "url": "http://substack.net", "description": "", "paths": [ "." @@ -13229,8 +10355,8 @@ ] }, { - "name": "safer-buffer", - "url": "https://github.com/ChALkeR", + "name": "resolve-from", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -13240,30 +10366,30 @@ ] }, { - "name": "sax", - "url": "http://blog.izs.me/", + "name": "resolve-url", + "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "BSD-4-Clause" + "MIT" ] }, { - "name": "sax", - "url": "http://blog.izs.me/", + "name": "ret", + "url": "https://github.com/fent", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "MIT" ] }, { - "name": "schema-utils", - "url": "https://github.com/webpack-contrib/schema-utils", + "name": "retry", + "url": "https://github.com/tim-kos/node-retry", "description": "", "paths": [ "." @@ -13273,30 +10399,30 @@ ] }, { - "name": "semver", - "url": "Unknown", + "name": "rgb-regex", + "url": "https://github.com/regexps/rgb-regex", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "MIT" ] }, { - "name": "semver", - "url": "Unknown", + "name": "rgba-regex", + "url": "https://github.com/johnotander/rgba-regex", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "MIT" ] }, { - "name": "semver", - "url": "Unknown", + "name": "rimraf", + "url": "http://blog.izs.me/", "description": "", "paths": [ "." @@ -13306,8 +10432,8 @@ ] }, { - "name": "semver", - "url": "Unknown", + "name": "rimraf", + "url": "http://blog.izs.me/", "description": "", "paths": [ "." @@ -13317,7 +10443,7 @@ ] }, { - "name": "send", + "name": "ripemd160", "url": "Unknown", "description": "", "paths": [ @@ -13328,19 +10454,19 @@ ] }, { - "name": "serialize-javascript", - "url": "https://github.com/yahoo/serialize-javascript", + "name": "run-queue", + "url": "https://npmjs.com/package/run-queue", "description": "", "paths": [ "." ], "licenses": [ - "BSD-3-Clause" + "ISC" ] }, { - "name": "serve-placeholder", - "url": "Unknown", + "name": "safe-buffer", + "url": "https://github.com/feross/safe-buffer", "description": "", "paths": [ "." @@ -13350,8 +10476,8 @@ ] }, { - "name": "serve-static", - "url": "Unknown", + "name": "safe-regex", + "url": "https://github.com/substack/safe-regex", "description": "", "paths": [ "." @@ -13361,19 +10487,19 @@ ] }, { - "name": "server-destroy", - "url": "http://blog.izs.me", + "name": "safer-buffer", + "url": "https://github.com/ChALkeR", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "MIT" ] }, { - "name": "set-blocking", - "url": "https://github.com/yargs/set-blocking#readme", + "name": "sax", + "url": "http://blog.izs.me/", "description": "", "paths": [ "." @@ -13383,8 +10509,8 @@ ] }, { - "name": "set-value", - "url": "https://github.com/jonschlinkert/set-value", + "name": "schema-utils", + "url": "https://github.com/webpack-contrib/schema-utils", "description": "", "paths": [ "." @@ -13394,30 +10520,30 @@ ] }, { - "name": "set-value", - "url": "https://github.com/jonschlinkert/set-value", + "name": "semver", + "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "setimmediate", + "name": "semver", "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "setprototypeof", - "url": "https://github.com/wesleytodd/setprototypeof", + "name": "semver", + "url": "Unknown", "description": "", "paths": [ "." @@ -13427,30 +10553,30 @@ ] }, { - "name": "sha.js", - "url": "https://github.com/crypto-browserify/sha.js", + "name": "send", + "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "(mit and bsd-3-clause)" + "MIT" ] }, { - "name": "shebang-command", - "url": "github.com/kevva", + "name": "serialize-javascript", + "url": "https://github.com/yahoo/serialize-javascript", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "BSD-3-Clause" ] }, { - "name": "shebang-regex", - "url": "sindresorhus.com", + "name": "serve-placeholder", + "url": "Unknown", "description": "", "paths": [ "." @@ -13460,8 +10586,8 @@ ] }, { - "name": "shell-quote", - "url": "http://substack.net", + "name": "serve-static", + "url": "Unknown", "description": "", "paths": [ "." @@ -13471,8 +10597,8 @@ ] }, { - "name": "signal-exit", - "url": "https://github.com/tapjs/signal-exit", + "name": "server-destroy", + "url": "http://blog.izs.me", "description": "", "paths": [ "." @@ -13482,19 +10608,19 @@ ] }, { - "name": "simple-swizzle", - "url": "http://github.com/qix-", + "name": "set-blocking", + "url": "https://github.com/yargs/set-blocking#readme", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "sitemap", - "url": "Unknown", + "name": "set-value", + "url": "https://github.com/jonschlinkert/set-value", "description": "", "paths": [ "." @@ -13504,8 +10630,8 @@ ] }, { - "name": "slice-ansi", - "url": "Unknown", + "name": "set-value", + "url": "https://github.com/jonschlinkert/set-value", "description": "", "paths": [ "." @@ -13515,18 +10641,7 @@ ] }, { - "name": "slide", - "url": "http://blog.izs.me/", - "description": "", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] - }, - { - "name": "slideout", + "name": "setimmediate", "url": "Unknown", "description": "", "paths": [ @@ -13537,63 +10652,52 @@ ] }, { - "name": "snapdragon", - "url": "https://github.com/jonschlinkert/snapdragon", - "description": "", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "snapdragon-node", - "url": "https://github.com/jonschlinkert/snapdragon-node", + "name": "setprototypeof", + "url": "https://github.com/wesleytodd/setprototypeof", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "snapdragon-util", - "url": "https://github.com/jonschlinkert/snapdragon-util", + "name": "sha.js", + "url": "https://github.com/crypto-browserify/sha.js", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "(mit and bsd-3-clause)" ] }, - { - "name": "sntp", - "url": "http://hueniverse.com", + { + "name": "shebang-command", + "url": "github.com/kevva", "description": "", "paths": [ "." ], "licenses": [ - "BSD-3-Clause" + "MIT" ] }, { - "name": "sntp", - "url": "http://hueniverse.com", + "name": "shebang-regex", + "url": "sindresorhus.com", "description": "", "paths": [ "." ], "licenses": [ - "BSD-3-Clause" + "MIT" ] }, { - "name": "sort-keys", - "url": "sindresorhus.com", + "name": "shell-quote", + "url": "http://substack.net", "description": "", "paths": [ "." @@ -13603,19 +10707,19 @@ ] }, { - "name": "sort-keys", - "url": "sindresorhus.com", + "name": "signal-exit", + "url": "https://github.com/tapjs/signal-exit", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "source-list-map", - "url": "https://github.com/webpack/source-list-map", + "name": "simple-swizzle", + "url": "http://github.com/qix-", "description": "", "paths": [ "." @@ -13625,8 +10729,8 @@ ] }, { - "name": "source-list-map", - "url": "https://github.com/webpack/source-list-map", + "name": "sitemap", + "url": "Unknown", "description": "", "paths": [ "." @@ -13636,52 +10740,52 @@ ] }, { - "name": "source-map", - "url": "https://github.com/mozilla/source-map", + "name": "slideout", + "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "BSD-3-Clause" + "MIT" ] }, { - "name": "source-map", - "url": "https://github.com/mozilla/source-map", + "name": "snapdragon", + "url": "https://github.com/jonschlinkert/snapdragon", "description": "", "paths": [ "." ], "licenses": [ - "BSD-3-Clause" + "MIT" ] }, { - "name": "source-map", - "url": "https://github.com/mozilla/source-map", + "name": "snapdragon-node", + "url": "https://github.com/jonschlinkert/snapdragon-node", "description": "", "paths": [ "." ], "licenses": [ - "BSD-3-Clause" + "MIT" ] }, { - "name": "source-map", - "url": "https://github.com/mozilla/source-map", + "name": "snapdragon-util", + "url": "https://github.com/jonschlinkert/snapdragon-util", "description": "", "paths": [ "." ], "licenses": [ - "BSD-3-Clause" + "MIT" ] }, { - "name": "source-map", - "url": "https://github.com/mozilla/source-map", + "name": "sntp", + "url": "http://hueniverse.com", "description": "", "paths": [ "." @@ -13691,8 +10795,8 @@ ] }, { - "name": "source-map-resolve", - "url": "Unknown", + "name": "sort-keys", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -13702,8 +10806,8 @@ ] }, { - "name": "source-map-support", - "url": "Unknown", + "name": "sort-keys", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -13713,8 +10817,8 @@ ] }, { - "name": "source-map-url", - "url": "Unknown", + "name": "source-list-map", + "url": "https://github.com/webpack/source-list-map", "description": "", "paths": [ "." @@ -13724,41 +10828,41 @@ ] }, { - "name": "spawn-wrap", - "url": "https://github.com/isaacs/spawn-wrap#readme", + "name": "source-map", + "url": "https://github.com/mozilla/source-map", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "BSD-3-Clause" ] }, { - "name": "spdx-correct", - "url": "https://kemitchell.com", + "name": "source-map", + "url": "https://github.com/mozilla/source-map", "description": "", "paths": [ "." ], "licenses": [ - "Apache-2.0" + "BSD-3-Clause" ] }, { - "name": "spdx-exceptions", - "url": "Unknown", + "name": "source-map", + "url": "https://github.com/mozilla/source-map", "description": "", "paths": [ "." ], "licenses": [ - "CC-BY-3.0" + "BSD-3-Clause" ] }, { - "name": "spdx-expression-parse", - "url": "http://kemitchell.com", + "name": "source-map-resolve", + "url": "Unknown", "description": "", "paths": [ "." @@ -13768,25 +10872,25 @@ ] }, { - "name": "spdx-license-ids", - "url": "https://github.com/shinnn", + "name": "source-map-support", + "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "CC0-1.0" + "MIT" ] }, { - "name": "split", - "url": "http://github.com/dominictarr/split", + "name": "source-map-url", + "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "mit*" + "MIT" ] }, { @@ -13899,17 +11003,6 @@ "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", @@ -13921,17 +11014,6 @@ "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", @@ -14042,17 +11124,6 @@ "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", @@ -14086,17 +11157,6 @@ "MIT" ] }, - { - "name": "stringstream", - "url": "http://github.com/mhart", - "description": "", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, { "name": "strip-ansi", "url": "sindresorhus.com", @@ -14130,28 +11190,6 @@ "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", @@ -14163,17 +11201,6 @@ "MIT" ] }, - { - "name": "strip-indent", - "url": "sindresorhus.com", - "description": "", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, { "name": "strip-json-comments", "url": "sindresorhus.com", @@ -14207,39 +11234,6 @@ "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", @@ -14317,28 +11311,6 @@ "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", @@ -14361,17 +11333,6 @@ "MIT" ] }, - { - "name": "tape", - "url": "https://github.com/substack/tape", - "description": "", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, { "name": "tar", "url": "http://blog.izs.me/", @@ -14416,17 +11377,6 @@ "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", @@ -14449,17 +11399,6 @@ "MIT" ] }, - { - "name": "through", - "url": "https://github.com/dominictarr/through", - "description": "", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, { "name": "through2", "url": "https://github.com/rvagg", @@ -14515,31 +11454,9 @@ "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", + "url": "https://github.com/jhiesey/to-arraybuffer#readme", "description": "", "paths": [ "." @@ -14636,17 +11553,6 @@ "BSD-3-Clause" ] }, - { - "name": "tr46", - "url": "Unknown", - "description": "", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, { "name": "trim", "url": "Unknown", @@ -14713,17 +11619,6 @@ "Apache-2.0" ] }, - { - "name": "tunnel-agent", - "url": "http://www.futurealoof.com", - "description": "", - "paths": [ - "." - ], - "licenses": [ - "Apache-2.0" - ] - }, { "name": "tweetnacl", "url": "https://tweetnacl.js.org/", @@ -14735,28 +11630,6 @@ "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", @@ -14812,17 +11685,6 @@ "MIT" ] }, - { - "name": "uglify-js", - "url": "http://lisperator.net/uglifyjs", - "description": "", - "paths": [ - "." - ], - "licenses": [ - "BSD-2-Clause" - ] - }, { "name": "uglify-js", "url": "http://lisperator.net/", @@ -14845,17 +11707,6 @@ "BSD-2-Clause" ] }, - { - "name": "uglify-to-browserify", - "url": "Unknown", - "description": "", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, { "name": "underscore", "url": "http://underscorejs.org/", @@ -15120,17 +11971,6 @@ "MIT" ] }, - { - "name": "urlgrey", - "url": "Unknown", - "description": "", - "paths": [ - "." - ], - "licenses": [ - "BSD-2-Clause" - ] - }, { "name": "use", "url": "https://github.com/jonschlinkert/use", @@ -15166,194 +12006,7 @@ }, { "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", + "url": "https://github.com/TooTallNate/util-deprecate", "description": "", "paths": [ "." @@ -15363,8 +12016,8 @@ ] }, { - "name": "vue-resize", - "url": "https://github.com/Akryum/vue-resize#readme", + "name": "util.promisify", + "url": "https://github.com/ljharb/util.promisify#readme", "description": "", "paths": [ "." @@ -15374,8 +12027,8 @@ ] }, { - "name": "vue-router", - "url": "https://github.com/vuejs/vue-router#readme", + "name": "utila", + "url": "Unknown", "description": "", "paths": [ "." @@ -15385,8 +12038,8 @@ ] }, { - "name": "vue-scrollto", - "url": "http://igor-randjelovic.com", + "name": "utils-merge", + "url": "http://www.jaredhanson.net/", "description": "", "paths": [ "." @@ -15396,8 +12049,8 @@ ] }, { - "name": "vue-server-renderer", - "url": "https://github.com/vuejs/vue/tree/dev/packages/vue-server-renderer#readme", + "name": "uuid", + "url": "Unknown", "description": "", "paths": [ "." @@ -15407,18 +12060,18 @@ ] }, { - "name": "vue-slideout", - "url": "Unknown", + "name": "v-tooltip", + "url": "https://github.com/Akryum/vue-tooltip#readme", "description": "", "paths": [ "." ], "licenses": [ - "unknown" + "ISC" ] }, { - "name": "vue-style-loader", + "name": "vary", "url": "Unknown", "description": "", "paths": [ @@ -15429,8 +12082,8 @@ ] }, { - "name": "vue-template-compiler", - "url": "https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme", + "name": "vendors", + "url": "https://wooorm.com", "description": "", "paths": [ "." @@ -15440,7 +12093,7 @@ ] }, { - "name": "vue-template-es2015-compiler", + "name": "verror", "url": "Unknown", "description": "", "paths": [ @@ -15451,8 +12104,8 @@ ] }, { - "name": "vuex", - "url": "https://github.com/vuejs/vuex#readme", + "name": "vm-browserify", + "url": "http://substack.net", "description": "", "paths": [ "." @@ -15462,8 +12115,8 @@ ] }, { - "name": "w3c-hr-time", - "url": "Unknown", + "name": "vue", + "url": "https://github.com/vuejs/vue#readme", "description": "", "paths": [ "." @@ -15473,8 +12126,8 @@ ] }, { - "name": "watchpack", - "url": "https://github.com/webpack/watchpack", + "name": "vue-disqus", + "url": "https://github.com/ktquez/vue-disqus#readme", "description": "", "paths": [ "." @@ -15484,19 +12137,19 @@ ] }, { - "name": "webidl-conversions", - "url": "https://domenic.me/", + "name": "vue-hot-reload-api", + "url": "https://github.com/vuejs/vue-hot-reload-api#readme", "description": "", "paths": [ "." ], "licenses": [ - "BSD-2-Clause" + "MIT" ] }, { - "name": "webpack", - "url": "https://github.com/webpack/webpack", + "name": "vue-loader", + "url": "https://github.com/vuejs/vue-loader", "description": "", "paths": [ "." @@ -15506,8 +12159,8 @@ ] }, { - "name": "webpack-bundle-analyzer", - "url": "https://github.com/webpack-contrib/webpack-bundle-analyzer", + "name": "vue-meta", + "url": "https://github.com/declandewet/vue-meta", "description": "", "paths": [ "." @@ -15517,18 +12170,18 @@ ] }, { - "name": "webpack-dev-middleware", - "url": "https://github.com/webpack/webpack-dev-middleware", + "name": "vue-moment", + "url": "https://github.com/brockpetrie/vue-moment#readme", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "webpack-hot-middleware", + "name": "vue-no-ssr", "url": "Unknown", "description": "", "paths": [ @@ -15539,8 +12192,8 @@ ] }, { - "name": "webpack-info-plugin", - "url": "https://github.com/zinserjan/webpack-info-plugin#readme", + "name": "vue-resize", + "url": "https://github.com/Akryum/vue-resize#readme", "description": "", "paths": [ "." @@ -15550,8 +12203,8 @@ ] }, { - "name": "webpack-log", - "url": "https://github.com/webpack-contrib/webpack-log#readme", + "name": "vue-router", + "url": "https://github.com/vuejs/vue-router#readme", "description": "", "paths": [ "." @@ -15561,8 +12214,8 @@ ] }, { - "name": "webpack-node-externals", - "url": "https://github.com/liady/webpack-node-externals", + "name": "vue-scrollto", + "url": "http://igor-randjelovic.com", "description": "", "paths": [ "." @@ -15572,8 +12225,8 @@ ] }, { - "name": "webpack-sources", - "url": "https://github.com/webpack/webpack-sources#readme", + "name": "vue-server-renderer", + "url": "https://github.com/vuejs/vue/tree/dev/packages/vue-server-renderer#readme", "description": "", "paths": [ "." @@ -15583,19 +12236,19 @@ ] }, { - "name": "webpack-sources", - "url": "https://github.com/webpack/webpack-sources#readme", + "name": "vue-slideout", + "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "unknown" ] }, { - "name": "webpackbar", - "url": "https://github.com/nuxt/webpackbar", + "name": "vue-style-loader", + "url": "Unknown", "description": "", "paths": [ "." @@ -15605,8 +12258,8 @@ ] }, { - "name": "whatwg-encoding", - "url": "https://domenic.me/", + "name": "vue-template-compiler", + "url": "https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme", "description": "", "paths": [ "." @@ -15616,7 +12269,7 @@ ] }, { - "name": "whatwg-url", + "name": "vue-template-es2015-compiler", "url": "Unknown", "description": "", "paths": [ @@ -15627,8 +12280,8 @@ ] }, { - "name": "when", - "url": "http://cujojs.com/", + "name": "vuex", + "url": "https://github.com/vuejs/vuex#readme", "description": "", "paths": [ "." @@ -15638,8 +12291,8 @@ ] }, { - "name": "whet.extend", - "url": "Unknown", + "name": "watchpack", + "url": "https://github.com/webpack/watchpack", "description": "", "paths": [ "." @@ -15649,63 +12302,63 @@ ] }, { - "name": "which", - "url": "http://blog.izs.me", + "name": "webpack", + "url": "https://github.com/webpack/webpack", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "MIT" ] }, { - "name": "which", - "url": "http://blog.izs.me", + "name": "webpack-bundle-analyzer", + "url": "https://github.com/webpack-contrib/webpack-bundle-analyzer", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "MIT" ] }, { - "name": "which-module", - "url": "https://github.com/nexdrew/which-module#readme", + "name": "webpack-dev-middleware", + "url": "https://github.com/webpack/webpack-dev-middleware", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "MIT" ] }, { - "name": "which-module", - "url": "https://github.com/nexdrew/which-module#readme", + "name": "webpack-hot-middleware", + "url": "Unknown", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "MIT" ] }, { - "name": "wide-align", - "url": "http://re-becca.org/", + "name": "webpack-log", + "url": "https://github.com/webpack-contrib/webpack-log#readme", "description": "", "paths": [ "." ], "licenses": [ - "ISC" + "MIT" ] }, { - "name": "widest-line", - "url": "sindresorhus.com", + "name": "webpack-node-externals", + "url": "https://github.com/liady/webpack-node-externals", "description": "", "paths": [ "." @@ -15715,8 +12368,8 @@ ] }, { - "name": "window", - "url": "https://github.com/lukechilds/window#readme", + "name": "webpack-sources", + "url": "https://github.com/webpack/webpack-sources#readme", "description": "", "paths": [ "." @@ -15726,8 +12379,8 @@ ] }, { - "name": "window-size", - "url": "https://github.com/jonschlinkert/window-size", + "name": "webpackbar", + "url": "https://github.com/nuxt/webpackbar", "description": "", "paths": [ "." @@ -15737,8 +12390,8 @@ ] }, { - "name": "window-size", - "url": "https://github.com/jonschlinkert/window-size", + "name": "whet.extend", + "url": "Unknown", "description": "", "paths": [ "." @@ -15748,30 +12401,30 @@ ] }, { - "name": "wordwrap", - "url": "http://substack.net", + "name": "which", + "url": "http://blog.izs.me", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "wordwrap", - "url": "http://substack.net", + "name": "wide-align", + "url": "http://re-becca.org/", "description": "", "paths": [ "." ], "licenses": [ - "MIT" + "ISC" ] }, { - "name": "wordwrap", - "url": "http://substack.net", + "name": "widest-line", + "url": "sindresorhus.com", "description": "", "paths": [ "." @@ -15824,17 +12477,6 @@ "MIT" ] }, - { - "name": "wrap-ansi", - "url": "sindresorhus.com", - "description": "", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, { "name": "wrappy", "url": "https://github.com/npm/wrappy", @@ -15846,28 +12488,6 @@ "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", @@ -15912,17 +12532,6 @@ "MIT" ] }, - { - "name": "ws", - "url": "https://github.com/websockets/ws", - "description": "", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, { "name": "xhr", "url": "https://github.com/naugtur/xhr", @@ -15934,17 +12543,6 @@ "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", @@ -16011,17 +12609,6 @@ "ISC" ] }, - { - "name": "y18n", - "url": "https://github.com/yargs/y18n", - "description": "", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] - }, { "name": "yallist", "url": "http://blog.izs.me/", @@ -16043,61 +12630,6 @@ "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" - ] } ] -} +} \ No newline at end of file diff --git a/spec/fixtures/js/yarn/single-declared-dependency/package.json b/spec/fixtures/js/yarn/single-declared-dependency/package.json new file mode 100644 index 0000000..1f7fd68 --- /dev/null +++ b/spec/fixtures/js/yarn/single-declared-dependency/package.json @@ -0,0 +1,8 @@ +{ + "name": "example", + "version": "1.0.0", + "license": "ISC", + "dependencies": { + "2md": "0.0.4" + } +} diff --git a/spec/fixtures/js/yarn/single-declared-dependency/yarn.lock b/spec/fixtures/js/yarn/single-declared-dependency/yarn.lock new file mode 100644 index 0000000..726cbce --- /dev/null +++ b/spec/fixtures/js/yarn/single-declared-dependency/yarn.lock @@ -0,0 +1,873 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"2md@0.0.4": + version "0.0.4" + resolved "https://registry.yarnpkg.com/2md/-/2md-0.0.4.tgz#42d343372079b91a5dda0d61dda405c275dfbb6a" + integrity sha512-XIPdNjfEUTqNCOi4DwePfnepUQkAbtbXgJsu11Tthau/PWrWG+KRHFL/bTI3YhjBPHAwjyWHTUwSrwLg86M44A== + dependencies: + fs-extra "^8.1.0" + grapheme-splitter "^1.0.4" + jsdom "^15.1.1" + lodash "^4.17.15" + regenerator-runtime "^0.13.3" + yargs "^14.2.0" + +abab@^2.0.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.3.tgz#623e2075e02eb2d3f2475e49f99c91846467907a" + integrity sha512-tsFzPpcttalNjFBCFMqsKYQcWxxen1pgJR56by//QwvJc4/OUS3kPOOttx2tSIfjsylB0pYu7f5D3K1RCxUnUg== + +acorn-globals@^4.3.2: + version "4.3.4" + resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.3.4.tgz#9fa1926addc11c97308c4e66d7add0d40c3272e7" + integrity sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A== + dependencies: + acorn "^6.0.1" + acorn-walk "^6.0.1" + +acorn-walk@^6.0.1: + version "6.2.0" + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.2.0.tgz#123cb8f3b84c2171f1f7fb252615b1c78a6b1a8c" + integrity sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA== + +acorn@^6.0.1: + version "6.4.1" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.1.tgz#531e58ba3f51b9dacb9a6646ca4debf5b14ca474" + integrity sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA== + +acorn@^7.1.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.2.0.tgz#17ea7e40d7c8640ff54a694c889c26f31704effe" + integrity sha512-apwXVmYVpQ34m/i71vrApRrRKCWQnZZF1+npOD0WV5xZFfwWOmKGQ2RWlfdy9vWITsenisM8M0Qeq8agcFHNiQ== + +ajv@^6.5.5: + version "6.12.2" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.2.tgz#c629c5eced17baf314437918d2da88c99d5958cd" + integrity sha512-k+V+hzjm5q/Mr8ef/1Y9goCmlsK4I6Sm74teeyGvFk1XrOsbsKLjEdrvny42CZ+a8sXbk8KWpY/bDwS+FLL2UQ== + dependencies: + fast-deep-equal "^3.1.1" + fast-json-stable-stringify "^2.0.0" + json-schema-traverse "^0.4.1" + uri-js "^4.2.2" + +ansi-regex@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" + integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== + +ansi-styles@^3.2.0: + version "3.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + dependencies: + color-convert "^1.9.0" + +array-equal@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" + integrity sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM= + +asn1@~0.2.3: + version "0.2.4" + resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" + integrity sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg== + dependencies: + safer-buffer "~2.1.0" + +assert-plus@1.0.0, assert-plus@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" + integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU= + +asynckit@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= + +aws-sign2@~0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" + integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= + +aws4@^1.8.0: + version "1.9.1" + resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.9.1.tgz#7e33d8f7d449b3f673cd72deb9abdc552dbe528e" + integrity sha512-wMHVg2EOHaMRxbzgFJ9gtjOOCrI80OHLG14rxi28XwOW8ux6IiEbRCGGGqCtdAIg4FQCbW20k9RsT4y3gJlFug== + +bcrypt-pbkdf@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" + integrity sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4= + dependencies: + tweetnacl "^0.14.3" + +browser-process-hrtime@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626" + integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow== + +camelcase@^5.0.0: + version "5.3.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" + integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== + +caseless@~0.12.0: + version "0.12.0" + resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" + integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw= + +cliui@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5" + integrity sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA== + dependencies: + string-width "^3.1.0" + strip-ansi "^5.2.0" + wrap-ansi "^5.1.0" + +color-convert@^1.9.0: + version "1.9.3" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + dependencies: + color-name "1.1.3" + +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= + +combined-stream@^1.0.6, combined-stream@~1.0.6: + version "1.0.8" + resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" + integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== + dependencies: + delayed-stream "~1.0.0" + +core-util-is@1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" + integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= + +cssom@^0.4.1: + version "0.4.4" + resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.4.4.tgz#5a66cf93d2d0b661d80bf6a44fb65f5c2e4e0a10" + integrity sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw== + +cssom@~0.3.6: + version "0.3.8" + resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a" + integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== + +cssstyle@^2.0.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.3.0.tgz#ff665a0ddbdc31864b09647f34163443d90b0852" + integrity sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A== + dependencies: + cssom "~0.3.6" + +dashdash@^1.12.0: + version "1.14.1" + resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" + integrity sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA= + dependencies: + assert-plus "^1.0.0" + +data-urls@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-1.1.0.tgz#15ee0582baa5e22bb59c77140da8f9c76963bbfe" + integrity sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ== + dependencies: + abab "^2.0.0" + whatwg-mimetype "^2.2.0" + whatwg-url "^7.0.0" + +decamelize@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" + integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= + +deep-is@~0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" + integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= + +delayed-stream@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= + +domexception@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90" + integrity sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug== + dependencies: + webidl-conversions "^4.0.2" + +ecc-jsbn@~0.1.1: + version "0.1.2" + resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" + integrity sha1-OoOpBOVDUyh4dMVkt1SThoSamMk= + dependencies: + jsbn "~0.1.0" + safer-buffer "^2.1.0" + +emoji-regex@^7.0.1: + version "7.0.3" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" + integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== + +escodegen@^1.11.1: + version "1.14.1" + resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.1.tgz#ba01d0c8278b5e95a9a45350142026659027a457" + integrity sha512-Bmt7NcRySdIfNPfU2ZoXDrrXsG9ZjvDxcAlMfDUgRBjLOWTuIACXPBFJH7Z+cLb40JeQco5toikyc9t9P8E9SQ== + dependencies: + esprima "^4.0.1" + estraverse "^4.2.0" + esutils "^2.0.2" + optionator "^0.8.1" + optionalDependencies: + source-map "~0.6.1" + +esprima@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" + integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== + +estraverse@^4.2.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" + integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== + +esutils@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== + +extend@~3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" + integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== + +extsprintf@1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" + integrity sha1-lpGEQOMEGnpBT4xS48V06zw+HgU= + +extsprintf@^1.2.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" + integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8= + +fast-deep-equal@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz#545145077c501491e33b15ec408c294376e94ae4" + integrity sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA== + +fast-json-stable-stringify@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== + +fast-levenshtein@~2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= + +find-up@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" + integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== + dependencies: + locate-path "^3.0.0" + +forever-agent@~0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" + integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE= + +form-data@~2.3.2: + version "2.3.3" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" + integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ== + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.6" + mime-types "^2.1.12" + +fs-extra@^8.1.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" + integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== + dependencies: + graceful-fs "^4.2.0" + jsonfile "^4.0.0" + universalify "^0.1.0" + +get-caller-file@^2.0.1: + version "2.0.5" + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" + integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== + +getpass@^0.1.1: + version "0.1.7" + resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" + integrity sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo= + dependencies: + assert-plus "^1.0.0" + +graceful-fs@^4.1.6, graceful-fs@^4.2.0: + version "4.2.4" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb" + integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw== + +grapheme-splitter@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e" + integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ== + +har-schema@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" + integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI= + +har-validator@~5.1.3: + version "5.1.3" + resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080" + integrity sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g== + dependencies: + ajv "^6.5.5" + har-schema "^2.0.0" + +html-encoding-sniffer@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8" + integrity sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw== + dependencies: + whatwg-encoding "^1.0.1" + +http-signature@~1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" + integrity sha1-muzZJRFHcvPZW2WmCruPfBj7rOE= + dependencies: + assert-plus "^1.0.0" + jsprim "^1.2.2" + sshpk "^1.7.0" + +iconv-lite@0.4.24: + version "0.4.24" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" + integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== + dependencies: + safer-buffer ">= 2.1.2 < 3" + +ip-regex@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9" + integrity sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk= + +is-fullwidth-code-point@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" + integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= + +is-typedarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" + integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= + +isstream@~0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" + integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= + +jsbn@~0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" + integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM= + +jsdom@^15.1.1: + version "15.2.1" + resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-15.2.1.tgz#d2feb1aef7183f86be521b8c6833ff5296d07ec5" + integrity sha512-fAl1W0/7T2G5vURSyxBzrJ1LSdQn6Tr5UX/xD4PXDx/PDgwygedfW6El/KIj3xJ7FU61TTYnc/l/B7P49Eqt6g== + dependencies: + abab "^2.0.0" + acorn "^7.1.0" + acorn-globals "^4.3.2" + array-equal "^1.0.0" + cssom "^0.4.1" + cssstyle "^2.0.0" + data-urls "^1.1.0" + domexception "^1.0.1" + escodegen "^1.11.1" + html-encoding-sniffer "^1.0.2" + nwsapi "^2.2.0" + parse5 "5.1.0" + pn "^1.1.0" + request "^2.88.0" + request-promise-native "^1.0.7" + saxes "^3.1.9" + symbol-tree "^3.2.2" + tough-cookie "^3.0.1" + w3c-hr-time "^1.0.1" + w3c-xmlserializer "^1.1.2" + webidl-conversions "^4.0.2" + whatwg-encoding "^1.0.5" + whatwg-mimetype "^2.3.0" + whatwg-url "^7.0.0" + ws "^7.0.0" + xml-name-validator "^3.0.0" + +json-schema-traverse@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== + +json-schema@0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" + integrity sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM= + +json-stringify-safe@~5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" + integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= + +jsonfile@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" + integrity sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss= + optionalDependencies: + graceful-fs "^4.1.6" + +jsprim@^1.2.2: + version "1.4.1" + resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" + integrity sha1-MT5mvB5cwG5Di8G3SZwuXFastqI= + dependencies: + assert-plus "1.0.0" + extsprintf "1.3.0" + json-schema "0.2.3" + verror "1.10.0" + +levn@~0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" + integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= + dependencies: + prelude-ls "~1.1.2" + type-check "~0.3.2" + +locate-path@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" + integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== + dependencies: + p-locate "^3.0.0" + path-exists "^3.0.0" + +lodash.sortby@^4.7.0: + version "4.7.0" + resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" + integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg= + +lodash@^4.17.15: + version "4.17.15" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" + integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A== + +mime-db@1.44.0: + version "1.44.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.44.0.tgz#fa11c5eb0aca1334b4233cb4d52f10c5a6272f92" + integrity sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg== + +mime-types@^2.1.12, mime-types@~2.1.19: + version "2.1.27" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.27.tgz#47949f98e279ea53119f5722e0f34e529bec009f" + integrity sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w== + dependencies: + mime-db "1.44.0" + +nwsapi@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7" + integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ== + +oauth-sign@~0.9.0: + version "0.9.0" + resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" + integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== + +optionator@^0.8.1: + version "0.8.3" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" + integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== + dependencies: + deep-is "~0.1.3" + fast-levenshtein "~2.0.6" + levn "~0.3.0" + prelude-ls "~1.1.2" + type-check "~0.3.2" + word-wrap "~1.2.3" + +p-limit@^2.0.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" + integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== + dependencies: + p-try "^2.0.0" + +p-locate@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" + integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== + dependencies: + p-limit "^2.0.0" + +p-try@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" + integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== + +parse5@5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/parse5/-/parse5-5.1.0.tgz#c59341c9723f414c452975564c7c00a68d58acd2" + integrity sha512-fxNG2sQjHvlVAYmzBZS9YlDp6PTSSDwa98vkD4QgVDDCAo84z5X1t5XyJQ62ImdLXx5NdIIfihey6xpum9/gRQ== + +path-exists@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" + integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= + +performance-now@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" + integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= + +pn@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb" + integrity sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA== + +prelude-ls@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" + integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= + +psl@^1.1.28: + version "1.8.0" + resolved "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24" + integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ== + +punycode@^2.1.0, punycode@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" + integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== + +qs@~6.5.2: + version "6.5.2" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" + integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA== + +regenerator-runtime@^0.13.3: + version "0.13.5" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz#d878a1d094b4306d10b9096484b33ebd55e26697" + integrity sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA== + +request-promise-core@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.3.tgz#e9a3c081b51380dfea677336061fea879a829ee9" + integrity sha512-QIs2+ArIGQVp5ZYbWD5ZLCY29D5CfWizP8eWnm8FoGD1TX61veauETVQbrV60662V0oFBkrDOuaBI8XgtuyYAQ== + dependencies: + lodash "^4.17.15" + +request-promise-native@^1.0.7: + version "1.0.8" + resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.8.tgz#a455b960b826e44e2bf8999af64dff2bfe58cb36" + integrity sha512-dapwLGqkHtwL5AEbfenuzjTYg35Jd6KPytsC2/TLkVMz8rm+tNt72MGUWT1RP/aYawMpN6HqbNGBQaRcBtjQMQ== + dependencies: + request-promise-core "1.1.3" + stealthy-require "^1.1.1" + tough-cookie "^2.3.3" + +request@^2.88.0: + version "2.88.2" + resolved "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3" + integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw== + dependencies: + aws-sign2 "~0.7.0" + aws4 "^1.8.0" + caseless "~0.12.0" + combined-stream "~1.0.6" + extend "~3.0.2" + forever-agent "~0.6.1" + form-data "~2.3.2" + har-validator "~5.1.3" + http-signature "~1.2.0" + is-typedarray "~1.0.0" + isstream "~0.1.2" + json-stringify-safe "~5.0.1" + mime-types "~2.1.19" + oauth-sign "~0.9.0" + performance-now "^2.1.0" + qs "~6.5.2" + safe-buffer "^5.1.2" + tough-cookie "~2.5.0" + tunnel-agent "^0.6.0" + uuid "^3.3.2" + +require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= + +require-main-filename@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" + integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== + +safe-buffer@^5.0.1, safe-buffer@^5.1.2: + version "5.2.1" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + +"safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: + version "2.1.2" + resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== + +saxes@^3.1.9: + version "3.1.11" + resolved "https://registry.yarnpkg.com/saxes/-/saxes-3.1.11.tgz#d59d1fd332ec92ad98a2e0b2ee644702384b1c5b" + integrity sha512-Ydydq3zC+WYDJK1+gRxRapLIED9PWeSuuS41wqyoRmzvhhh9nc+QQrVMKJYzJFULazeGhzSV0QleN2wD3boh2g== + dependencies: + xmlchars "^2.1.1" + +set-blocking@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" + integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= + +source-map@~0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + +sshpk@^1.7.0: + version "1.16.1" + resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877" + integrity sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg== + dependencies: + asn1 "~0.2.3" + assert-plus "^1.0.0" + bcrypt-pbkdf "^1.0.0" + dashdash "^1.12.0" + ecc-jsbn "~0.1.1" + getpass "^0.1.1" + jsbn "~0.1.0" + safer-buffer "^2.0.2" + tweetnacl "~0.14.0" + +stealthy-require@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" + integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks= + +string-width@^3.0.0, string-width@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" + integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== + dependencies: + emoji-regex "^7.0.1" + is-fullwidth-code-point "^2.0.0" + strip-ansi "^5.1.0" + +strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" + integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== + dependencies: + ansi-regex "^4.1.0" + +symbol-tree@^3.2.2: + version "3.2.4" + resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" + integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== + +tough-cookie@^2.3.3, tough-cookie@~2.5.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" + integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== + dependencies: + psl "^1.1.28" + punycode "^2.1.1" + +tough-cookie@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-3.0.1.tgz#9df4f57e739c26930a018184887f4adb7dca73b2" + integrity sha512-yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg== + dependencies: + ip-regex "^2.1.0" + psl "^1.1.28" + punycode "^2.1.1" + +tr46@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" + integrity sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk= + dependencies: + punycode "^2.1.0" + +tunnel-agent@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" + integrity sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0= + dependencies: + safe-buffer "^5.0.1" + +tweetnacl@^0.14.3, tweetnacl@~0.14.0: + version "0.14.5" + resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" + integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q= + +type-check@~0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" + integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= + dependencies: + prelude-ls "~1.1.2" + +universalify@^0.1.0: + version "0.1.2" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" + integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== + +uri-js@^4.2.2: + version "4.2.2" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" + integrity sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ== + dependencies: + punycode "^2.1.0" + +uuid@^3.3.2: + version "3.4.0" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" + integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== + +verror@1.10.0: + version "1.10.0" + resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" + integrity sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA= + dependencies: + assert-plus "^1.0.0" + core-util-is "1.0.2" + extsprintf "^1.2.0" + +w3c-hr-time@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd" + integrity sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ== + dependencies: + browser-process-hrtime "^1.0.0" + +w3c-xmlserializer@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-1.1.2.tgz#30485ca7d70a6fd052420a3d12fd90e6339ce794" + integrity sha512-p10l/ayESzrBMYWRID6xbuCKh2Fp77+sA0doRuGn4tTIMrrZVeqfpKjXHY+oDh3K4nLdPgNwMTVP6Vp4pvqbNg== + dependencies: + domexception "^1.0.1" + webidl-conversions "^4.0.2" + xml-name-validator "^3.0.0" + +webidl-conversions@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" + integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg== + +whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0" + integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw== + dependencies: + iconv-lite "0.4.24" + +whatwg-mimetype@^2.2.0, whatwg-mimetype@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" + integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== + +whatwg-url@^7.0.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.1.0.tgz#c2c492f1eca612988efd3d2266be1b9fc6170d06" + integrity sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg== + dependencies: + lodash.sortby "^4.7.0" + tr46 "^1.0.1" + webidl-conversions "^4.0.2" + +which-module@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" + integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= + +word-wrap@~1.2.3: + version "1.2.3" + resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" + integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== + +wrap-ansi@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09" + integrity sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q== + dependencies: + ansi-styles "^3.2.0" + string-width "^3.0.0" + strip-ansi "^5.0.0" + +ws@^7.0.0: + version "7.3.0" + resolved "https://registry.yarnpkg.com/ws/-/ws-7.3.0.tgz#4b2f7f219b3d3737bc1a2fbf145d825b94d38ffd" + integrity sha512-iFtXzngZVXPGgpTlP1rBqsUK82p9tKqsWRPg5L56egiljujJT3vGAYnHANvFxBieXrTFavhzhxW52jnaWV+w2w== + +xml-name-validator@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" + integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw== + +xmlchars@^2.1.1: + version "2.2.0" + resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb" + integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== + +y18n@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" + integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w== + +yargs-parser@^15.0.1: + version "15.0.1" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-15.0.1.tgz#54786af40b820dcb2fb8025b11b4d659d76323b3" + integrity sha512-0OAMV2mAZQrs3FkNpDQcBk1x5HXb8X4twADss4S0Iuk+2dGnLOE/fRHrsYm542GduMveyA77OF4wrNJuanRCWw== + dependencies: + camelcase "^5.0.0" + decamelize "^1.2.0" + +yargs@^14.2.0: + version "14.2.3" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-14.2.3.tgz#1a1c3edced1afb2a2fea33604bc6d1d8d688a414" + integrity sha512-ZbotRWhF+lkjijC/VhmOT9wSgyBQ7+zr13+YLkhfsSiTriYsMzkTUFP18pFhWwBeMa5gUc1MzbhrO6/VB7c9Xg== + dependencies: + cliui "^5.0.0" + decamelize "^1.2.0" + find-up "^3.0.0" + get-caller-file "^2.0.1" + require-directory "^2.1.1" + require-main-filename "^2.0.0" + set-blocking "^2.0.0" + string-width "^3.0.0" + which-module "^2.0.0" + y18n "^4.0.0" + yargs-parser "^15.0.1" diff --git a/spec/integration/js/yarn_spec.rb b/spec/integration/js/yarn_spec.rb index 0756f9d..47d340d 100644 --- a/spec/integration/js/yarn_spec.rb +++ b/spec/integration/js/yarn_spec.rb @@ -2,4 +2,151 @@ require 'spec_helper' RSpec.describe "yarn" do include_examples "each report version", "js", "yarn" + + context "when scanning a yarn.lock with a single dependency" do + subject { runner.scan } + + before do + runner.add_file("package.json", fixture_file_content('js/yarn/single-declared-dependency/package.json')) + runner.add_file("yarn.lock", fixture_file_content('js/yarn/single-declared-dependency/yarn.lock')) + end + + specify { expect(subject).to match_schema(version: '2.0') } + + specify do + [ + ["2md", "0.0.4", ["Apache-2.0"]], + ["abab", "2.0.3", ["BSD-3-Clause"]], + ["acorn", "6.4.1", ["MIT"]], + ["acorn", "7.1.1", ["MIT"]], + ["acorn-globals", "4.3.4", ["MIT"]], + ["acorn-walk", "6.2.0", ["MIT"]], + ["ajv", "6.12.2", ["MIT"]], + ["ansi-regex", "4.1.0", ["MIT"]], + ["ansi-styles", "3.2.1", ["MIT"]], + ["array-equal", "1.0.0", ["MIT"]], + ["asn1", "0.2.4", ["MIT"]], + ["assert-plus", "1.0.0", ["MIT"]], + ["asynckit", "0.4.0", ["MIT"]], + ["aws-sign2", "0.7.0", ["Apache-2.0"]], + ["aws4", "1.9.1", ["MIT"]], + ["bcrypt-pbkdf", "1.0.2", ["BSD-3-Clause"]], + ["browser-process-hrtime", "1.0.0", ["BSD-2-Clause"]], + ["camelcase", "5.3.1", ["MIT"]], + ["caseless", "0.12.0", ["Apache-2.0"]], + ["cliui", "5.0.0", ["ISC"]], + ["color-convert", "1.9.3", ["MIT"]], + ["color-name", "1.1.3", ["MIT"]], + ["combined-stream", "1.0.8", ["MIT"]], + ["core-util-is", "1.0.2", ["MIT"]], + ["cssom", "0.3.8", ["MIT"]], + ["cssom", "0.4.4", ["MIT"]], + ["cssstyle", "2.2.0", ["MIT"]], + ["dashdash", "1.14.1", ["MIT"]], + ["data-urls", "1.1.0", ["MIT"]], + ["decamelize", "1.2.0", ["MIT"]], + ["deep-is", "0.1.3", ["MIT"]], + ["delayed-stream", "1.0.0", ["MIT"]], + ["domexception", "1.0.1", ["MIT"]], + ["ecc-jsbn", "0.1.2", ["MIT"]], + ["emoji-regex", "7.0.3", ["MIT"]], + ["escodegen", "1.14.1", ["BSD-2-Clause"]], + ["esprima", "4.0.1", ["BSD-2-Clause"]], + ["estraverse", "4.3.0", ["BSD-2-Clause"]], + ["esutils", "2.0.3", ["BSD-2-Clause"]], + ["extend", "3.0.2", ["MIT"]], + ["extsprintf", "1.3.0", ["MIT"]], + ["fast-deep-equal", "3.1.1", ["MIT"]], + ["fast-json-stable-stringify", "2.1.0", ["MIT"]], + ["fast-levenshtein", "2.0.6", ["MIT"]], + ["find-up", "3.0.0", ["MIT"]], + ["forever-agent", "0.6.1", ["Apache-2.0"]], + ["form-data", "2.3.3", ["MIT"]], + ["fs-extra", "8.1.0", ["MIT"]], + ["get-caller-file", "2.0.5", ["ISC"]], + ["getpass", "0.1.7", ["MIT"]], + ["graceful-fs", "4.2.3", ["ISC"]], + ["grapheme-splitter", "1.0.4", ["MIT"]], + ["har-schema", "2.0.0", ["ISC"]], + ["har-validator", "5.1.3", ["MIT"]], + ["html-encoding-sniffer", "1.0.2", ["MIT"]], + ["http-signature", "1.2.0", ["MIT"]], + ["iconv-lite", "0.4.24", ["MIT"]], + ["ip-regex", "2.1.0", ["MIT"]], + ["is-fullwidth-code-point", "2.0.0", ["MIT"]], + ["is-typedarray", "1.0.0", ["MIT"]], + ["isstream", "0.1.2", ["MIT"]], + ["jsbn", "0.1.1", ["MIT"]], + ["jsdom", "15.2.1", ["MIT"]], + ["json-schema-traverse", "0.4.1", ["MIT"]], + ["json-stringify-safe", "5.0.1", ["ISC"]], + ["jsonfile", "4.0.0", ["MIT"]], + ["jsprim", "1.4.1", ["MIT"]], + ["levn", "0.3.0", ["MIT"]], + ["locate-path", "3.0.0", ["MIT"]], + ["lodash", "4.17.15", ["MIT"]], + ["lodash.sortby", "4.7.0", ["MIT"]], + ["mime-db", "1.43.0", ["MIT"]], + ["mime-types", "2.1.26", ["MIT"]], + ["nwsapi", "2.2.0", ["MIT"]], + ["oauth-sign", "0.9.0", ["Apache-2.0"]], + ["optionator", "0.8.3", ["MIT"]], + ["p-limit", "2.3.0", ["MIT"]], + ["p-locate", "3.0.0", ["MIT"]], + ["p-try", "2.2.0", ["MIT"]], + ["parse5", "5.1.0", ["MIT"]], + ["path-exists", "3.0.0", ["MIT"]], + ["performance-now", "2.1.0", ["MIT"]], + ["pn", "1.1.0", ["MIT"]], + ["prelude-ls", "1.1.2", ["MIT"]], + ["psl", "1.8.0", ["MIT"]], + ["punycode", "2.1.1", ["MIT"]], + ["qs", "6.5.2", ["BSD-3-Clause"]], + ["regenerator-runtime", "0.13.5", ["MIT"]], + ["request", "2.88.2", ["Apache-2.0"]], + ["request-promise-core", "1.1.3", ["ISC"]], + ["request-promise-native", "1.0.8", ["ISC"]], + ["require-directory", "2.1.1", ["MIT"]], + ["require-main-filename", "2.0.0", ["ISC"]], + ["safe-buffer", "5.2.0", ["MIT"]], + ["safer-buffer", "2.1.2", ["MIT"]], + ["saxes", "3.1.11", ["ISC"]], + ["set-blocking", "2.0.0", ["ISC"]], + ["source-map", "0.6.1", ["BSD-3-Clause"]], + ["sshpk", "1.16.1", ["MIT"]], + ["stealthy-require", "1.1.1", ["ISC"]], + ["string-width", "3.1.0", ["MIT"]], + ["strip-ansi", "5.2.0", ["MIT"]], + ["symbol-tree", "3.2.4", ["MIT"]], + ["tough-cookie", "2.5.0", ["BSD-3-Clause"]], + ["tough-cookie", "3.0.1", ["BSD-3-Clause"]], + ["tr46", "1.0.1", ["MIT"]], + ["tunnel-agent", "0.6.0", ["Apache-2.0"]], + ["tweetnacl", "0.14.5", ["Unlicense"]], + ["type-check", "0.3.2", ["MIT"]], + ["universalify", "0.1.2", ["MIT"]], + ["uri-js", "4.2.2", ["BSD-2-Clause"]], + ["uuid", "3.4.0", ["MIT"]], + ["verror", "1.10.0", ["MIT"]], + ["w3c-hr-time", "1.0.2", ["MIT"]], + ["w3c-xmlserializer", "1.1.2", ["MIT"]], + ["webidl-conversions", "4.0.2", ["BSD-2-Clause"]], + ["whatwg-encoding", "1.0.5", ["MIT"]], + ["whatwg-mimetype", "2.3.0", ["MIT"]], + ["whatwg-url", "7.1.0", ["MIT"]], + ["which-module", "2.0.0", ["ISC"]], + ["word-wrap", "1.2.3", ["MIT"]], + ["wrap-ansi", "5.1.0", ["MIT"]], + ["ws", "7.2.3", ["MIT"]], + ["xml-name-validator", "3.0.0", ["Apache-2.0"]], + ["xmlchars", "2.2.0", ["MIT"]], + ["y18n", "4.0.0", ["ISC"]], + ["yargs", "14.2.3", ["MIT"]], + ["yargs-parser", "15.0.1", ["ISC"]] + ].each do |item| + expect(subject.dependency_names).to include(item[0]) + expect(subject.licenses_for(item[0])).to match_array(item[-1]) + end + end + end end -- cgit v1.2.3 From 3f7b51a72e751d65ab25ef2880d3942050066ffe Mon Sep 17 00:00:00 2001 From: mo khan Date: Wed, 13 May 2020 16:27:01 -0600 Subject: Make release jobs manual instead of tag --- .gitlab-ci.yml | 1 - .gitlab/release.yml | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 480e24f..9f8886e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -87,7 +87,6 @@ version: - test "$(grep '^## v' CHANGELOG.md |head -n 1)" = "## $CI_COMMIT_TAG" only: - tags - when: manual allow_failure: false code_quality: diff --git a/.gitlab/release.yml b/.gitlab/release.yml index 12b673b..44cc42e 100644 --- a/.gitlab/release.yml +++ b/.gitlab/release.yml @@ -1,6 +1,7 @@ .release: extends: .docker_tag stage: release + when: manual only: - tags -- cgit v1.2.3 From e7dd449c0fd531ec792737660fb7c8e5ee9fb92b Mon Sep 17 00:00:00 2001 From: mo khan Date: Wed, 13 May 2020 16:59:55 -0600 Subject: Fix linter errors --- lib/license/finder/ext/yarn.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/license/finder/ext/yarn.rb b/lib/license/finder/ext/yarn.rb index 13057ab..dba096b 100644 --- a/lib/license/finder/ext/yarn.rb +++ b/lib/license/finder/ext/yarn.rb @@ -2,7 +2,7 @@ module LicenseFinder class Yarn - INCOMPATIBLE_PACKAGE_REGEX = /(?[\w,\-]+)@(?(\d+\.?)+)/ + INCOMPATIBLE_PACKAGE_REGEX = /(?[\w,\-]+)@(?(\d+\.?)+)/.freeze PHANTOM_PACKAGE_REGEX = /workspace-aggregator-[a-zA-Z0-9]{8}-[a-zA-Z0-9]{4}-[a-zA-Z0-9]{4}-[a-zA-Z0-9]{4}-[a-zA-Z0-9]{12}/.freeze def possible_package_paths @@ -88,7 +88,7 @@ module LicenseFinder matches = json['data'].to_s.match(INCOMPATIBLE_PACKAGE_REGEX) return [] unless matches - [YarnPackage.new( matches['name'], matches['version'], spec_licenses: ['unknown'])] + [YarnPackage.new(matches['name'], matches['version'], spec_licenses: ['unknown'])] end end end -- cgit v1.2.3 From d2934252ee53aaef396cf706bf89769b4b81d617 Mon Sep 17 00:00:00 2001 From: mo khan Date: Wed, 13 May 2020 21:22:40 -0600 Subject: Run dependency_scanning via dind --- .gitlab-ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9f8886e..a6aa573 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -94,6 +94,12 @@ code_quality: - rm .rubocop.yml services: - docker:stable-dind + tags: [gitlab-org-docker] + +dependency_scanning: + services: + - docker:stable-dind + tags: [gitlab-org-docker] license_scanning: image: -- cgit v1.2.3