summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCan Eldem <celdem@gitlab.com>2020-05-14 09:44:56 +0000
committerCan Eldem <celdem@gitlab.com>2020-05-14 09:44:56 +0000
commit005336379b28329c6a0432fb25bbfa704d1e3466 (patch)
tree9ff48295ce109f444127b035f9e1e15dbff21251
parentbc1d4265e81b7a578ab320a3c27727a8f3dfc844 (diff)
parentd2934252ee53aaef396cf706bf89769b4b81d617 (diff)
Merge branch '212922-yarn-offline' into 'master'v3.8.1
Exclude devDependencies from yarn scan See merge request gitlab-org/security-products/license-management!147
-rw-r--r--.gitlab-ci.yml10
-rw-r--r--.gitlab/release.yml1
-rw-r--r--CHANGELOG.md4
-rw-r--r--Gemfile.lock15
-rw-r--r--config/.default-gems1
-rw-r--r--lib/license/finder/ext/pip.rb4
-rw-r--r--lib/license/finder/ext/pipenv.rb14
-rw-r--r--lib/license/finder/ext/yarn.rb89
-rw-r--r--lib/license/management.rb1
-rw-r--r--lib/license/management/version.rb2
-rw-r--r--license-management.gemspec1
-rw-r--r--spec/fixtures/expected/js/yarn/v1.0.json4404
-rw-r--r--spec/fixtures/expected/js/yarn/v1.1.json6276
-rw-r--r--spec/fixtures/expected/js/yarn/v2.0.json3506
-rw-r--r--spec/fixtures/js/yarn/single-declared-dependency/package.json8
-rw-r--r--spec/fixtures/js/yarn/single-declared-dependency/yarn.lock873
-rw-r--r--spec/integration/js/yarn_spec.rb147
17 files changed, 1175 insertions, 14181 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index e558a26..a6aa573 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
@@ -86,7 +87,6 @@ version:
- test "$(grep '^## v' CHANGELOG.md |head -n 1)" = "## $CI_COMMIT_TAG"
only:
- tags
- when: manual
allow_failure: false
code_quality:
@@ -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:
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
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..dba096b 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 = /(?<name>[\w,\-]+)@(?<version>(\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
+ [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": [
@@ -1994,20 +1970,6 @@
"url": "http://en.wikipedia.org/wiki/ISC_license"
},
"dependency": {
- "name": "abab",
- "url": "https://github.com/jsdom/abab#readme",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
"name": "abbrev",
"url": "Unknown",
"description": "",
@@ -2037,48 +1999,6 @@
},
"dependency": {
"name": "acorn",
- "url": "https://github.com/ternjs/acorn",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "acorn",
- "url": "https://github.com/acornjs/acorn",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "acorn",
- "url": "https://github.com/acornjs/acorn",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "acorn",
"url": "https://github.com/acornjs/acorn",
"description": "",
"pathes": [
@@ -2106,34 +2026,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "acorn-globals",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "acorn-jsx",
- "url": "https://github.com/RReverser/acorn-jsx",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "acorn-walk",
"url": "https://github.com/acornjs/acorn",
"description": "",
@@ -2204,34 +2096,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "ajv-keywords",
- "url": "https://github.com/epoberezkin/ajv-keywords#readme",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "align-text",
- "url": "https://github.com/jonschlinkert/align-text",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "alphanum-sort",
"url": "https://github.com/TrySound/alphanum-sort",
"description": "",
@@ -2242,19 +2106,6 @@
},
{
"license": {
- "name": "BSD-3-Clause OR MIT"
- },
- "dependency": {
- "name": "amdefine",
- "url": "http://github.com/jrburke/amdefine",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "ISC",
"url": "http://en.wikipedia.org/wiki/ISC_license"
},
@@ -2297,20 +2148,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",
"url": "http://www.apache.org/licenses/LICENSE-2.0.txt"
},
@@ -2400,20 +2237,6 @@
},
"dependency": {
"name": "anymatch",
- "url": "https://github.com/es128/anymatch",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "anymatch",
"url": "https://github.com/micromatch/anymatch",
"description": "",
"pathes": [
@@ -2437,20 +2260,6 @@
},
{
"license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "append-transform",
- "url": "github.com/jamestalmage",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "ISC",
"url": "http://en.wikipedia.org/wiki/ISC_license"
},
@@ -2465,20 +2274,6 @@
},
{
"license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "archy",
- "url": "http://substack.net",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "ISC",
"url": "http://en.wikipedia.org/wiki/ISC_license"
},
@@ -2567,20 +2362,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "array-equal",
- "url": "http://jongleberry.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "array-filter",
"url": "https://github.com/juliangruber/array-filter",
"description": "",
@@ -2637,34 +2418,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "array-union",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "array-uniq",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "array-unique",
"url": "https://github.com/jonschlinkert/array-unique",
"description": "",
@@ -2693,34 +2446,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "arrify",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "asn1",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "asn1",
"url": "joyent.com",
"description": "",
@@ -2759,19 +2484,6 @@
},
{
"license": {
- "name": "MIT*"
- },
- "dependency": {
- "name": "assert-plus",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "MIT",
"url": "http://opensource.org/licenses/mit-license"
},
@@ -2790,20 +2502,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "assertion-error",
- "url": "http://qualiancy.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "assign-symbols",
"url": "https://github.com/jonschlinkert/assign-symbols",
"description": "",
@@ -2819,34 +2517,6 @@
},
"dependency": {
"name": "async",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "async",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "async",
"url": "https://caolan.github.io/async/",
"description": "",
"pathes": [
@@ -2953,19 +2623,6 @@
},
{
"license": {
- "name": "Apache*"
- },
- "dependency": {
- "name": "aws-sign2",
- "url": "http://www.futurealoof.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.txt"
},
@@ -3026,48 +2683,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "babel-code-frame",
- "url": "https://babeljs.io/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "babel-eslint",
- "url": "https://github.com/babel/babel-eslint",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "babel-generator",
- "url": "https://babeljs.io/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "babel-loader",
"url": "https://github.com/babel/babel-loader",
"description": "",
@@ -3082,90 +2697,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "babel-messages",
- "url": "https://babeljs.io/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "babel-runtime",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "babel-template",
- "url": "https://babeljs.io/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "babel-traverse",
- "url": "https://babeljs.io/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "babel-types",
- "url": "https://babeljs.io/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "babylon",
- "url": "https://babeljs.io/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "balanced-match",
"url": "https://github.com/juliangruber/balanced-match",
"description": "",
@@ -3334,20 +2865,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "bl",
- "url": "https://github.com/rvagg/bl",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "bluebird",
"url": "https://github.com/petkaantonov/bluebird",
"description": "",
@@ -3419,20 +2936,6 @@
},
"dependency": {
"name": "boom",
- "url": "http://hueniverse.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "New BSD",
- "url": "http://opensource.org/licenses/BSD-3-Clause"
- },
- "dependency": {
- "name": "boom",
"url": "Unknown",
"description": "",
"pathes": [
@@ -3544,48 +3047,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "browser-env",
- "url": "https://github.com/lukechilds/browser-env#readme",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "Simplified BSD",
- "url": "http://opensource.org/licenses/bsd-license"
- },
- "dependency": {
- "name": "browser-process-hrtime",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "browser-stdout",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "browserify-aes",
"url": "https://github.com/crypto-browserify/browserify-aes",
"description": "",
@@ -3768,20 +3229,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "builtin-modules",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "builtin-status-codes",
"url": "bendrucker.me",
"description": "",
@@ -3866,20 +3313,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "caching-transform",
- "url": "github.com/jamestalmage",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "caller-callsite",
"url": "sindresorhus.com",
"description": "",
@@ -3895,20 +3328,6 @@
},
"dependency": {
"name": "caller-path",
- "url": "http://sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "caller-path",
"url": "sindresorhus.com",
"description": "",
"pathes": [
@@ -3923,20 +3342,6 @@
},
"dependency": {
"name": "callsites",
- "url": "http://sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "callsites",
"url": "sindresorhus.com",
"description": "",
"pathes": [
@@ -3965,34 +3370,6 @@
},
"dependency": {
"name": "camelcase",
- "url": "http://sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "camelcase",
- "url": "http://sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "camelcase",
"url": "sindresorhus.com",
"description": "",
"pathes": [
@@ -4084,48 +3461,6 @@
},
{
"license": {
- "name": "BSD",
- "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29"
- },
- "dependency": {
- "name": "caseless",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "center-align",
- "url": "https://github.com/jonschlinkert/center-align",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "chai",
- "url": "http://chaijs.com/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "MIT",
"url": "http://opensource.org/licenses/mit-license"
},
@@ -4172,34 +3507,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "chardet",
- "url": "https://github.com/runk/node-chardet",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "check-error",
- "url": "http://alogicalparadox.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "check-types",
"url": "https://gitlab.com/philbooth/check-types.js",
"description": "",
@@ -4284,20 +3591,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "ci-info",
- "url": "https://github.com/watson/ci-info",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "cipher-base",
"url": "https://github.com/crypto-browserify/cipher-base#readme",
"description": "",
@@ -4312,20 +3605,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "circular-json",
- "url": "https://github.com/WebReflection/circular-json",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "clap",
"url": "https://github.com/lahmatiy/clap",
"description": "",
@@ -4382,76 +3661,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "cli-cursor",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "cli-width",
- "url": "https://github.com/knownasilya/cli-width",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "cliui",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "cliui",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "cliui",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "clone",
"url": "http://paul.vorba.ch/",
"description": "",
@@ -4522,20 +3731,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "codecov.io",
- "url": "https://github.com/cainus/codecov.io",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "collection-visit",
"url": "https://github.com/jonschlinkert/collection-visit",
"description": "",
@@ -4690,34 +3885,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "combined-stream",
- "url": "https://github.com/felixge/node-combined-stream",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "commander",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "commander",
"url": "Unknown",
"description": "",
@@ -4844,20 +4011,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "concat-stream",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "connect",
"url": "http://tjholowaychuk.com",
"description": "",
@@ -4942,20 +4095,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "contains-path",
- "url": "https://github.com/jonschlinkert/contains-path",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "content-disposition",
"url": "Unknown",
"description": "",
@@ -4984,34 +4123,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "content-type-parser",
- "url": "https://domenic.me/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "convert-source-map",
- "url": "https://github.com/thlorenz/convert-source-map",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "convert-source-map",
"url": "https://github.com/thlorenz/convert-source-map",
"description": "",
@@ -5176,20 +4287,6 @@
},
{
"license": {
- "name": "Simplified BSD",
- "url": "http://opensource.org/licenses/bsd-license"
- },
- "dependency": {
- "name": "coveralls",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "MIT",
"url": "http://opensource.org/licenses/mit-license"
},
@@ -5251,20 +4348,6 @@
},
"dependency": {
"name": "cross-spawn",
- "url": "http://indigounited.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "cross-spawn",
"url": "https://github.com/moxystudio/node-cross-spawn",
"description": "",
"pathes": [
@@ -5279,20 +4362,6 @@
},
"dependency": {
"name": "cryptiles",
- "url": "http://hueniverse.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "New BSD",
- "url": "http://opensource.org/licenses/BSD-3-Clause"
- },
- "dependency": {
- "name": "cryptiles",
"url": "Unknown",
"description": "",
"pathes": [
@@ -5384,20 +4453,6 @@
},
{
"license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "css-parse",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "CC0-1.0"
},
"dependency": {
@@ -5694,48 +4749,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "cssom",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "cssstyle",
- "url": "https://github.com/chad3814/CSSStyleDeclaration",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "ctype",
- "url": "https://github.com/rmustacc/node-ctype",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "cuint",
"url": "https://github.com/pierrec/js-cuint",
"description": "",
@@ -5875,48 +4888,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "debug",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "debug",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "debug-log",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "decamelize",
"url": "sindresorhus.com",
"description": "",
@@ -5959,34 +4930,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "deep-eql",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "deep-equal",
- "url": "http://substack.net",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "deep-extend",
"url": "https://github.com/unclechu/node-deep-extend",
"description": "",
@@ -6001,20 +4944,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "deep-is",
- "url": "http://thlorenz.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "deepmerge",
"url": "https://github.com/TehShrike/deepmerge",
"description": "",
@@ -6029,20 +4958,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "default-require-extensions",
- "url": "github.com/jamestalmage",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "define-properties",
"url": "Unknown",
"description": "",
@@ -6113,20 +5028,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "defined",
- "url": "https://github.com/substack/defined",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "defu",
"url": "Unknown",
"description": "",
@@ -6141,34 +5042,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "del",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "delayed-stream",
- "url": "https://github.com/felixge/node-delayed-stream",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "delayed-stream",
"url": "https://github.com/felixge/node-delayed-stream",
"description": "",
@@ -6249,20 +5122,6 @@
},
{
"license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "detect-indent",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.txt"
},
@@ -6277,20 +5136,6 @@
},
{
"license": {
- "name": "New BSD",
- "url": "http://opensource.org/licenses/BSD-3-Clause"
- },
- "dependency": {
- "name": "diff",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "MIT",
"url": "http://opensource.org/licenses/mit-license"
},
@@ -6305,34 +5150,6 @@
},
{
"license": {
- "name": "Simplified BSD",
- "url": "http://opensource.org/licenses/bsd-license"
- },
- "dependency": {
- "name": "doctrine",
- "url": "https://github.com/eslint/doctrine",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "Apache 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt"
- },
- "dependency": {
- "name": "doctrine",
- "url": "https://github.com/eslint/doctrine",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "MIT",
"url": "http://opensource.org/licenses/mit-license"
},
@@ -6417,20 +5234,6 @@
},
{
"license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "domexception",
- "url": "https://domenic.me/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "Simplified BSD",
"url": "http://opensource.org/licenses/bsd-license"
},
@@ -6827,174 +5630,6 @@
"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": "",
@@ -7005,20 +5640,6 @@
},
{
"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"
},
@@ -7037,34 +5658,6 @@
"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": "",
@@ -7089,20 +5682,6 @@
},
{
"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"
},
@@ -7373,20 +5952,6 @@
"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": "",
@@ -7495,20 +6060,6 @@
},
{
"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"
},
@@ -7541,34 +6092,6 @@
"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": "",
@@ -7682,20 +6205,6 @@
},
"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": [
@@ -7723,48 +6232,6 @@
"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": "",
@@ -7845,33 +6312,6 @@
},
{
"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"
},
@@ -7904,20 +6344,6 @@
"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": "",
@@ -8040,20 +6466,6 @@
},
{
"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"
},
@@ -8134,20 +6546,6 @@
},
{
"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"
},
@@ -8162,34 +6560,6 @@
},
{
"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"
},
@@ -8274,34 +6644,6 @@
},
{
"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"
},
@@ -8386,62 +6728,6 @@
},
{
"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"
},
@@ -8460,34 +6746,6 @@
"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": "",
@@ -8498,20 +6756,6 @@
},
{
"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"
},
@@ -8750,34 +6994,6 @@
},
{
"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"
},
@@ -8834,19 +7050,6 @@
},
{
"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"
},
@@ -8875,20 +7078,6 @@
},
{
"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"
},
@@ -8935,20 +7124,6 @@
"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": "",
@@ -9033,20 +7208,6 @@
"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": "",
@@ -9103,20 +7264,6 @@
"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": "",
@@ -9131,34 +7278,6 @@
"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": "",
@@ -9239,20 +7358,6 @@
},
{
"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"
},
@@ -9410,34 +7515,6 @@
"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": "",
@@ -9452,34 +7529,6 @@
"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": "",
@@ -9648,20 +7697,6 @@
"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": "",
@@ -9844,20 +7879,6 @@
"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": "",
@@ -10026,48 +8047,6 @@
"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": "",
@@ -10250,20 +8229,6 @@
"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": "",
@@ -10302,20 +8267,6 @@
},
{
"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"
},
@@ -10372,90 +8323,6 @@
},
{
"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"
},
@@ -10530,20 +8397,6 @@
"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": "",
@@ -10600,20 +8453,6 @@
"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": "",
@@ -10642,20 +8481,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "jsesc",
- "url": "https://mths.be/jsesc",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "json-parse-better-errors",
"url": "Unknown",
"description": "",
@@ -10707,20 +8532,6 @@
},
{
"license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "json-stable-stringify-without-jsonify",
- "url": "https://github.com/samn/json-stable-stringify",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "ISC",
"url": "http://en.wikipedia.org/wiki/ISC_license"
},
@@ -10739,20 +8550,6 @@
"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": "",
@@ -10819,20 +8616,6 @@
},
{
"license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "jsonfile",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "Public Domain"
},
"dependency": {
@@ -10920,20 +8703,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "klaw",
- "url": "https://github.com/jprichardson/node-klaw#readme",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "last-call-webpack-plugin",
"url": "http://github.com/NMFR/last-call-webpack-plugin",
"description": "",
@@ -10976,75 +8745,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "lazy-cache",
- "url": "https://github.com/jonschlinkert/lazy-cache",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "lcid",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "New BSD",
- "url": "http://opensource.org/licenses/BSD-3-Clause"
- },
- "dependency": {
- "name": "lcov-parse",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "WTFPL"
- },
- "dependency": {
- "name": "left-pad",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "levn",
- "url": "https://github.com/gkz/levn",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "linkify-it",
"url": "Unknown",
"description": "",
@@ -11073,48 +8773,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "load-json-file",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "load-json-file",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "loader-fs-cache",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "loader-runner",
"url": "https://github.com/webpack/loader-runner#readme",
"description": "",
@@ -11171,20 +8829,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "locate-path",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "lodash",
"url": "https://lodash.com/",
"description": "",
@@ -11213,76 +8857,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "lodash._baseassign",
- "url": "https://lodash.com/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "lodash._basecopy",
- "url": "https://lodash.com/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "lodash._basecreate",
- "url": "https://lodash.com/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "lodash._getnative",
- "url": "https://lodash.com/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "lodash._isiterateecall",
- "url": "https://lodash.com/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "lodash._reinterpolate",
"url": "https://lodash.com/",
"description": "",
@@ -11297,90 +8871,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "lodash.assign",
- "url": "https://lodash.com/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "lodash.clonedeep",
- "url": "https://lodash.com/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "lodash.cond",
- "url": "https://lodash.com/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "lodash.create",
- "url": "https://lodash.com/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "lodash.isarguments",
- "url": "https://lodash.com/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "lodash.isarray",
- "url": "https://lodash.com/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "lodash.isplainobject",
"url": "https://lodash.com/",
"description": "",
@@ -11409,20 +8899,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "lodash.keys",
- "url": "https://lodash.com/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "lodash.memoize",
"url": "https://lodash.com/",
"description": "",
@@ -11451,20 +8927,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "lodash.sortby",
- "url": "https://lodash.com/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "lodash.template",
"url": "https://lodash.com/",
"description": "",
@@ -11517,34 +8979,6 @@
},
{
"license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "log-driver",
- "url": "https://github.com/cainus/logdriver",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "longest",
- "url": "https://github.com/jonschlinkert/longest",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "MIT",
"url": "http://opensource.org/licenses/mit-license"
},
@@ -11744,34 +9178,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "md5-hex",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "md5-o-matic",
- "url": "https://github.com/trentmillar/md5-o-matic",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "md5.js",
"url": "https://github.com/crypto-browserify/md5.js",
"description": "",
@@ -11828,20 +9234,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "mem",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "memory-fs",
"url": "https://github.com/webpack/memory-fs",
"description": "",
@@ -11968,20 +9360,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "mime",
- "url": "http://github.com/broofa",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "mime-db",
"url": "Unknown",
"description": "",
@@ -12011,20 +9389,6 @@
},
"dependency": {
"name": "mime-types",
- "url": "http://jongleberry.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "mime-types",
"url": "Unknown",
"description": "",
"pathes": [
@@ -12052,20 +9416,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "mimic-fn",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "min-document",
"url": "https://github.com/Raynos/min-document",
"description": "",
@@ -12146,20 +9496,6 @@
},
{
"license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "minimist",
- "url": "https://github.com/substack/minimist",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "ISC",
"url": "http://en.wikipedia.org/wiki/ISC_license"
},
@@ -12234,34 +9570,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "mocha",
- "url": "https://mochajs.org/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "mocha-webpack",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "moment",
"url": "http://momentjs.com/",
"description": "",
@@ -12328,20 +9636,6 @@
},
{
"license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "mute-stream",
- "url": "http://blog.izs.me/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "MIT",
"url": "http://opensource.org/licenses/mit-license"
},
@@ -12374,20 +9668,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "natural-compare",
- "url": "https://github.com/litejs/natural-compare-lite",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "needle",
"url": "Unknown",
"description": "",
@@ -12524,20 +9804,6 @@
},
{
"license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "node-uuid",
- "url": "https://github.com/broofa/node-uuid",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "ISC",
"url": "http://en.wikipedia.org/wiki/ISC_license"
},
@@ -12552,34 +9818,6 @@
},
{
"license": {
- "name": "Simplified BSD",
- "url": "http://opensource.org/licenses/bsd-license"
- },
- "dependency": {
- "name": "normalize-package-data",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "normalize-path",
- "url": "https://github.com/jonschlinkert/normalize-path",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "MIT",
"url": "http://opensource.org/licenses/mit-license"
},
@@ -12804,47 +10042,6 @@
},
{
"license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "nwmatcher",
- "url": "http://javascript.nwbox.com/NWMatcher/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "nyc",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "Apache*"
- },
- "dependency": {
- "name": "oauth-sign",
- "url": "http://www.futurealoof.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.txt"
},
@@ -12891,20 +10088,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "object-hash",
- "url": "https://github.com/puleos/object-hash",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "object-keys",
"url": "http://ljharb.codes",
"description": "",
@@ -13027,20 +10210,6 @@
},
{
"license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "onetime",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "(WTFPL OR MIT)"
},
"dependency": {
@@ -13058,20 +10227,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "optimist",
- "url": "http://substack.net",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "optimize-css-assets-webpack-plugin",
"url": "http://github.com/NMFR/optimize-css-assets-webpack-plugin",
"description": "",
@@ -13086,20 +10241,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "optionator",
- "url": "https://github.com/gkz/optionator",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "os-browserify",
"url": "Unknown",
"description": "",
@@ -13128,34 +10269,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "os-locale",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "os-locale",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "os-tmpdir",
"url": "sindresorhus.com",
"description": "",
@@ -13212,34 +10325,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "p-limit",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "p-locate",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "p-locate",
"url": "sindresorhus.com",
"description": "",
@@ -13264,20 +10349,6 @@
},
{
"license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "p-try",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "(MIT AND Zlib)"
},
"dependency": {
@@ -13421,34 +10492,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "parse-json",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "parse5",
- "url": "https://github.com/inikulin/parse5",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "parseurl",
"url": "Unknown",
"description": "",
@@ -13519,20 +10562,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "path-exists",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "path-is-absolute",
"url": "sindresorhus.com",
"description": "",
@@ -13543,19 +10572,6 @@
},
{
"license": {
- "name": "(WTFPL OR MIT)"
- },
- "dependency": {
- "name": "path-is-inside",
- "url": "https://domenic.me",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "MIT",
"url": "http://opensource.org/licenses/mit-license"
},
@@ -13616,48 +10632,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "path-type",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "path-type",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "pathval",
- "url": "https://github.com/chaijs/pathval",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "pbkdf2",
"url": "https://github.com/crypto-browserify/pbkdf2",
"description": "",
@@ -13738,34 +10712,6 @@
},
{
"license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "pinkie",
- "url": "github.com/floatdrop",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "pinkie-promise",
- "url": "github.com/floatdrop",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "ISC",
"url": "http://en.wikipedia.org/wiki/ISC_license"
},
@@ -13798,48 +10744,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "pkg-dir",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "pluralize",
- "url": "http://blakeembrey.me",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "pn",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "pngjs",
"url": "https://github.com/lukeapage/pngjs",
"description": "",
@@ -15266,20 +12170,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "prelude-ls",
- "url": "http://preludels.com/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "prepend-http",
"url": "sindresorhus.com",
"description": "",
@@ -15430,20 +12320,6 @@
},
{
"license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "progress",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "ISC",
"url": "http://en.wikipedia.org/wiki/ISC_license"
},
@@ -15626,19 +12502,6 @@
},
{
"license": {
- "name": "SEE LICENSE IN LICENSE"
- },
- "dependency": {
- "name": "qs",
- "url": "https://github.com/hapijs/qs",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "New BSD",
"url": "http://opensource.org/licenses/BSD-3-Clause"
},
@@ -15852,76 +12715,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "read-pkg",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "read-pkg",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "read-pkg-up",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "read-pkg-up",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "readable-stream",
- "url": "http://blog.izs.me/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "readable-stream",
"url": "Unknown",
"description": "",
@@ -16048,20 +12841,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "regenerator-runtime",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "regenerator-transform",
"url": "Unknown",
"description": "",
@@ -16226,20 +13005,6 @@
},
{
"license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "repeating",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.txt"
},
@@ -16254,62 +13019,6 @@
},
{
"license": {
- "name": "Apache 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt"
- },
- "dependency": {
- "name": "request",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "request-promise-core",
- "url": "https://github.com/request/promise-core#readme",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "request-promise-native",
- "url": "https://github.com/request/request-promise-native#readme",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "require-directory",
- "url": "https://github.com/troygoode/node-require-directory/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "MIT",
"url": "http://opensource.org/licenses/mit-license"
},
@@ -16324,34 +13033,6 @@
},
{
"license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "require-main-filename",
- "url": "https://github.com/yargs/require-main-filename#readme",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "require-uncached",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "MIT",
"url": "http://opensource.org/licenses/mit-license"
},
@@ -16384,48 +13065,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "resolve",
- "url": "http://substack.net",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "resolve-from",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "resolve-from",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "resolve-from",
"url": "sindresorhus.com",
"description": "",
@@ -16454,34 +13093,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "restore-cursor",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "resumer",
- "url": "https://github.com/substack/resumer",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "ret",
"url": "https://github.com/fent",
"description": "",
@@ -16534,20 +13145,6 @@
},
{
"license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "right-align",
- "url": "https://github.com/jonschlinkert/right-align",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "ISC",
"url": "http://en.wikipedia.org/wiki/ISC_license"
},
@@ -16590,20 +13187,6 @@
},
{
"license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "run-async",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "ISC",
"url": "http://en.wikipedia.org/wiki/ISC_license"
},
@@ -16622,48 +13205,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "rupture",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "Apache 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt"
- },
- "dependency": {
- "name": "rx-lite",
- "url": "https://github.com/Reactive-Extensions/RxJS",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "Apache 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt"
- },
- "dependency": {
- "name": "rx-lite-aggregates",
- "url": "https://github.com/Reactive-Extensions/RxJS",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "safe-buffer",
"url": "https://github.com/feross/safe-buffer",
"description": "",
@@ -16702,20 +13243,6 @@
},
{
"license": {
- "name": "BSD",
- "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29"
- },
- "dependency": {
- "name": "sax",
- "url": "http://blog.izs.me/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "ISC",
"url": "http://en.wikipedia.org/wiki/ISC_license"
},
@@ -16786,20 +13313,6 @@
},
{
"license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "semver",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "MIT",
"url": "http://opensource.org/licenses/mit-license"
},
@@ -17041,34 +13554,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "slice-ansi",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "slide",
- "url": "http://blog.izs.me/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "slideout",
"url": "Unknown",
"description": "",
@@ -17135,20 +13620,6 @@
},
{
"license": {
- "name": "New BSD",
- "url": "http://opensource.org/licenses/BSD-3-Clause"
- },
- "dependency": {
- "name": "sntp",
- "url": "http://hueniverse.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "MIT",
"url": "http://opensource.org/licenses/mit-license"
},
@@ -17191,48 +13662,6 @@
},
{
"license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "source-list-map",
- "url": "https://github.com/webpack/source-list-map",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "New BSD",
- "url": "http://opensource.org/licenses/BSD-3-Clause"
- },
- "dependency": {
- "name": "source-map",
- "url": "https://github.com/mozilla/source-map",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "New BSD",
- "url": "http://opensource.org/licenses/BSD-3-Clause"
- },
- "dependency": {
- "name": "source-map",
- "url": "https://github.com/mozilla/source-map",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "New BSD",
"url": "http://opensource.org/licenses/BSD-3-Clause"
},
@@ -17317,87 +13746,6 @@
},
{
"license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "spawn-wrap",
- "url": "https://github.com/isaacs/spawn-wrap#readme",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "Apache 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt"
- },
- "dependency": {
- "name": "spdx-correct",
- "url": "https://kemitchell.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "CC-BY-3.0"
- },
- "dependency": {
- "name": "spdx-exceptions",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "spdx-expression-parse",
- "url": "http://kemitchell.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "CC0-1.0"
- },
- "dependency": {
- "name": "spdx-license-ids",
- "url": "https://github.com/shinnn",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT*"
- },
- "dependency": {
- "name": "split",
- "url": "http://github.com/dominictarr/split",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "MIT",
"url": "http://opensource.org/licenses/mit-license"
},
@@ -17538,20 +13886,6 @@
},
{
"license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "stealthy-require",
- "url": "https://github.com/analog-nico/stealthy-require#readme",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "MIT",
"url": "http://opensource.org/licenses/mit-license"
},
@@ -17570,20 +13904,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "stream-combiner",
- "url": "https://github.com/dominictarr/stream-combiner",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "stream-each",
"url": "https://github.com/mafintosh/stream-each",
"description": "",
@@ -17725,20 +14045,6 @@
},
"dependency": {
"name": "string_decoder",
- "url": "https://github.com/rvagg/string_decoder",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "string_decoder",
"url": "https://github.com/nodejs/string_decoder",
"description": "",
"pathes": [
@@ -17780,20 +14086,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "stringstream",
- "url": "http://github.com/mhart",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "strip-ansi",
"url": "sindresorhus.com",
"description": "",
@@ -17836,34 +14128,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "strip-bom",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "strip-bom",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "strip-eof",
"url": "sindresorhus.com",
"description": "",
@@ -17878,20 +14142,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "strip-indent",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "strip-json-comments",
"url": "sindresorhus.com",
"description": "",
@@ -17934,48 +14184,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "stylus",
- "url": "https://github.com/stylus/stylus",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "stylus-loader",
- "url": "http://dontkry.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "supports-color",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "supports-color",
"url": "sindresorhus.com",
"description": "",
@@ -18074,34 +14282,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "symbol-tree",
- "url": "https://github.com/jsdom/js-symbol-tree#symbol-tree",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "New BSD",
- "url": "http://opensource.org/licenses/BSD-3-Clause"
- },
- "dependency": {
- "name": "table",
- "url": "http://gajus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "tapable",
"url": "https://github.com/webpack/tapable",
"description": "",
@@ -18126,20 +14306,6 @@
},
{
"license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "tape",
- "url": "https://github.com/substack/tape",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "ISC",
"url": "http://en.wikipedia.org/wiki/ISC_license"
},
@@ -18196,20 +14362,6 @@
},
{
"license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "test-exclude",
- "url": "https://github.com/istanbuljs/istanbuljs#readme",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "MIT",
"url": "http://opensource.org/licenses/mit-license"
},
@@ -18242,20 +14394,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "through",
- "url": "https://github.com/dominictarr/through",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "through2",
"url": "https://github.com/rvagg",
"description": "",
@@ -18326,20 +14464,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "tmp",
- "url": "http://github.com/raszi/node-tmp",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "to-arraybuffer",
"url": "https://github.com/jhiesey/to-arraybuffer#readme",
"description": "",
@@ -18368,20 +14492,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "to-fast-properties",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "to-object-path",
"url": "https://github.com/jonschlinkert/to-object-path",
"description": "",
@@ -18480,20 +14590,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "tr46",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "trim",
"url": "Unknown",
"description": "",
@@ -18574,20 +14670,6 @@
},
{
"license": {
- "name": "Apache 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt"
- },
- "dependency": {
- "name": "tunnel-agent",
- "url": "http://www.futurealoof.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "Unlicense"
},
"dependency": {
@@ -18601,34 +14683,6 @@
},
{
"license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "type-check",
- "url": "https://github.com/gkz/type-check",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "type-detect",
- "url": "http://alogicalparadox.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "(MIT OR CC0-1.0)"
},
"dependency": {
@@ -18702,20 +14756,6 @@
},
"dependency": {
"name": "uglify-js",
- "url": "http://lisperator.net/uglifyjs",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "Simplified BSD",
- "url": "http://opensource.org/licenses/bsd-license"
- },
- "dependency": {
- "name": "uglify-js",
"url": "http://lisperator.net/",
"description": "",
"pathes": [
@@ -18743,20 +14783,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "uglify-to-browserify",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "underscore",
"url": "http://underscorejs.org/",
"description": "",
@@ -19089,20 +15115,6 @@
},
{
"license": {
- "name": "Simplified BSD",
- "url": "http://opensource.org/licenses/bsd-license"
- },
- "dependency": {
- "name": "urlgrey",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "MIT",
"url": "http://opensource.org/licenses/mit-license"
},
@@ -19229,20 +15241,6 @@
},
{
"license": {
- "name": "Apache 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt"
- },
- "dependency": {
- "name": "validate-npm-package-license",
- "url": "https://kemitchell.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "MIT",
"url": "http://opensource.org/licenses/mit-license"
},
@@ -19526,20 +15524,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "w3c-hr-time",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "watchpack",
"url": "https://github.com/webpack/watchpack",
"description": "",
@@ -19550,20 +15534,6 @@
},
{
"license": {
- "name": "Simplified BSD",
- "url": "http://opensource.org/licenses/bsd-license"
- },
- "dependency": {
- "name": "webidl-conversions",
- "url": "https://domenic.me/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "MIT",
"url": "http://opensource.org/licenses/mit-license"
},
@@ -19624,20 +15594,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "webpack-info-plugin",
- "url": "https://github.com/zinserjan/webpack-info-plugin#readme",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "webpack-log",
"url": "https://github.com/webpack-contrib/webpack-log#readme",
"description": "",
@@ -19680,20 +15636,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "webpack-sources",
- "url": "https://github.com/webpack/webpack-sources#readme",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "webpackbar",
"url": "https://github.com/nuxt/webpackbar",
"description": "",
@@ -19708,48 +15650,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "whatwg-encoding",
- "url": "https://domenic.me/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "whatwg-url",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "when",
- "url": "http://cujojs.com/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "whet.extend",
"url": "Unknown",
"description": "",
@@ -19778,48 +15678,6 @@
"url": "http://en.wikipedia.org/wiki/ISC_license"
},
"dependency": {
- "name": "which",
- "url": "http://blog.izs.me",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "which-module",
- "url": "https://github.com/nexdrew/which-module#readme",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "which-module",
- "url": "https://github.com/nexdrew/which-module#readme",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
"name": "wide-align",
"url": "http://re-becca.org/",
"description": "",
@@ -19844,90 +15702,6 @@
},
{
"license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "window",
- "url": "https://github.com/lukechilds/window#readme",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "window-size",
- "url": "https://github.com/jonschlinkert/window-size",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "window-size",
- "url": "https://github.com/jonschlinkert/window-size",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "wordwrap",
- "url": "http://substack.net",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "wordwrap",
- "url": "http://substack.net",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "wordwrap",
- "url": "http://substack.net",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.txt"
},
@@ -19984,20 +15758,6 @@
},
{
"license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "wrap-ansi",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "ISC",
"url": "http://en.wikipedia.org/wiki/ISC_license"
},
@@ -20012,34 +15772,6 @@
},
{
"license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "write",
- "url": "https://github.com/jonschlinkert/write",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "write-file-atomic",
- "url": "https://github.com/iarna/write-file-atomic",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "ISC",
"url": "http://en.wikipedia.org/wiki/ISC_license"
},
@@ -20100,20 +15832,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "ws",
- "url": "https://github.com/websockets/ws",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "xhr",
"url": "https://github.com/naugtur/xhr",
"description": "",
@@ -20124,20 +15842,6 @@
},
{
"license": {
- "name": "Apache 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt"
- },
- "dependency": {
- "name": "xml-name-validator",
- "url": "https://domenic.me/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
"name": "MIT",
"url": "http://opensource.org/licenses/mit-license"
},
@@ -20226,20 +15930,6 @@
"url": "http://en.wikipedia.org/wiki/ISC_license"
},
"dependency": {
- "name": "y18n",
- "url": "https://github.com/yargs/y18n",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
"name": "yallist",
"url": "http://blog.izs.me/",
"description": "",
@@ -20261,76 +15951,6 @@
"."
]
}
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "yargs",
- "url": "http://yargs.js.org/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "yargs",
- "url": "http://CodeTunnel.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "yargs",
- "url": "http://yargs.js.org/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "yargs-parser",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "yargs-parser",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
}
]
-}
+} \ 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,26 +2781,6 @@
"url": "http://en.wikipedia.org/wiki/ISC_license"
},
"dependency": {
- "name": "abab",
- "url": "https://github.com/jsdom/abab#readme",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- }
- ],
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
"name": "abbrev",
"url": "Unknown",
"description": "",
@@ -2866,66 +2822,6 @@
},
"dependency": {
"name": "acorn",
- "url": "https://github.com/ternjs/acorn",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "acorn",
- "url": "https://github.com/acornjs/acorn",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "acorn",
- "url": "https://github.com/acornjs/acorn",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "acorn",
"url": "https://github.com/acornjs/acorn",
"description": "",
"pathes": [
@@ -2965,46 +2861,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "acorn-globals",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "acorn-jsx",
- "url": "https://github.com/RReverser/acorn-jsx",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "acorn-walk",
"url": "https://github.com/acornjs/acorn",
"description": "",
@@ -3105,46 +2961,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "ajv-keywords",
- "url": "https://github.com/epoberezkin/ajv-keywords#readme",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "align-text",
- "url": "https://github.com/jonschlinkert/align-text",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "alphanum-sort",
"url": "https://github.com/TrySound/alphanum-sort",
"description": "",
@@ -3156,25 +2972,6 @@
{
"licenses": [
{
- "name": "BSD-3-Clause OR MIT",
- "url": ""
- }
- ],
- "license": {
- "name": "BSD-3-Clause OR MIT"
- },
- "dependency": {
- "name": "amdefine",
- "url": "http://github.com/jrburke/amdefine",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "ISC",
"url": "http://en.wikipedia.org/wiki/ISC_license"
}
@@ -3235,26 +3032,6 @@
{
"licenses": [
{
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "ansi-escapes",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.txt"
}
@@ -3385,26 +3162,6 @@
},
"dependency": {
"name": "anymatch",
- "url": "https://github.com/es128/anymatch",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- }
- ],
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "anymatch",
"url": "https://github.com/micromatch/anymatch",
"description": "",
"pathes": [
@@ -3435,26 +3192,6 @@
{
"licenses": [
{
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "append-transform",
- "url": "github.com/jamestalmage",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "ISC",
"url": "http://en.wikipedia.org/wiki/ISC_license"
}
@@ -3475,26 +3212,6 @@
{
"licenses": [
{
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "archy",
- "url": "http://substack.net",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "ISC",
"url": "http://en.wikipedia.org/wiki/ISC_license"
}
@@ -3624,26 +3341,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "array-equal",
- "url": "http://jongleberry.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "array-filter",
"url": "https://github.com/juliangruber/array-filter",
"description": "",
@@ -3724,46 +3421,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "array-union",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "array-uniq",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "array-unique",
"url": "https://github.com/jonschlinkert/array-unique",
"description": "",
@@ -3804,46 +3461,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "arrify",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "asn1",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "asn1",
"url": "joyent.com",
"description": "",
@@ -3895,25 +3512,6 @@
{
"licenses": [
{
- "name": "MIT*",
- "url": ""
- }
- ],
- "license": {
- "name": "MIT*"
- },
- "dependency": {
- "name": "assert-plus",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "MIT",
"url": "http://opensource.org/licenses/mit-license"
}
@@ -3943,26 +3541,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "assertion-error",
- "url": "http://qualiancy.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "assign-symbols",
"url": "https://github.com/jonschlinkert/assign-symbols",
"description": "",
@@ -3984,46 +3562,6 @@
},
"dependency": {
"name": "async",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "async",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "async",
"url": "https://caolan.github.io/async/",
"description": "",
"pathes": [
@@ -4173,25 +3711,6 @@
{
"licenses": [
{
- "name": "Apache*",
- "url": ""
- }
- ],
- "license": {
- "name": "Apache*"
- },
- "dependency": {
- "name": "aws-sign2",
- "url": "http://www.futurealoof.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.txt"
}
@@ -4281,66 +3800,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "babel-code-frame",
- "url": "https://babeljs.io/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "babel-eslint",
- "url": "https://github.com/babel/babel-eslint",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "babel-generator",
- "url": "https://babeljs.io/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "babel-loader",
"url": "https://github.com/babel/babel-loader",
"description": "",
@@ -4361,126 +3820,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "babel-messages",
- "url": "https://babeljs.io/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "babel-runtime",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "babel-template",
- "url": "https://babeljs.io/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "babel-traverse",
- "url": "https://babeljs.io/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "babel-types",
- "url": "https://babeljs.io/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "babylon",
- "url": "https://babeljs.io/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "balanced-match",
"url": "https://github.com/juliangruber/balanced-match",
"description": "",
@@ -4721,26 +4060,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "bl",
- "url": "https://github.com/rvagg/bl",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "bluebird",
"url": "https://github.com/petkaantonov/bluebird",
"description": "",
@@ -4842,26 +4161,6 @@
},
"dependency": {
"name": "boom",
- "url": "http://hueniverse.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "New BSD",
- "url": "http://opensource.org/licenses/BSD-3-Clause"
- }
- ],
- "license": {
- "name": "New BSD",
- "url": "http://opensource.org/licenses/BSD-3-Clause"
- },
- "dependency": {
- "name": "boom",
"url": "Unknown",
"description": "",
"pathes": [
@@ -5021,66 +4320,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "browser-env",
- "url": "https://github.com/lukechilds/browser-env#readme",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "Simplified BSD",
- "url": "http://opensource.org/licenses/bsd-license"
- }
- ],
- "license": {
- "name": "Simplified BSD",
- "url": "http://opensource.org/licenses/bsd-license"
- },
- "dependency": {
- "name": "browser-process-hrtime",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- }
- ],
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "browser-stdout",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "browserify-aes",
"url": "https://github.com/crypto-browserify/browserify-aes",
"description": "",
@@ -5341,26 +4580,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "builtin-modules",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "builtin-status-codes",
"url": "bendrucker.me",
"description": "",
@@ -5481,26 +4700,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "caching-transform",
- "url": "github.com/jamestalmage",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "caller-callsite",
"url": "sindresorhus.com",
"description": "",
@@ -5522,26 +4721,6 @@
},
"dependency": {
"name": "caller-path",
- "url": "http://sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "caller-path",
"url": "sindresorhus.com",
"description": "",
"pathes": [
@@ -5562,26 +4741,6 @@
},
"dependency": {
"name": "callsites",
- "url": "http://sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "callsites",
"url": "sindresorhus.com",
"description": "",
"pathes": [
@@ -5622,46 +4781,6 @@
},
"dependency": {
"name": "camelcase",
- "url": "http://sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "camelcase",
- "url": "http://sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "camelcase",
"url": "sindresorhus.com",
"description": "",
"pathes": [
@@ -5790,66 +4909,6 @@
{
"licenses": [
{
- "name": "BSD",
- "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29"
- }
- ],
- "license": {
- "name": "BSD",
- "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29"
- },
- "dependency": {
- "name": "caseless",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "center-align",
- "url": "https://github.com/jonschlinkert/center-align",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "chai",
- "url": "http://chaijs.com/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "MIT",
"url": "http://opensource.org/licenses/mit-license"
}
@@ -5919,46 +4978,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "chardet",
- "url": "https://github.com/runk/node-chardet",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "check-error",
- "url": "http://alogicalparadox.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "check-types",
"url": "https://gitlab.com/philbooth/check-types.js",
"description": "",
@@ -6079,26 +5098,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "ci-info",
- "url": "https://github.com/watson/ci-info",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "cipher-base",
"url": "https://github.com/crypto-browserify/cipher-base#readme",
"description": "",
@@ -6119,26 +5118,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "circular-json",
- "url": "https://github.com/WebReflection/circular-json",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "clap",
"url": "https://github.com/lahmatiy/clap",
"description": "",
@@ -6219,106 +5198,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "cli-cursor",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- }
- ],
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "cli-width",
- "url": "https://github.com/knownasilya/cli-width",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- }
- ],
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "cliui",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- }
- ],
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "cliui",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- }
- ],
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "cliui",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "clone",
"url": "http://paul.vorba.ch/",
"description": "",
@@ -6419,26 +5298,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "codecov.io",
- "url": "https://github.com/cainus/codecov.io",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "collection-visit",
"url": "https://github.com/jonschlinkert/collection-visit",
"description": "",
@@ -6659,46 +5518,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "combined-stream",
- "url": "https://github.com/felixge/node-combined-stream",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "commander",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "commander",
"url": "Unknown",
"description": "",
@@ -6879,26 +5698,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "concat-stream",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "connect",
"url": "http://tjholowaychuk.com",
"description": "",
@@ -7019,26 +5818,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "contains-path",
- "url": "https://github.com/jonschlinkert/contains-path",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "content-disposition",
"url": "Unknown",
"description": "",
@@ -7079,46 +5858,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "content-type-parser",
- "url": "https://domenic.me/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "convert-source-map",
- "url": "https://github.com/thlorenz/convert-source-map",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "convert-source-map",
"url": "https://github.com/thlorenz/convert-source-map",
"description": "",
@@ -7350,26 +6089,6 @@
{
"licenses": [
{
- "name": "Simplified BSD",
- "url": "http://opensource.org/licenses/bsd-license"
- }
- ],
- "license": {
- "name": "Simplified BSD",
- "url": "http://opensource.org/licenses/bsd-license"
- },
- "dependency": {
- "name": "coveralls",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "MIT",
"url": "http://opensource.org/licenses/mit-license"
}
@@ -7460,26 +6179,6 @@
},
"dependency": {
"name": "cross-spawn",
- "url": "http://indigounited.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "cross-spawn",
"url": "https://github.com/moxystudio/node-cross-spawn",
"description": "",
"pathes": [
@@ -7500,26 +6199,6 @@
},
"dependency": {
"name": "cryptiles",
- "url": "http://hueniverse.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "New BSD",
- "url": "http://opensource.org/licenses/BSD-3-Clause"
- }
- ],
- "license": {
- "name": "New BSD",
- "url": "http://opensource.org/licenses/BSD-3-Clause"
- },
- "dependency": {
- "name": "cryptiles",
"url": "Unknown",
"description": "",
"pathes": [
@@ -7648,26 +6327,6 @@
{
"licenses": [
{
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "css-parse",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "CC0-1.0",
"url": ""
}
@@ -8095,66 +6754,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "cssom",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "cssstyle",
- "url": "https://github.com/chad3814/CSSStyleDeclaration",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "ctype",
- "url": "https://github.com/rmustacc/node-ctype",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "cuint",
"url": "https://github.com/pierrec/js-cuint",
"description": "",
@@ -8354,66 +6953,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "debug",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "debug",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "debug-log",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "decamelize",
"url": "sindresorhus.com",
"description": "",
@@ -8474,46 +7013,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "deep-eql",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "deep-equal",
- "url": "http://substack.net",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "deep-extend",
"url": "https://github.com/unclechu/node-deep-extend",
"description": "",
@@ -8534,26 +7033,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "deep-is",
- "url": "http://thlorenz.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "deepmerge",
"url": "https://github.com/TehShrike/deepmerge",
"description": "",
@@ -8574,26 +7053,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "default-require-extensions",
- "url": "github.com/jamestalmage",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "define-properties",
"url": "Unknown",
"description": "",
@@ -8694,26 +7153,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "defined",
- "url": "https://github.com/substack/defined",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "defu",
"url": "Unknown",
"description": "",
@@ -8734,46 +7173,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "del",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "delayed-stream",
- "url": "https://github.com/felixge/node-delayed-stream",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "delayed-stream",
"url": "https://github.com/felixge/node-delayed-stream",
"description": "",
@@ -8885,26 +7284,6 @@
{
"licenses": [
{
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "detect-indent",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.txt"
}
@@ -8925,26 +7304,6 @@
{
"licenses": [
{
- "name": "New BSD",
- "url": "http://opensource.org/licenses/BSD-3-Clause"
- }
- ],
- "license": {
- "name": "New BSD",
- "url": "http://opensource.org/licenses/BSD-3-Clause"
- },
- "dependency": {
- "name": "diff",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "MIT",
"url": "http://opensource.org/licenses/mit-license"
}
@@ -8965,46 +7324,6 @@
{
"licenses": [
{
- "name": "Simplified BSD",
- "url": "http://opensource.org/licenses/bsd-license"
- }
- ],
- "license": {
- "name": "Simplified BSD",
- "url": "http://opensource.org/licenses/bsd-license"
- },
- "dependency": {
- "name": "doctrine",
- "url": "https://github.com/eslint/doctrine",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "Apache 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt"
- }
- ],
- "license": {
- "name": "Apache 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt"
- },
- "dependency": {
- "name": "doctrine",
- "url": "https://github.com/eslint/doctrine",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "MIT",
"url": "http://opensource.org/licenses/mit-license"
}
@@ -9125,26 +7444,6 @@
{
"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"
}
@@ -9714,246 +8013,6 @@
"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": "",
@@ -9965,26 +8024,6 @@
{
"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"
}
@@ -10014,26 +8053,6 @@
"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": "",
@@ -10074,46 +8093,6 @@
"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": "",
@@ -10494,26 +8473,6 @@
"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": "",
@@ -10665,26 +8624,6 @@
{
"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"
}
@@ -10734,46 +8673,6 @@
"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": "",
@@ -10935,26 +8834,6 @@
},
"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": [
@@ -10994,66 +8873,6 @@
"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": "",
@@ -11165,45 +8984,6 @@
{
"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"
}
@@ -11253,26 +9033,6 @@
"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": "",
@@ -11444,26 +9204,6 @@
{
"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"
}
@@ -11580,26 +9320,6 @@
{
"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"
}
@@ -11620,46 +9340,6 @@
{
"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"
}
@@ -11780,46 +9460,6 @@
{
"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"
}
@@ -11940,66 +9580,6 @@
{
"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"
}
@@ -12020,66 +9600,6 @@
{
"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"
}
@@ -12100,26 +9620,6 @@
{
"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"
}
@@ -12460,46 +9960,6 @@
{
"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"
}
@@ -12580,25 +10040,6 @@
{
"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"
}
@@ -12639,26 +10080,6 @@
{
"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"
}
@@ -12728,26 +10149,6 @@
"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": "",
@@ -12868,26 +10269,6 @@
"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": "",
@@ -12968,26 +10349,6 @@
"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": "",
@@ -13008,46 +10369,6 @@
"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": "",
@@ -13159,26 +10480,6 @@
{
"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"
}
@@ -13407,46 +10708,6 @@
"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": "",
@@ -13467,46 +10728,6 @@
"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": "",
@@ -13747,26 +10968,6 @@
"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": "",
@@ -14027,26 +11228,6 @@
"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": "",
@@ -14287,66 +11468,6 @@
"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": "",
@@ -14607,26 +11728,6 @@
"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": "",
@@ -14678,26 +11779,6 @@
{
"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"
}
@@ -14778,126 +11859,6 @@
{
"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"
}
@@ -15007,26 +11968,6 @@
"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": "",
@@ -15107,26 +12048,6 @@
"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": "",
@@ -15167,26 +12088,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "jsesc",
- "url": "https://mths.be/jsesc",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "json-parse-better-errors",
"url": "Unknown",
"description": "",
@@ -15257,26 +12158,6 @@
{
"licenses": [
{
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "json-stable-stringify-without-jsonify",
- "url": "https://github.com/samn/json-stable-stringify",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "ISC",
"url": "http://en.wikipedia.org/wiki/ISC_license"
}
@@ -15306,26 +12187,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "json3",
- "url": "http://bestiejs.github.io/json3",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "json5",
"url": "http://json5.org/",
"description": "",
@@ -15417,26 +12278,6 @@
{
"licenses": [
{
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "jsonfile",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "Public Domain",
"url": ""
}
@@ -15565,26 +12406,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "klaw",
- "url": "https://github.com/jprichardson/node-klaw#readme",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "last-call-webpack-plugin",
"url": "http://github.com/NMFR/last-call-webpack-plugin",
"description": "",
@@ -15645,105 +12466,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "lazy-cache",
- "url": "https://github.com/jonschlinkert/lazy-cache",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "lcid",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "New BSD",
- "url": "http://opensource.org/licenses/BSD-3-Clause"
- }
- ],
- "license": {
- "name": "New BSD",
- "url": "http://opensource.org/licenses/BSD-3-Clause"
- },
- "dependency": {
- "name": "lcov-parse",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "WTFPL",
- "url": ""
- }
- ],
- "license": {
- "name": "WTFPL"
- },
- "dependency": {
- "name": "left-pad",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "levn",
- "url": "https://github.com/gkz/levn",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "linkify-it",
"url": "Unknown",
"description": "",
@@ -15784,66 +12506,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "load-json-file",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "load-json-file",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- }
- ],
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "loader-fs-cache",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "loader-runner",
"url": "https://github.com/webpack/loader-runner#readme",
"description": "",
@@ -15924,26 +12586,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "locate-path",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "lodash",
"url": "https://lodash.com/",
"description": "",
@@ -15984,106 +12626,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "lodash._baseassign",
- "url": "https://lodash.com/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "lodash._basecopy",
- "url": "https://lodash.com/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "lodash._basecreate",
- "url": "https://lodash.com/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "lodash._getnative",
- "url": "https://lodash.com/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "lodash._isiterateecall",
- "url": "https://lodash.com/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "lodash._reinterpolate",
"url": "https://lodash.com/",
"description": "",
@@ -16104,126 +12646,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "lodash.assign",
- "url": "https://lodash.com/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "lodash.clonedeep",
- "url": "https://lodash.com/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "lodash.cond",
- "url": "https://lodash.com/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "lodash.create",
- "url": "https://lodash.com/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "lodash.isarguments",
- "url": "https://lodash.com/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "lodash.isarray",
- "url": "https://lodash.com/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "lodash.isplainobject",
"url": "https://lodash.com/",
"description": "",
@@ -16264,26 +12686,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "lodash.keys",
- "url": "https://lodash.com/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "lodash.memoize",
"url": "https://lodash.com/",
"description": "",
@@ -16324,26 +12726,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "lodash.sortby",
- "url": "https://lodash.com/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "lodash.template",
"url": "https://lodash.com/",
"description": "",
@@ -16415,46 +12797,6 @@
{
"licenses": [
{
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- }
- ],
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "log-driver",
- "url": "https://github.com/cainus/logdriver",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "longest",
- "url": "https://github.com/jonschlinkert/longest",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "MIT",
"url": "http://opensource.org/licenses/mit-license"
}
@@ -16743,46 +13085,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "md5-hex",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "md5-o-matic",
- "url": "https://github.com/trentmillar/md5-o-matic",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "md5.js",
"url": "https://github.com/crypto-browserify/md5.js",
"description": "",
@@ -16863,26 +13165,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "mem",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "memory-fs",
"url": "https://github.com/webpack/memory-fs",
"description": "",
@@ -17063,26 +13345,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "mime",
- "url": "http://github.com/broofa",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "mime-db",
"url": "Unknown",
"description": "",
@@ -17124,26 +13386,6 @@
},
"dependency": {
"name": "mime-types",
- "url": "http://jongleberry.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "mime-types",
"url": "Unknown",
"description": "",
"pathes": [
@@ -17183,26 +13425,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "mimic-fn",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "min-document",
"url": "https://github.com/Raynos/min-document",
"description": "",
@@ -17314,26 +13536,6 @@
{
"licenses": [
{
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "minimist",
- "url": "https://github.com/substack/minimist",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "ISC",
"url": "http://en.wikipedia.org/wiki/ISC_license"
}
@@ -17443,46 +13645,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "mocha",
- "url": "https://mochajs.org/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "mocha-webpack",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "moment",
"url": "http://momentjs.com/",
"description": "",
@@ -17574,26 +13736,6 @@
{
"licenses": [
{
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- }
- ],
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "mute-stream",
- "url": "http://blog.izs.me/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "MIT",
"url": "http://opensource.org/licenses/mit-license"
}
@@ -17643,26 +13785,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "natural-compare",
- "url": "https://github.com/litejs/natural-compare-lite",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "needle",
"url": "Unknown",
"description": "",
@@ -17854,26 +13976,6 @@
{
"licenses": [
{
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "node-uuid",
- "url": "https://github.com/broofa/node-uuid",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "ISC",
"url": "http://en.wikipedia.org/wiki/ISC_license"
}
@@ -17894,46 +13996,6 @@
{
"licenses": [
{
- "name": "Simplified BSD",
- "url": "http://opensource.org/licenses/bsd-license"
- }
- ],
- "license": {
- "name": "Simplified BSD",
- "url": "http://opensource.org/licenses/bsd-license"
- },
- "dependency": {
- "name": "normalize-package-data",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "normalize-path",
- "url": "https://github.com/jonschlinkert/normalize-path",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "MIT",
"url": "http://opensource.org/licenses/mit-license"
}
@@ -18254,65 +14316,6 @@
{
"licenses": [
{
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "nwmatcher",
- "url": "http://javascript.nwbox.com/NWMatcher/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- }
- ],
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "nyc",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "Apache*",
- "url": ""
- }
- ],
- "license": {
- "name": "Apache*"
- },
- "dependency": {
- "name": "oauth-sign",
- "url": "http://www.futurealoof.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.txt"
}
@@ -18382,26 +14385,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "object-hash",
- "url": "https://github.com/puleos/object-hash",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "object-keys",
"url": "http://ljharb.codes",
"description": "",
@@ -18573,26 +14556,6 @@
{
"licenses": [
{
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "onetime",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "(WTFPL OR MIT)",
"url": ""
}
@@ -18621,26 +14584,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "optimist",
- "url": "http://substack.net",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "optimize-css-assets-webpack-plugin",
"url": "http://github.com/NMFR/optimize-css-assets-webpack-plugin",
"description": "",
@@ -18661,26 +14604,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "optionator",
- "url": "https://github.com/gkz/optionator",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "os-browserify",
"url": "Unknown",
"description": "",
@@ -18721,46 +14644,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "os-locale",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "os-locale",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "os-tmpdir",
"url": "sindresorhus.com",
"description": "",
@@ -18841,46 +14724,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "p-limit",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "p-locate",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "p-locate",
"url": "sindresorhus.com",
"description": "",
@@ -18912,26 +14755,6 @@
{
"licenses": [
{
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "p-try",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "(MIT AND Zlib)",
"url": ""
}
@@ -19140,46 +14963,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "parse-json",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "parse5",
- "url": "https://github.com/inikulin/parse5",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "parseurl",
"url": "Unknown",
"description": "",
@@ -19280,26 +15063,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "path-exists",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "path-is-absolute",
"url": "sindresorhus.com",
"description": "",
@@ -19311,25 +15074,6 @@
{
"licenses": [
{
- "name": "(WTFPL OR MIT)",
- "url": ""
- }
- ],
- "license": {
- "name": "(WTFPL OR MIT)"
- },
- "dependency": {
- "name": "path-is-inside",
- "url": "https://domenic.me",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "MIT",
"url": "http://opensource.org/licenses/mit-license"
}
@@ -19419,66 +15163,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "path-type",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "path-type",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "pathval",
- "url": "https://github.com/chaijs/pathval",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "pbkdf2",
"url": "https://github.com/crypto-browserify/pbkdf2",
"description": "",
@@ -19590,46 +15274,6 @@
{
"licenses": [
{
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "pinkie",
- "url": "github.com/floatdrop",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "pinkie-promise",
- "url": "github.com/floatdrop",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "ISC",
"url": "http://en.wikipedia.org/wiki/ISC_license"
}
@@ -19679,66 +15323,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "pkg-dir",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "pluralize",
- "url": "http://blakeembrey.me",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "pn",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "pngjs",
"url": "https://github.com/lukeapage/pngjs",
"description": "",
@@ -21783,26 +17367,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "prelude-ls",
- "url": "http://preludels.com/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "prepend-http",
"url": "sindresorhus.com",
"description": "",
@@ -22014,26 +17578,6 @@
{
"licenses": [
{
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "progress",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "ISC",
"url": "http://en.wikipedia.org/wiki/ISC_license"
}
@@ -22294,25 +17838,6 @@
{
"licenses": [
{
- "name": "SEE LICENSE IN LICENSE",
- "url": ""
- }
- ],
- "license": {
- "name": "SEE LICENSE IN LICENSE"
- },
- "dependency": {
- "name": "qs",
- "url": "https://github.com/hapijs/qs",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "New BSD",
"url": "http://opensource.org/licenses/BSD-3-Clause"
}
@@ -22621,106 +18146,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "read-pkg",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "read-pkg",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "read-pkg-up",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "read-pkg-up",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "readable-stream",
- "url": "http://blog.izs.me/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "readable-stream",
"url": "Unknown",
"description": "",
@@ -22901,26 +18326,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "regenerator-runtime",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "regenerator-transform",
"url": "Unknown",
"description": "",
@@ -23152,46 +18557,6 @@
{
"licenses": [
{
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "repeating",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "Apache 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt"
- }
- ],
- "license": {
- "name": "Apache 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt"
- },
- "dependency": {
- "name": "request",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.txt"
}
@@ -23212,66 +18577,6 @@
{
"licenses": [
{
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- }
- ],
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "request-promise-core",
- "url": "https://github.com/request/promise-core#readme",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- }
- ],
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "request-promise-native",
- "url": "https://github.com/request/request-promise-native#readme",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "require-directory",
- "url": "https://github.com/troygoode/node-require-directory/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "MIT",
"url": "http://opensource.org/licenses/mit-license"
}
@@ -23292,46 +18597,6 @@
{
"licenses": [
{
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- }
- ],
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "require-main-filename",
- "url": "https://github.com/yargs/require-main-filename#readme",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "require-uncached",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "MIT",
"url": "http://opensource.org/licenses/mit-license"
}
@@ -23381,66 +18646,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "resolve",
- "url": "http://substack.net",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "resolve-from",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "resolve-from",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "resolve-from",
"url": "sindresorhus.com",
"description": "",
@@ -23481,46 +18686,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "restore-cursor",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "resumer",
- "url": "https://github.com/substack/resumer",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "ret",
"url": "https://github.com/fent",
"description": "",
@@ -23592,26 +18757,6 @@
{
"licenses": [
{
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "right-align",
- "url": "https://github.com/jonschlinkert/right-align",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "ISC",
"url": "http://en.wikipedia.org/wiki/ISC_license"
}
@@ -23672,26 +18817,6 @@
{
"licenses": [
{
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "run-async",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "ISC",
"url": "http://en.wikipedia.org/wiki/ISC_license"
}
@@ -23721,66 +18846,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "rupture",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "Apache 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt"
- }
- ],
- "license": {
- "name": "Apache 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt"
- },
- "dependency": {
- "name": "rx-lite",
- "url": "https://github.com/Reactive-Extensions/RxJS",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "Apache 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt"
- }
- ],
- "license": {
- "name": "Apache 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt"
- },
- "dependency": {
- "name": "rx-lite-aggregates",
- "url": "https://github.com/Reactive-Extensions/RxJS",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "safe-buffer",
"url": "https://github.com/feross/safe-buffer",
"description": "",
@@ -23832,26 +18897,6 @@
{
"licenses": [
{
- "name": "BSD",
- "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29"
- }
- ],
- "license": {
- "name": "BSD",
- "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29"
- },
- "dependency": {
- "name": "sax",
- "url": "http://blog.izs.me/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "ISC",
"url": "http://en.wikipedia.org/wiki/ISC_license"
}
@@ -23952,26 +18997,6 @@
{
"licenses": [
{
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- }
- ],
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "semver",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "MIT",
"url": "http://opensource.org/licenses/mit-license"
}
@@ -24320,46 +19345,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "slice-ansi",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- }
- ],
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "slide",
- "url": "http://blog.izs.me/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "slideout",
"url": "Unknown",
"description": "",
@@ -24451,26 +19436,6 @@
{
"licenses": [
{
- "name": "New BSD",
- "url": "http://opensource.org/licenses/BSD-3-Clause"
- }
- ],
- "license": {
- "name": "New BSD",
- "url": "http://opensource.org/licenses/BSD-3-Clause"
- },
- "dependency": {
- "name": "sntp",
- "url": "http://hueniverse.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "MIT",
"url": "http://opensource.org/licenses/mit-license"
}
@@ -24531,66 +19496,6 @@
{
"licenses": [
{
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "source-list-map",
- "url": "https://github.com/webpack/source-list-map",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "New BSD",
- "url": "http://opensource.org/licenses/BSD-3-Clause"
- }
- ],
- "license": {
- "name": "New BSD",
- "url": "http://opensource.org/licenses/BSD-3-Clause"
- },
- "dependency": {
- "name": "source-map",
- "url": "https://github.com/mozilla/source-map",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "New BSD",
- "url": "http://opensource.org/licenses/BSD-3-Clause"
- }
- ],
- "license": {
- "name": "New BSD",
- "url": "http://opensource.org/licenses/BSD-3-Clause"
- },
- "dependency": {
- "name": "source-map",
- "url": "https://github.com/mozilla/source-map",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "New BSD",
"url": "http://opensource.org/licenses/BSD-3-Clause"
}
@@ -24711,123 +19616,6 @@
{
"licenses": [
{
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- }
- ],
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "spawn-wrap",
- "url": "https://github.com/isaacs/spawn-wrap#readme",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "Apache 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt"
- }
- ],
- "license": {
- "name": "Apache 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt"
- },
- "dependency": {
- "name": "spdx-correct",
- "url": "https://kemitchell.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "CC-BY-3.0",
- "url": ""
- }
- ],
- "license": {
- "name": "CC-BY-3.0"
- },
- "dependency": {
- "name": "spdx-exceptions",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "spdx-expression-parse",
- "url": "http://kemitchell.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "CC0-1.0",
- "url": ""
- }
- ],
- "license": {
- "name": "CC0-1.0"
- },
- "dependency": {
- "name": "spdx-license-ids",
- "url": "https://github.com/shinnn",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT*",
- "url": ""
- }
- ],
- "license": {
- "name": "MIT*"
- },
- "dependency": {
- "name": "split",
- "url": "http://github.com/dominictarr/split",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "MIT",
"url": "http://opensource.org/licenses/mit-license"
}
@@ -25028,26 +19816,6 @@
{
"licenses": [
{
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- }
- ],
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "stealthy-require",
- "url": "https://github.com/analog-nico/stealthy-require#readme",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "MIT",
"url": "http://opensource.org/licenses/mit-license"
}
@@ -25077,26 +19845,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "stream-combiner",
- "url": "https://github.com/dominictarr/stream-combiner",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "stream-each",
"url": "https://github.com/mafintosh/stream-each",
"description": "",
@@ -25298,26 +20046,6 @@
},
"dependency": {
"name": "string_decoder",
- "url": "https://github.com/rvagg/string_decoder",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "string_decoder",
"url": "https://github.com/nodejs/string_decoder",
"description": "",
"pathes": [
@@ -25377,26 +20105,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "stringstream",
- "url": "http://github.com/mhart",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "strip-ansi",
"url": "sindresorhus.com",
"description": "",
@@ -25457,46 +20165,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "strip-bom",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "strip-bom",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "strip-eof",
"url": "sindresorhus.com",
"description": "",
@@ -25517,26 +20185,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "strip-indent",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "strip-json-comments",
"url": "sindresorhus.com",
"description": "",
@@ -25597,66 +20245,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "stylus",
- "url": "https://github.com/stylus/stylus",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "stylus-loader",
- "url": "http://dontkry.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "supports-color",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "supports-color",
"url": "sindresorhus.com",
"description": "",
@@ -25797,46 +20385,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "symbol-tree",
- "url": "https://github.com/jsdom/js-symbol-tree#symbol-tree",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "New BSD",
- "url": "http://opensource.org/licenses/BSD-3-Clause"
- }
- ],
- "license": {
- "name": "New BSD",
- "url": "http://opensource.org/licenses/BSD-3-Clause"
- },
- "dependency": {
- "name": "table",
- "url": "http://gajus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "tapable",
"url": "https://github.com/webpack/tapable",
"description": "",
@@ -25868,26 +20416,6 @@
{
"licenses": [
{
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "tape",
- "url": "https://github.com/substack/tape",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "ISC",
"url": "http://en.wikipedia.org/wiki/ISC_license"
}
@@ -25968,26 +20496,6 @@
{
"licenses": [
{
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- }
- ],
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "test-exclude",
- "url": "https://github.com/istanbuljs/istanbuljs#readme",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "MIT",
"url": "http://opensource.org/licenses/mit-license"
}
@@ -26037,26 +20545,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "through",
- "url": "https://github.com/dominictarr/through",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "through2",
"url": "https://github.com/rvagg",
"description": "",
@@ -26157,26 +20645,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "tmp",
- "url": "http://github.com/raszi/node-tmp",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "to-arraybuffer",
"url": "https://github.com/jhiesey/to-arraybuffer#readme",
"description": "",
@@ -26217,26 +20685,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "to-fast-properties",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "to-object-path",
"url": "https://github.com/jonschlinkert/to-object-path",
"description": "",
@@ -26377,26 +20825,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "tr46",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "trim",
"url": "Unknown",
"description": "",
@@ -26508,26 +20936,6 @@
{
"licenses": [
{
- "name": "Apache 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt"
- }
- ],
- "license": {
- "name": "Apache 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt"
- },
- "dependency": {
- "name": "tunnel-agent",
- "url": "http://www.futurealoof.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "Unlicense",
"url": ""
}
@@ -26547,46 +20955,6 @@
{
"licenses": [
{
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "type-check",
- "url": "https://github.com/gkz/type-check",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "type-detect",
- "url": "http://alogicalparadox.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "(MIT OR CC0-1.0)",
"url": ""
}
@@ -26695,26 +21063,6 @@
},
"dependency": {
"name": "uglify-js",
- "url": "http://lisperator.net/uglifyjs",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "Simplified BSD",
- "url": "http://opensource.org/licenses/bsd-license"
- }
- ],
- "license": {
- "name": "Simplified BSD",
- "url": "http://opensource.org/licenses/bsd-license"
- },
- "dependency": {
- "name": "uglify-js",
"url": "http://lisperator.net/",
"description": "",
"pathes": [
@@ -26754,26 +21102,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "uglify-to-browserify",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "underscore",
"url": "http://underscorejs.org/",
"description": "",
@@ -27245,26 +21573,6 @@
{
"licenses": [
{
- "name": "Simplified BSD",
- "url": "http://opensource.org/licenses/bsd-license"
- }
- ],
- "license": {
- "name": "Simplified BSD",
- "url": "http://opensource.org/licenses/bsd-license"
- },
- "dependency": {
- "name": "urlgrey",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "MIT",
"url": "http://opensource.org/licenses/mit-license"
}
@@ -27445,26 +21753,6 @@
{
"licenses": [
{
- "name": "Apache 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt"
- }
- ],
- "license": {
- "name": "Apache 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt"
- },
- "dependency": {
- "name": "validate-npm-package-license",
- "url": "https://kemitchell.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "MIT",
"url": "http://opensource.org/licenses/mit-license"
}
@@ -27873,26 +22161,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "w3c-hr-time",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "watchpack",
"url": "https://github.com/webpack/watchpack",
"description": "",
@@ -27904,26 +22172,6 @@
{
"licenses": [
{
- "name": "Simplified BSD",
- "url": "http://opensource.org/licenses/bsd-license"
- }
- ],
- "license": {
- "name": "Simplified BSD",
- "url": "http://opensource.org/licenses/bsd-license"
- },
- "dependency": {
- "name": "webidl-conversions",
- "url": "https://domenic.me/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "MIT",
"url": "http://opensource.org/licenses/mit-license"
}
@@ -28013,26 +22261,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "webpack-info-plugin",
- "url": "https://github.com/zinserjan/webpack-info-plugin#readme",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "webpack-log",
"url": "https://github.com/webpack-contrib/webpack-log#readme",
"description": "",
@@ -28093,26 +22321,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "webpack-sources",
- "url": "https://github.com/webpack/webpack-sources#readme",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "webpackbar",
"url": "https://github.com/nuxt/webpackbar",
"description": "",
@@ -28133,66 +22341,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "whatwg-encoding",
- "url": "https://domenic.me/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "whatwg-url",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "when",
- "url": "http://cujojs.com/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "whet.extend",
"url": "Unknown",
"description": "",
@@ -28233,66 +22381,6 @@
"url": "http://en.wikipedia.org/wiki/ISC_license"
},
"dependency": {
- "name": "which",
- "url": "http://blog.izs.me",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- }
- ],
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "which-module",
- "url": "https://github.com/nexdrew/which-module#readme",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- }
- ],
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "which-module",
- "url": "https://github.com/nexdrew/which-module#readme",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- }
- ],
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
"name": "wide-align",
"url": "http://re-becca.org/",
"description": "",
@@ -28324,126 +22412,6 @@
{
"licenses": [
{
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "window",
- "url": "https://github.com/lukechilds/window#readme",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "window-size",
- "url": "https://github.com/jonschlinkert/window-size",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "window-size",
- "url": "https://github.com/jonschlinkert/window-size",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "wordwrap",
- "url": "http://substack.net",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "wordwrap",
- "url": "http://substack.net",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "wordwrap",
- "url": "http://substack.net",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.txt"
}
@@ -28524,26 +22492,6 @@
{
"licenses": [
{
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "wrap-ansi",
- "url": "sindresorhus.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "ISC",
"url": "http://en.wikipedia.org/wiki/ISC_license"
}
@@ -28564,46 +22512,6 @@
{
"licenses": [
{
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "write",
- "url": "https://github.com/jonschlinkert/write",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- }
- ],
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "write-file-atomic",
- "url": "https://github.com/iarna/write-file-atomic",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "ISC",
"url": "http://en.wikipedia.org/wiki/ISC_license"
}
@@ -28693,26 +22601,6 @@
"url": "http://opensource.org/licenses/mit-license"
},
"dependency": {
- "name": "ws",
- "url": "https://github.com/websockets/ws",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
"name": "xhr",
"url": "https://github.com/naugtur/xhr",
"description": "",
@@ -28724,26 +22612,6 @@
{
"licenses": [
{
- "name": "Apache 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt"
- }
- ],
- "license": {
- "name": "Apache 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt"
- },
- "dependency": {
- "name": "xml-name-validator",
- "url": "https://domenic.me/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
"name": "MIT",
"url": "http://opensource.org/licenses/mit-license"
}
@@ -28873,26 +22741,6 @@
"url": "http://en.wikipedia.org/wiki/ISC_license"
},
"dependency": {
- "name": "y18n",
- "url": "https://github.com/yargs/y18n",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- }
- ],
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
"name": "yallist",
"url": "http://blog.izs.me/",
"description": "",
@@ -28920,106 +22768,6 @@
"."
]
}
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "yargs",
- "url": "http://yargs.js.org/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "yargs",
- "url": "http://CodeTunnel.com",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- }
- ],
- "license": {
- "name": "MIT",
- "url": "http://opensource.org/licenses/mit-license"
- },
- "dependency": {
- "name": "yargs",
- "url": "http://yargs.js.org/",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- }
- ],
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "yargs-parser",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
- },
- {
- "licenses": [
- {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- }
- ],
- "license": {
- "name": "ISC",
- "url": "http://en.wikipedia.org/wiki/ISC_license"
- },
- "dependency": {
- "name": "yargs-parser",
- "url": "Unknown",
- "description": "",
- "pathes": [
- "."
- ]
- }
}
]
-}
+} \ 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,30 +98,18 @@
"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",
"url": "",
@@ -1646,17 +1610,6 @@
]
},
{
- "name": "abab",
- "url": "https://github.com/jsdom/abab#readme",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "ISC"
- ]
- },
- {
"name": "abbrev",
"url": "Unknown",
"description": "",
@@ -1680,39 +1633,6 @@
},
{
"name": "acorn",
- "url": "https://github.com/ternjs/acorn",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "acorn",
- "url": "https://github.com/acornjs/acorn",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "acorn",
- "url": "https://github.com/acornjs/acorn",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "acorn",
"url": "https://github.com/acornjs/acorn",
"description": "",
"paths": [
@@ -1734,28 +1654,6 @@
]
},
{
- "name": "acorn-globals",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "acorn-jsx",
- "url": "https://github.com/RReverser/acorn-jsx",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "acorn-walk",
"url": "https://github.com/acornjs/acorn",
"description": "",
@@ -1811,28 +1709,6 @@
]
},
{
- "name": "ajv-keywords",
- "url": "https://github.com/epoberezkin/ajv-keywords#readme",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "align-text",
- "url": "https://github.com/jonschlinkert/align-text",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "alphanum-sort",
"url": "https://github.com/TrySound/alphanum-sort",
"description": "",
@@ -1844,17 +1720,6 @@
]
},
{
- "name": "amdefine",
- "url": "http://github.com/jrburke/amdefine",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "bsd-3-clause or mit"
- ]
- },
- {
"name": "ansi-align",
"url": "https://github.com/nexdrew/ansi-align#readme",
"description": "",
@@ -1888,17 +1753,6 @@
]
},
{
- "name": "ansi-escapes",
- "url": "sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "ansi-html",
"url": "https://github.com/Tjatse/ansi-html",
"description": "",
@@ -1966,17 +1820,6 @@
},
{
"name": "anymatch",
- "url": "https://github.com/es128/anymatch",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "ISC"
- ]
- },
- {
- "name": "anymatch",
"url": "https://github.com/micromatch/anymatch",
"description": "",
"paths": [
@@ -1998,17 +1841,6 @@
]
},
{
- "name": "append-transform",
- "url": "github.com/jamestalmage",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "aproba",
"url": "https://github.com/iarna/aproba",
"description": "",
@@ -2020,17 +1852,6 @@
]
},
{
- "name": "archy",
- "url": "http://substack.net",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "are-we-there-yet",
"url": "https://github.com/iarna/are-we-there-yet",
"description": "",
@@ -2097,17 +1918,6 @@
]
},
{
- "name": "array-equal",
- "url": "http://jongleberry.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "array-filter",
"url": "https://github.com/juliangruber/array-filter",
"description": "",
@@ -2152,28 +1962,6 @@
]
},
{
- "name": "array-union",
- "url": "sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "array-uniq",
- "url": "sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "array-unique",
"url": "https://github.com/jonschlinkert/array-unique",
"description": "",
@@ -2196,28 +1984,6 @@
]
},
{
- "name": "arrify",
- "url": "sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "asn1",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "asn1",
"url": "joyent.com",
"description": "",
@@ -2258,28 +2024,6 @@
"."
],
"licenses": [
- "mit*"
- ]
- },
- {
- "name": "assert-plus",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "assertion-error",
- "url": "http://qualiancy.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
"MIT"
]
},
@@ -2296,28 +2040,6 @@
},
{
"name": "async",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "async",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "async",
"url": "https://caolan.github.io/async/",
"description": "",
"paths": [
@@ -2412,17 +2134,6 @@
"."
],
"licenses": [
- "apache*"
- ]
- },
- {
- "name": "aws-sign2",
- "url": "http://www.futurealoof.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
"Apache-2.0"
]
},
@@ -2460,39 +2171,6 @@
]
},
{
- "name": "babel-code-frame",
- "url": "https://babeljs.io/",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "babel-eslint",
- "url": "https://github.com/babel/babel-eslint",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "babel-generator",
- "url": "https://babeljs.io/",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "babel-loader",
"url": "https://github.com/babel/babel-loader",
"description": "",
@@ -2504,72 +2182,6 @@
]
},
{
- "name": "babel-messages",
- "url": "https://babeljs.io/",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "babel-runtime",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "babel-template",
- "url": "https://babeljs.io/",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "babel-traverse",
- "url": "https://babeljs.io/",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "babel-types",
- "url": "https://babeljs.io/",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "babylon",
- "url": "https://babeljs.io/",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "balanced-match",
"url": "https://github.com/juliangruber/balanced-match",
"description": "",
@@ -2702,17 +2314,6 @@
]
},
{
- "name": "bl",
- "url": "https://github.com/rvagg/bl",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "bluebird",
"url": "https://github.com/petkaantonov/bluebird",
"description": "",
@@ -2769,17 +2370,6 @@
},
{
"name": "boom",
- "url": "http://hueniverse.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "BSD-3-Clause"
- ]
- },
- {
- "name": "boom",
"url": "Unknown",
"description": "",
"paths": [
@@ -2867,39 +2457,6 @@
]
},
{
- "name": "browser-env",
- "url": "https://github.com/lukechilds/browser-env#readme",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "browser-process-hrtime",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "BSD-2-Clause"
- ]
- },
- {
- "name": "browser-stdout",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "ISC"
- ]
- },
- {
"name": "browserify-aes",
"url": "https://github.com/crypto-browserify/browserify-aes",
"description": "",
@@ -3043,17 +2600,6 @@
]
},
{
- "name": "builtin-modules",
- "url": "sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "builtin-status-codes",
"url": "bendrucker.me",
"description": "",
@@ -3120,17 +2666,6 @@
]
},
{
- "name": "caching-transform",
- "url": "github.com/jamestalmage",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "caller-callsite",
"url": "sindresorhus.com",
"description": "",
@@ -3143,17 +2678,6 @@
},
{
"name": "caller-path",
- "url": "http://sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "caller-path",
"url": "sindresorhus.com",
"description": "",
"paths": [
@@ -3165,17 +2689,6 @@
},
{
"name": "callsites",
- "url": "http://sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "callsites",
"url": "sindresorhus.com",
"description": "",
"paths": [
@@ -3198,28 +2711,6 @@
},
{
"name": "camelcase",
- "url": "http://sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "camelcase",
- "url": "http://sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "camelcase",
"url": "sindresorhus.com",
"description": "",
"paths": [
@@ -3296,39 +2787,6 @@
]
},
{
- "name": "caseless",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "BSD-4-Clause"
- ]
- },
- {
- "name": "center-align",
- "url": "https://github.com/jonschlinkert/center-align",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "chai",
- "url": "http://chaijs.com/",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "chalk",
"url": "Unknown",
"description": "",
@@ -3362,28 +2820,6 @@
]
},
{
- "name": "chardet",
- "url": "https://github.com/runk/node-chardet",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "check-error",
- "url": "http://alogicalparadox.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "check-types",
"url": "https://gitlab.com/philbooth/check-types.js",
"description": "",
@@ -3450,17 +2886,6 @@
]
},
{
- "name": "ci-info",
- "url": "https://github.com/watson/ci-info",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "cipher-base",
"url": "https://github.com/crypto-browserify/cipher-base#readme",
"description": "",
@@ -3472,17 +2897,6 @@
]
},
{
- "name": "circular-json",
- "url": "https://github.com/WebReflection/circular-json",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "clap",
"url": "https://github.com/lahmatiy/clap",
"description": "",
@@ -3527,61 +2941,6 @@
]
},
{
- "name": "cli-cursor",
- "url": "sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "cli-width",
- "url": "https://github.com/knownasilya/cli-width",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "ISC"
- ]
- },
- {
- "name": "cliui",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "ISC"
- ]
- },
- {
- "name": "cliui",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "ISC"
- ]
- },
- {
- "name": "cliui",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "ISC"
- ]
- },
- {
"name": "clone",
"url": "http://paul.vorba.ch/",
"description": "",
@@ -3637,17 +2996,6 @@
]
},
{
- "name": "codecov.io",
- "url": "https://github.com/cainus/codecov.io",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "collection-visit",
"url": "https://github.com/jonschlinkert/collection-visit",
"description": "",
@@ -3769,28 +3117,6 @@
]
},
{
- "name": "combined-stream",
- "url": "https://github.com/felixge/node-combined-stream",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "commander",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "commander",
"url": "Unknown",
"description": "",
@@ -3890,17 +3216,6 @@
]
},
{
- "name": "concat-stream",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "connect",
"url": "http://tjholowaychuk.com",
"description": "",
@@ -3967,17 +3282,6 @@
]
},
{
- "name": "contains-path",
- "url": "https://github.com/jonschlinkert/contains-path",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "content-disposition",
"url": "Unknown",
"description": "",
@@ -4000,28 +3304,6 @@
]
},
{
- "name": "content-type-parser",
- "url": "https://domenic.me/",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "convert-source-map",
- "url": "https://github.com/thlorenz/convert-source-map",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "convert-source-map",
"url": "https://github.com/thlorenz/convert-source-map",
"description": "",
@@ -4154,17 +3436,6 @@
]
},
{
- "name": "coveralls",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "BSD-2-Clause"
- ]
- },
- {
"name": "create-ecdh",
"url": "https://github.com/crypto-browserify/createECDH",
"description": "",
@@ -4210,17 +3481,6 @@
},
{
"name": "cross-spawn",
- "url": "http://indigounited.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "cross-spawn",
"url": "https://github.com/moxystudio/node-cross-spawn",
"description": "",
"paths": [
@@ -4232,17 +3492,6 @@
},
{
"name": "cryptiles",
- "url": "http://hueniverse.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "BSD-3-Clause"
- ]
- },
- {
- "name": "cryptiles",
"url": "Unknown",
"description": "",
"paths": [
@@ -4319,17 +3568,6 @@
]
},
{
- "name": "css-parse",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "css-prefers-color-scheme",
"url": "https://github.com/csstools/css-prefers-color-scheme#readme",
"description": "",
@@ -4561,39 +3799,6 @@
]
},
{
- "name": "cssom",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "cssstyle",
- "url": "https://github.com/chad3814/CSSStyleDeclaration",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "ctype",
- "url": "https://github.com/rmustacc/node-ctype",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "cuint",
"url": "https://github.com/pierrec/js-cuint",
"description": "",
@@ -4704,39 +3909,6 @@
]
},
{
- "name": "debug",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "debug",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "debug-log",
- "url": "sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "decamelize",
"url": "sindresorhus.com",
"description": "",
@@ -4770,28 +3942,6 @@
]
},
{
- "name": "deep-eql",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "deep-equal",
- "url": "http://substack.net",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "deep-extend",
"url": "https://github.com/unclechu/node-deep-extend",
"description": "",
@@ -4803,17 +3953,6 @@
]
},
{
- "name": "deep-is",
- "url": "http://thlorenz.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "deepmerge",
"url": "https://github.com/TehShrike/deepmerge",
"description": "",
@@ -4825,17 +3964,6 @@
]
},
{
- "name": "default-require-extensions",
- "url": "github.com/jamestalmage",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "define-properties",
"url": "Unknown",
"description": "",
@@ -4891,17 +4019,6 @@
]
},
{
- "name": "defined",
- "url": "https://github.com/substack/defined",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "defu",
"url": "Unknown",
"description": "",
@@ -4913,28 +4030,6 @@
]
},
{
- "name": "del",
- "url": "sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "delayed-stream",
- "url": "https://github.com/felixge/node-delayed-stream",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "delayed-stream",
"url": "https://github.com/felixge/node-delayed-stream",
"description": "",
@@ -5001,17 +4096,6 @@
]
},
{
- "name": "detect-indent",
- "url": "sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "detect-libc",
"url": "Unknown",
"description": "",
@@ -5023,17 +4107,6 @@
]
},
{
- "name": "diff",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "BSD-3-Clause"
- ]
- },
- {
"name": "diffie-hellman",
"url": "https://github.com/crypto-browserify/diffie-hellman",
"description": "",
@@ -5045,28 +4118,6 @@
]
},
{
- "name": "doctrine",
- "url": "https://github.com/eslint/doctrine",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "BSD-2-Clause"
- ]
- },
- {
- "name": "doctrine",
- "url": "https://github.com/eslint/doctrine",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "Apache-2.0"
- ]
- },
- {
"name": "dom-converter",
"url": "Unknown",
"description": "",
@@ -5133,17 +4184,6 @@
]
},
{
- "name": "domexception",
- "url": "https://domenic.me/",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "domhandler",
"url": "Unknown",
"description": "",
@@ -5452,127 +4492,6 @@
]
},
{
- "name": "escodegen",
- "url": "http://github.com/estools/escodegen",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "BSD-2-Clause"
- ]
- },
- {
- "name": "eslint",
- "url": "https://eslint.org/",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "eslint-config-standard",
- "url": "https://github.com/feross/eslint-config-standard",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "eslint-import-resolver-node",
- "url": "https://github.com/benmosher/eslint-plugin-import",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "eslint-loader",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "eslint-module-utils",
- "url": "https://github.com/benmosher/eslint-plugin-import#readme",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "eslint-plugin-html",
- "url": "https://github.com/BenoitZugmeyer/eslint-plugin-html",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "ISC"
- ]
- },
- {
- "name": "eslint-plugin-import",
- "url": "https://github.com/benmosher/eslint-plugin-import",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "eslint-plugin-node",
- "url": "https://github.com/mysticatea/eslint-plugin-node#readme",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "eslint-plugin-promise",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "ISC"
- ]
- },
- {
- "name": "eslint-plugin-standard",
- "url": "https://github.com/xjamundx/eslint-plugin-standard#readme",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "eslint-scope",
"url": "http://github.com/eslint/eslint-scope",
"description": "",
@@ -5584,28 +4503,6 @@
]
},
{
- "name": "eslint-scope",
- "url": "http://github.com/eslint/eslint-scope",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "BSD-2-Clause"
- ]
- },
- {
- "name": "eslint-visitor-keys",
- "url": "https://github.com/eslint/eslint-visitor-keys#readme",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "Apache-2.0"
- ]
- },
- {
"name": "esm",
"url": "Unknown",
"description": "",
@@ -5617,28 +4514,6 @@
]
},
{
- "name": "espree",
- "url": "https://github.com/eslint/espree",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "BSD-2-Clause"
- ]
- },
- {
- "name": "esprima",
- "url": "http://esprima.org/",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "BSD-2-Clause"
- ]
- },
- {
"name": "esprima",
"url": "http://esprima.org/",
"description": "",
@@ -5661,17 +4536,6 @@
]
},
{
- "name": "esquery",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "BSD-3-Clause"
- ]
- },
- {
"name": "esrecurse",
"url": "https://github.com/estools/esrecurse",
"description": "",
@@ -5881,17 +4745,6 @@
]
},
{
- "name": "external-editor",
- "url": "https://github.com/mrkmg/node-external-editor#readme",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "extglob",
"url": "https://github.com/jonschlinkert/extglob",
"description": "",
@@ -5980,17 +4833,6 @@
]
},
{
- "name": "fast-levenshtein",
- "url": "http://www.hiddentao.com/",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "figgy-pudding",
"url": "Unknown",
"description": "",
@@ -6013,28 +4855,6 @@
]
},
{
- "name": "figures",
- "url": "sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "file-entry-cache",
- "url": "http://royriojas.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "file-loader",
"url": "https://github.com/webpack-contrib/file-loader",
"description": "",
@@ -6124,17 +4944,6 @@
},
{
"name": "find-cache-dir",
- "url": "github.com/jamestalmage",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "find-cache-dir",
"url": "Unknown",
"description": "",
"paths": [
@@ -6156,39 +4965,6 @@
]
},
{
- "name": "find-up",
- "url": "sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "find-up",
- "url": "sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "flat-cache",
- "url": "http://royriojas.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "flatten",
"url": "http://jesusabdullah.net",
"description": "",
@@ -6255,28 +5031,6 @@
]
},
{
- "name": "foreground-child",
- "url": "https://github.com/tapjs/foreground-child#readme",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "ISC"
- ]
- },
- {
- "name": "forever-agent",
- "url": "http://www.futurealoof.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "apache*"
- ]
- },
- {
"name": "forever-agent",
"url": "http://www.futurealoof.com",
"description": "",
@@ -6299,17 +5053,6 @@
]
},
{
- "name": "form-data",
- "url": "http://debuggable.com/",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "forwarded",
"url": "Unknown",
"description": "",
@@ -6409,17 +5152,6 @@
]
},
{
- "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": "",
@@ -6486,17 +5218,6 @@
]
},
{
- "name": "functional-red-black-tree",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "gauge",
"url": "https://github.com/iarna/gauge",
"description": "",
@@ -6508,28 +5229,6 @@
]
},
{
- "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": "",
@@ -6596,28 +5295,6 @@
]
},
{
- "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": "",
@@ -6684,39 +5361,6 @@
]
},
{
- "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": "",
@@ -6728,39 +5372,6 @@
]
},
{
- "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": "",
@@ -6772,17 +5383,6 @@
]
},
{
- "name": "handlebars",
- "url": "http://www.handlebarsjs.com/",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "har-schema",
"url": "https://github.com/ahmadnassri/har-schema",
"description": "",
@@ -6970,28 +5570,6 @@
]
},
{
- "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": "",
@@ -7037,17 +5615,6 @@
},
{
"name": "hoek",
- "url": "http://hueniverse.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "see license in license"
- ]
- },
- {
- "name": "hoek",
"url": "Unknown",
"description": "",
"paths": [
@@ -7069,17 +5636,6 @@
]
},
{
- "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": "",
@@ -7113,17 +5669,6 @@
]
},
{
- "name": "html-encoding-sniffer",
- "url": "https://domenic.me/",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "html-entities",
"url": "Unknown",
"description": "",
@@ -7190,17 +5735,6 @@
]
},
{
- "name": "htmlparser2",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "http-errors",
"url": "http://jongleberry.com",
"description": "",
@@ -7245,17 +5779,6 @@
]
},
{
- "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": "",
@@ -7267,28 +5790,6 @@
]
},
{
- "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": "",
@@ -7355,17 +5856,6 @@
]
},
{
- "name": "ignore",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "ignore-walk",
"url": "http://blog.izs.me/",
"description": "",
@@ -7487,39 +5977,6 @@
]
},
{
- "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": "",
@@ -7531,17 +5988,6 @@
]
},
{
- "name": "invert-kv",
- "url": "http://sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "ip",
"url": "https://github.com/indutny/node-ip",
"description": "",
@@ -7674,17 +6120,6 @@
]
},
{
- "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": "",
@@ -7828,17 +6263,6 @@
]
},
{
- "name": "is-finite",
- "url": "sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "is-fullwidth-code-point",
"url": "sindresorhus.com",
"description": "",
@@ -7971,39 +6395,6 @@
]
},
{
- "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": "",
@@ -8147,17 +6538,6 @@
]
},
{
- "name": "is-utf8",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "is-windows",
"url": "https://github.com/jonschlinkert/is-windows",
"description": "",
@@ -8191,17 +6571,6 @@
]
},
{
- "name": "isarray",
- "url": "https://github.com/juliangruber/isarray",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "isexe",
"url": "https://github.com/isaacs/isexe#readme",
"description": "",
@@ -8246,72 +6615,6 @@
]
},
{
- "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": "",
@@ -8367,17 +6670,6 @@
]
},
{
- "name": "js-tokens",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "js-yaml",
"url": "https://github.com/nodeca/js-yaml",
"description": "",
@@ -8422,17 +6714,6 @@
]
},
{
- "name": "jsdom",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "jsesc",
"url": "http://mths.be/jsesc",
"description": "",
@@ -8455,17 +6736,6 @@
]
},
{
- "name": "jsesc",
- "url": "https://mths.be/jsesc",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "json-parse-better-errors",
"url": "Unknown",
"description": "",
@@ -8510,17 +6780,6 @@
]
},
{
- "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": "",
@@ -8532,17 +6791,6 @@
]
},
{
- "name": "json3",
- "url": "http://bestiejs.github.io/json3",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "json5",
"url": "http://json5.org/",
"description": "",
@@ -8598,17 +6846,6 @@
]
},
{
- "name": "jsonfile",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "jsonify",
"url": "http://crockford.com/",
"description": "",
@@ -8675,17 +6912,6 @@
]
},
{
- "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": "",
@@ -8719,61 +6945,6 @@
]
},
{
- "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": "",
@@ -8796,39 +6967,6 @@
]
},
{
- "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": "",
@@ -8873,17 +7011,6 @@
]
},
{
- "name": "locate-path",
- "url": "sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "lodash",
"url": "https://lodash.com/",
"description": "",
@@ -8906,61 +7033,6 @@
]
},
{
- "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": "",
@@ -8972,72 +7044,6 @@
]
},
{
- "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": "",
@@ -9060,17 +7066,6 @@
]
},
{
- "name": "lodash.keys",
- "url": "https://lodash.com/",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "lodash.memoize",
"url": "https://lodash.com/",
"description": "",
@@ -9093,17 +7088,6 @@
]
},
{
- "name": "lodash.sortby",
- "url": "https://lodash.com/",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "lodash.template",
"url": "https://lodash.com/",
"description": "",
@@ -9148,28 +7132,6 @@
]
},
{
- "name": "log-driver",
- "url": "https://github.com/cainus/logdriver",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "ISC"
- ]
- },
- {
- "name": "longest",
- "url": "https://github.com/jonschlinkert/longest",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "loose-envify",
"url": "https://github.com/zertosh/loose-envify",
"description": "",
@@ -9324,28 +7286,6 @@
]
},
{
- "name": "md5-hex",
- "url": "sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "md5-o-matic",
- "url": "https://github.com/trentmillar/md5-o-matic",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "md5.js",
"url": "https://github.com/crypto-browserify/md5.js",
"description": "",
@@ -9390,17 +7330,6 @@
]
},
{
- "name": "mem",
- "url": "sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "memory-fs",
"url": "https://github.com/webpack/memory-fs",
"description": "",
@@ -9500,17 +7429,6 @@
]
},
{
- "name": "mime",
- "url": "http://github.com/broofa",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "mime-db",
"url": "Unknown",
"description": "",
@@ -9534,17 +7452,6 @@
},
{
"name": "mime-types",
- "url": "http://jongleberry.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "mime-types",
"url": "Unknown",
"description": "",
"paths": [
@@ -9566,17 +7473,6 @@
]
},
{
- "name": "mimic-fn",
- "url": "sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "min-document",
"url": "https://github.com/Raynos/min-document",
"description": "",
@@ -9643,17 +7539,6 @@
]
},
{
- "name": "minimist",
- "url": "https://github.com/substack/minimist",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "minipass",
"url": "http://blog.izs.me/",
"description": "",
@@ -9709,28 +7594,6 @@
]
},
{
- "name": "mocha",
- "url": "https://mochajs.org/",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "mocha-webpack",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "moment",
"url": "http://momentjs.com/",
"description": "",
@@ -9786,17 +7649,6 @@
]
},
{
- "name": "mute-stream",
- "url": "http://blog.izs.me/",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "ISC"
- ]
- },
- {
"name": "nan",
"url": "Unknown",
"description": "",
@@ -9819,17 +7671,6 @@
]
},
{
- "name": "natural-compare",
- "url": "https://github.com/litejs/natural-compare-lite",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "needle",
"url": "Unknown",
"description": "",
@@ -9940,17 +7781,6 @@
]
},
{
- "name": "node-uuid",
- "url": "https://github.com/broofa/node-uuid",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "nopt",
"url": "http://blog.izs.me/",
"description": "",
@@ -9962,28 +7792,6 @@
]
},
{
- "name": "normalize-package-data",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "BSD-2-Clause"
- ]
- },
- {
- "name": "normalize-path",
- "url": "https://github.com/jonschlinkert/normalize-path",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "normalize-path",
"url": "https://github.com/jonschlinkert/normalize-path",
"description": "",
@@ -10160,39 +7968,6 @@
]
},
{
- "name": "nwmatcher",
- "url": "http://javascript.nwbox.com/NWMatcher/",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "nyc",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "ISC"
- ]
- },
- {
- "name": "oauth-sign",
- "url": "http://www.futurealoof.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "apache*"
- ]
- },
- {
"name": "oauth-sign",
"url": "http://www.futurealoof.com",
"description": "",
@@ -10226,17 +8001,6 @@
]
},
{
- "name": "object-hash",
- "url": "https://github.com/puleos/object-hash",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "object-keys",
"url": "http://ljharb.codes",
"description": "",
@@ -10336,17 +8100,6 @@
]
},
{
- "name": "onetime",
- "url": "sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "opener",
"url": "https://domenic.me/",
"description": "",
@@ -10358,17 +8111,6 @@
]
},
{
- "name": "optimist",
- "url": "http://substack.net",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "optimize-css-assets-webpack-plugin",
"url": "http://github.com/NMFR/optimize-css-assets-webpack-plugin",
"description": "",
@@ -10380,17 +8122,6 @@
]
},
{
- "name": "optionator",
- "url": "https://github.com/gkz/optionator",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "os-browserify",
"url": "Unknown",
"description": "",
@@ -10413,28 +8144,6 @@
]
},
{
- "name": "os-locale",
- "url": "sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "os-locale",
- "url": "sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "os-tmpdir",
"url": "sindresorhus.com",
"description": "",
@@ -10479,28 +8188,6 @@
]
},
{
- "name": "p-limit",
- "url": "sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "p-locate",
- "url": "sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "p-locate",
"url": "sindresorhus.com",
"description": "",
@@ -10523,17 +8210,6 @@
]
},
{
- "name": "p-try",
- "url": "sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "pako",
"url": "https://github.com/nodeca/pako",
"description": "",
@@ -10644,28 +8320,6 @@
]
},
{
- "name": "parse-json",
- "url": "sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "parse5",
- "url": "https://github.com/inikulin/parse5",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "parseurl",
"url": "Unknown",
"description": "",
@@ -10721,17 +8375,6 @@
]
},
{
- "name": "path-exists",
- "url": "sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "path-is-absolute",
"url": "sindresorhus.com",
"description": "",
@@ -10743,17 +8386,6 @@
]
},
{
- "name": "path-is-inside",
- "url": "https://domenic.me",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "(wtfpl or mit)"
- ]
- },
- {
"name": "path-key",
"url": "sindresorhus.com",
"description": "",
@@ -10798,39 +8430,6 @@
]
},
{
- "name": "path-type",
- "url": "sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "path-type",
- "url": "sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "pathval",
- "url": "https://github.com/chaijs/pathval",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "pbkdf2",
"url": "https://github.com/crypto-browserify/pbkdf2",
"description": "",
@@ -10897,28 +8496,6 @@
]
},
{
- "name": "pinkie",
- "url": "github.com/floatdrop",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "pinkie-promise",
- "url": "github.com/floatdrop",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "pixelmatch",
"url": "https://github.com/mapbox/pixelmatch#readme",
"description": "",
@@ -10941,39 +8518,6 @@
]
},
{
- "name": "pkg-dir",
- "url": "sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "pluralize",
- "url": "http://blakeembrey.me",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "pn",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "pngjs",
"url": "https://github.com/lukeapage/pngjs",
"description": "",
@@ -12107,17 +9651,6 @@
]
},
{
- "name": "prelude-ls",
- "url": "http://preludels.com/",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "prepend-http",
"url": "sindresorhus.com",
"description": "",
@@ -12239,17 +9772,6 @@
]
},
{
- "name": "progress",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "promise-inflight",
"url": "https://github.com/iarna/promise-inflight#readme",
"description": "",
@@ -12394,17 +9916,6 @@
},
{
"name": "qs",
- "url": "https://github.com/hapijs/qs",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "see license in license"
- ]
- },
- {
- "name": "qs",
"url": "https://github.com/ljharb/qs",
"description": "",
"paths": [
@@ -12569,61 +10080,6 @@
]
},
{
- "name": "read-pkg",
- "url": "sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "read-pkg",
- "url": "sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "read-pkg-up",
- "url": "sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "read-pkg-up",
- "url": "sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "readable-stream",
- "url": "http://blog.izs.me/",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "readable-stream",
"url": "Unknown",
"description": "",
@@ -12723,17 +10179,6 @@
]
},
{
- "name": "regenerator-runtime",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "regenerator-transform",
"url": "Unknown",
"description": "",
@@ -12866,28 +10311,6 @@
]
},
{
- "name": "repeating",
- "url": "sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "request",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "Apache-2.0"
- ]
- },
- {
"name": "request",
"url": "Unknown",
"description": "",
@@ -12899,39 +10322,6 @@
]
},
{
- "name": "request-promise-core",
- "url": "https://github.com/request/promise-core#readme",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "ISC"
- ]
- },
- {
- "name": "request-promise-native",
- "url": "https://github.com/request/request-promise-native#readme",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "ISC"
- ]
- },
- {
- "name": "require-directory",
- "url": "https://github.com/troygoode/node-require-directory/",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "require-from-string",
"url": "github.com/floatdrop",
"description": "",
@@ -12943,28 +10333,6 @@
]
},
{
- "name": "require-main-filename",
- "url": "https://github.com/yargs/require-main-filename#readme",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "ISC"
- ]
- },
- {
- "name": "require-uncached",
- "url": "sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "requires-port",
"url": "https://github.com/unshiftio/requires-port",
"description": "",
@@ -12987,39 +10355,6 @@
]
},
{
- "name": "resolve",
- "url": "http://substack.net",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "resolve-from",
- "url": "sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "resolve-from",
- "url": "sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "resolve-from",
"url": "sindresorhus.com",
"description": "",
@@ -13042,28 +10377,6 @@
]
},
{
- "name": "restore-cursor",
- "url": "sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "resumer",
- "url": "https://github.com/substack/resumer",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "ret",
"url": "https://github.com/fent",
"description": "",
@@ -13108,17 +10421,6 @@
]
},
{
- "name": "right-align",
- "url": "https://github.com/jonschlinkert/right-align",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "rimraf",
"url": "http://blog.izs.me/",
"description": "",
@@ -13152,17 +10454,6 @@
]
},
{
- "name": "run-async",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "run-queue",
"url": "https://npmjs.com/package/run-queue",
"description": "",
@@ -13174,39 +10465,6 @@
]
},
{
- "name": "rupture",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "rx-lite",
- "url": "https://github.com/Reactive-Extensions/RxJS",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "Apache-2.0"
- ]
- },
- {
- "name": "rx-lite-aggregates",
- "url": "https://github.com/Reactive-Extensions/RxJS",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "Apache-2.0"
- ]
- },
- {
"name": "safe-buffer",
"url": "https://github.com/feross/safe-buffer",
"description": "",
@@ -13247,17 +10505,6 @@
"."
],
"licenses": [
- "BSD-4-Clause"
- ]
- },
- {
- "name": "sax",
- "url": "http://blog.izs.me/",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
"ISC"
]
},
@@ -13306,17 +10553,6 @@
]
},
{
- "name": "semver",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "ISC"
- ]
- },
- {
"name": "send",
"url": "Unknown",
"description": "",
@@ -13504,28 +10740,6 @@
]
},
{
- "name": "slice-ansi",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "slide",
- "url": "http://blog.izs.me/",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "ISC"
- ]
- },
- {
"name": "slideout",
"url": "Unknown",
"description": "",
@@ -13581,17 +10795,6 @@
]
},
{
- "name": "sntp",
- "url": "http://hueniverse.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "BSD-3-Clause"
- ]
- },
- {
"name": "sort-keys",
"url": "sindresorhus.com",
"description": "",
@@ -13625,39 +10828,6 @@
]
},
{
- "name": "source-list-map",
- "url": "https://github.com/webpack/source-list-map",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "source-map",
- "url": "https://github.com/mozilla/source-map",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "BSD-3-Clause"
- ]
- },
- {
- "name": "source-map",
- "url": "https://github.com/mozilla/source-map",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "BSD-3-Clause"
- ]
- },
- {
"name": "source-map",
"url": "https://github.com/mozilla/source-map",
"description": "",
@@ -13724,72 +10894,6 @@
]
},
{
- "name": "spawn-wrap",
- "url": "https://github.com/isaacs/spawn-wrap#readme",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "ISC"
- ]
- },
- {
- "name": "spdx-correct",
- "url": "https://kemitchell.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "Apache-2.0"
- ]
- },
- {
- "name": "spdx-exceptions",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "CC-BY-3.0"
- ]
- },
- {
- "name": "spdx-expression-parse",
- "url": "http://kemitchell.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "spdx-license-ids",
- "url": "https://github.com/shinnn",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "CC0-1.0"
- ]
- },
- {
- "name": "split",
- "url": "http://github.com/dominictarr/split",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "mit*"
- ]
- },
- {
"name": "split-string",
"url": "https://github.com/jonschlinkert/split-string",
"description": "",
@@ -13900,17 +11004,6 @@
]
},
{
- "name": "stealthy-require",
- "url": "https://github.com/analog-nico/stealthy-require#readme",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "ISC"
- ]
- },
- {
"name": "stream-browserify",
"url": "https://github.com/browserify/stream-browserify",
"description": "",
@@ -13922,17 +11015,6 @@
]
},
{
- "name": "stream-combiner",
- "url": "https://github.com/dominictarr/stream-combiner",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "stream-each",
"url": "https://github.com/mafintosh/stream-each",
"description": "",
@@ -14044,17 +11126,6 @@
},
{
"name": "string_decoder",
- "url": "https://github.com/rvagg/string_decoder",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "string_decoder",
"url": "https://github.com/nodejs/string_decoder",
"description": "",
"paths": [
@@ -14087,17 +11158,6 @@
]
},
{
- "name": "stringstream",
- "url": "http://github.com/mhart",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "strip-ansi",
"url": "sindresorhus.com",
"description": "",
@@ -14131,28 +11191,6 @@
]
},
{
- "name": "strip-bom",
- "url": "sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "strip-bom",
- "url": "sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "strip-eof",
"url": "sindresorhus.com",
"description": "",
@@ -14164,17 +11202,6 @@
]
},
{
- "name": "strip-indent",
- "url": "sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "strip-json-comments",
"url": "sindresorhus.com",
"description": "",
@@ -14208,39 +11235,6 @@
]
},
{
- "name": "stylus",
- "url": "https://github.com/stylus/stylus",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "stylus-loader",
- "url": "http://dontkry.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "supports-color",
- "url": "sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "supports-color",
"url": "sindresorhus.com",
"description": "",
@@ -14318,28 +11312,6 @@
]
},
{
- "name": "symbol-tree",
- "url": "https://github.com/jsdom/js-symbol-tree#symbol-tree",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "table",
- "url": "http://gajus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "BSD-3-Clause"
- ]
- },
- {
"name": "tapable",
"url": "https://github.com/webpack/tapable",
"description": "",
@@ -14362,17 +11334,6 @@
]
},
{
- "name": "tape",
- "url": "https://github.com/substack/tape",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "tar",
"url": "http://blog.izs.me/",
"description": "",
@@ -14417,17 +11378,6 @@
]
},
{
- "name": "test-exclude",
- "url": "https://github.com/istanbuljs/istanbuljs#readme",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "ISC"
- ]
- },
- {
"name": "text-table",
"url": "https://github.com/substack/text-table",
"description": "",
@@ -14450,17 +11400,6 @@
]
},
{
- "name": "through",
- "url": "https://github.com/dominictarr/through",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "through2",
"url": "https://github.com/rvagg",
"description": "",
@@ -14516,17 +11455,6 @@
]
},
{
- "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": "",
@@ -14549,17 +11477,6 @@
]
},
{
- "name": "to-fast-properties",
- "url": "sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "to-object-path",
"url": "https://github.com/jonschlinkert/to-object-path",
"description": "",
@@ -14637,17 +11554,6 @@
]
},
{
- "name": "tr46",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "trim",
"url": "Unknown",
"description": "",
@@ -14714,17 +11620,6 @@
]
},
{
- "name": "tunnel-agent",
- "url": "http://www.futurealoof.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "Apache-2.0"
- ]
- },
- {
"name": "tweetnacl",
"url": "https://tweetnacl.js.org/",
"description": "",
@@ -14736,28 +11631,6 @@
]
},
{
- "name": "type-check",
- "url": "https://github.com/gkz/type-check",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "type-detect",
- "url": "http://alogicalparadox.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "type-fest",
"url": "sindresorhus.com",
"description": "",
@@ -14814,17 +11687,6 @@
},
{
"name": "uglify-js",
- "url": "http://lisperator.net/uglifyjs",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "BSD-2-Clause"
- ]
- },
- {
- "name": "uglify-js",
"url": "http://lisperator.net/",
"description": "",
"paths": [
@@ -14846,17 +11708,6 @@
]
},
{
- "name": "uglify-to-browserify",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "underscore",
"url": "http://underscorejs.org/",
"description": "",
@@ -15121,17 +11972,6 @@
]
},
{
- "name": "urlgrey",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "BSD-2-Clause"
- ]
- },
- {
"name": "use",
"url": "https://github.com/jonschlinkert/use",
"description": "",
@@ -15231,17 +12071,6 @@
]
},
{
- "name": "validate-npm-package-license",
- "url": "https://kemitchell.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "Apache-2.0"
- ]
- },
- {
"name": "vary",
"url": "Unknown",
"description": "",
@@ -15462,17 +12291,6 @@
]
},
{
- "name": "w3c-hr-time",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "watchpack",
"url": "https://github.com/webpack/watchpack",
"description": "",
@@ -15484,17 +12302,6 @@
]
},
{
- "name": "webidl-conversions",
- "url": "https://domenic.me/",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "BSD-2-Clause"
- ]
- },
- {
"name": "webpack",
"url": "https://github.com/webpack/webpack",
"description": "",
@@ -15539,17 +12346,6 @@
]
},
{
- "name": "webpack-info-plugin",
- "url": "https://github.com/zinserjan/webpack-info-plugin#readme",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "webpack-log",
"url": "https://github.com/webpack-contrib/webpack-log#readme",
"description": "",
@@ -15583,17 +12379,6 @@
]
},
{
- "name": "webpack-sources",
- "url": "https://github.com/webpack/webpack-sources#readme",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "webpackbar",
"url": "https://github.com/nuxt/webpackbar",
"description": "",
@@ -15605,39 +12390,6 @@
]
},
{
- "name": "whatwg-encoding",
- "url": "https://domenic.me/",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "whatwg-url",
- "url": "Unknown",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "when",
- "url": "http://cujojs.com/",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "whet.extend",
"url": "Unknown",
"description": "",
@@ -15660,39 +12412,6 @@
]
},
{
- "name": "which",
- "url": "http://blog.izs.me",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "ISC"
- ]
- },
- {
- "name": "which-module",
- "url": "https://github.com/nexdrew/which-module#readme",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "ISC"
- ]
- },
- {
- "name": "which-module",
- "url": "https://github.com/nexdrew/which-module#readme",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "ISC"
- ]
- },
- {
"name": "wide-align",
"url": "http://re-becca.org/",
"description": "",
@@ -15715,72 +12434,6 @@
]
},
{
- "name": "window",
- "url": "https://github.com/lukechilds/window#readme",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "window-size",
- "url": "https://github.com/jonschlinkert/window-size",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "window-size",
- "url": "https://github.com/jonschlinkert/window-size",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "wordwrap",
- "url": "http://substack.net",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "wordwrap",
- "url": "http://substack.net",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "wordwrap",
- "url": "http://substack.net",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "workbox-build",
"url": "https://github.com/GoogleChrome/workbox/tree/master/packages/workbox-build",
"description": "",
@@ -15825,17 +12478,6 @@
]
},
{
- "name": "wrap-ansi",
- "url": "sindresorhus.com",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "wrappy",
"url": "https://github.com/npm/wrappy",
"description": "",
@@ -15847,28 +12489,6 @@
]
},
{
- "name": "write",
- "url": "https://github.com/jonschlinkert/write",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
- "name": "write-file-atomic",
- "url": "https://github.com/iarna/write-file-atomic",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "ISC"
- ]
- },
- {
"name": "write-file-atomic",
"url": "https://github.com/iarna/write-file-atomic",
"description": "",
@@ -15913,17 +12533,6 @@
]
},
{
- "name": "ws",
- "url": "https://github.com/websockets/ws",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "MIT"
- ]
- },
- {
"name": "xhr",
"url": "https://github.com/naugtur/xhr",
"description": "",
@@ -15935,17 +12544,6 @@
]
},
{
- "name": "xml-name-validator",
- "url": "https://domenic.me/",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "Apache-2.0"
- ]
- },
- {
"name": "xml-parse-from-string",
"url": "https://github.com/Jam3/xml-parse-from-string",
"description": "",
@@ -16012,17 +12610,6 @@
]
},
{
- "name": "y18n",
- "url": "https://github.com/yargs/y18n",
- "description": "",
- "paths": [
- "."
- ],
- "licenses": [
- "ISC"
- ]
- },
- {
"name": "yallist",
"url": "http://blog.izs.me/",
"description": "",
@@ -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