From c9915861e3db35719bf33aeed7eb4bbf82298267 Mon Sep 17 00:00:00 2001 From: mo khan Date: Thu, 23 Apr 2020 12:53:19 -0600 Subject: Add tests for js npm projects * Add tests for js projects with npm-lock.json file * Add specs for project that does not have a package-lock.json * Fix typo in loading fixture file content not path * Remove dev dependencies for expected js test reports * Add spec for using different engine * Add latest nodejs LTS * Cleanup files after install and disable NPM update checks * Install a .curlrc to remove progress meter * Export LOG_LEVEL=debug in dev mode * Update fixture files * Update to latest patch level of nodejs, php, python, ruby * Add CHANGELOG entry * Move prepare_javascript from bash to ruby --- CHANGELOG.md | 8 + Gemfile.lock | 2 +- config/.bashrc | 1 + config/.curlrc | 2 + config/.npmrc | 13 + config/.tool-versions | 8 +- config/install.sh | 9 +- lib/license/finder/ext.rb | 2 + lib/license/finder/ext/npm.rb | 36 + lib/license/finder/ext/yarn.rb | 9 + lib/license/management/version.rb | 2 +- run.sh | 9 +- spec/fixtures/expected/js/npm/v1.0.json | 4944 +------------- spec/fixtures/expected/js/npm/v1.1.json | 7050 +------------------- spec/fixtures/expected/js/npm/v2.0.json | 3927 +---------- .../single-declared-dependency/package-lock.json | 943 +++ .../js/single-declared-dependency/package.json | 8 + spec/integration/js/npm_spec.rb | 462 ++ 18 files changed, 1550 insertions(+), 15885 deletions(-) create mode 100644 config/.curlrc create mode 100644 config/.npmrc create mode 100644 lib/license/finder/ext/npm.rb create mode 100644 lib/license/finder/ext/yarn.rb create mode 100644 spec/fixtures/js/single-declared-dependency/package-lock.json create mode 100644 spec/fixtures/js/single-declared-dependency/package.json diff --git a/CHANGELOG.md b/CHANGELOG.md index e2c4a75..556bcd6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # GitLab License management changelog +## v3.7.6 + +- Exclude `devDependencies` from scan report. (!141) +- Include latest NodeJS 12.16.3, 10.20.1 LTS. (!141) +- Update version of PHP to 7.4.5. (!141) +- Update Python to 2.7.18. (!141) +- Update Ruby to 2.6.6. (!141) + ## v3.7.5 - Install multiple x509 certificates from `ADDITIONAL_CA_CERT_BUNDLE` into system trust store. (!144) diff --git a/Gemfile.lock b/Gemfile.lock index 9e3f73f..98d898c 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - license-management (3.7.5) + license-management (3.7.6) license_finder (~> 6.0.0) spandx (~> 0.1) diff --git a/config/.bashrc b/config/.bashrc index 9c463dd..9c4dd9a 100644 --- a/config/.bashrc +++ b/config/.bashrc @@ -40,6 +40,7 @@ function enable_dev_mode() { unset HISTFILESIZE unset HISTSIZE export EDITOR=vim + export LOG_LEVEL=debug set -o vi apt-get update -y apt-get install -y --no-install-recommends vim less shellcheck diff --git a/config/.curlrc b/config/.curlrc new file mode 100644 index 0000000..df02a54 --- /dev/null +++ b/config/.curlrc @@ -0,0 +1,2 @@ +# Don't show progress meter +--silent diff --git a/config/.npmrc b/config/.npmrc new file mode 100644 index 0000000..426026b --- /dev/null +++ b/config/.npmrc @@ -0,0 +1,13 @@ +audit=false +dev=false +fetch-retries=2 +fetch-retry-max-timeout=10000 +fetch-retry-min-timeout=5000 +ignore-scripts=true +log-level=silly +only=production +optional=true +package-lock=true +prefer-offline=true +progress=false +send-metrics=false diff --git a/config/.tool-versions b/config/.tool-versions index 9803064..adfbc82 100644 --- a/config/.tool-versions +++ b/config/.tool-versions @@ -3,9 +3,9 @@ golang system gradle 6.3 java adopt-openjdk-8u242-b08 adopt-openjdk-11.0.7+10 maven 3.6.3 -nodejs 10.19.0 -php 7.4.4 -python 3.8.2 2.7.17 -ruby 2.6.5 +nodejs 12.16.3 10.20.1 +php 7.4.5 +python 3.8.2 2.7.18 +ruby 2.6.6 rust system sbt 1.3.8 diff --git a/config/install.sh b/config/install.sh index 2fa313c..13167e0 100644 --- a/config/install.sh +++ b/config/install.sh @@ -1,5 +1,5 @@ #!/bin/bash -set -euxo pipefail +set -euo pipefail export DEBIAN_FRONTEND=noninteractive @@ -109,14 +109,19 @@ chmod 777 /tmp chmod +t /tmp rm -fr "$ASDF_DATA_DIR/docs" \ - "$ASDF_DATA_DIR"/installs/**/**/share \ "$ASDF_DATA_DIR"/installs/golang/**/go/test \ "$ASDF_DATA_DIR"/installs/java/**/demo \ "$ASDF_DATA_DIR"/installs/java/**/man \ "$ASDF_DATA_DIR"/installs/java/**/sample \ "$ASDF_DATA_DIR"/installs/python/**/lib/**/test \ "$ASDF_DATA_DIR"/installs/ruby/**/lib/ruby/gems/**/cache \ + "$ASDF_DATA_DIR"/installs/**/**/share \ "$ASDF_DATA_DIR"/test \ + "$HOME"/.config/configstore/update-notifier-npm.json \ + "$HOME"/.config/pip/selfcheck.json \ + "$HOME"/.gem \ + "$HOME"/.npm \ + "$HOME"/.wget-hsts \ /etc/apache2/* \ /etc/bash_completion.d/* \ /etc/calendar/* \ diff --git a/lib/license/finder/ext.rb b/lib/license/finder/ext.rb index 70620be..3d8a463 100644 --- a/lib/license/finder/ext.rb +++ b/lib/license/finder/ext.rb @@ -4,11 +4,13 @@ require 'license/finder/ext/go_modules' require 'license/finder/ext/gradle' require 'license/finder/ext/license' require 'license/finder/ext/maven' +require 'license/finder/ext/npm' require 'license/finder/ext/nuget' require 'license/finder/ext/package_manager' require 'license/finder/ext/pip' require 'license/finder/ext/pipenv' require 'license/finder/ext/shared_helpers' +require 'license/finder/ext/yarn' # Apply patch to the JsonReport found in the `license_finder` gem. LicenseFinder::JsonReport.prepend(License::Management::Report) diff --git a/lib/license/finder/ext/npm.rb b/lib/license/finder/ext/npm.rb new file mode 100644 index 0000000..75c0855 --- /dev/null +++ b/lib/license/finder/ext/npm.rb @@ -0,0 +1,36 @@ +# frozen_string_literal: true + +module LicenseFinder + class NPM + def current_packages + NpmPackage.packages_from_json(npm_json, detected_package_path) + end + + def prepare_command + lockfile? ? 'npm ci' : 'npm install --no-save' + end + + def possible_package_paths + [project_path.join('package.json')] + end + + def prepare + Dir.chdir(project_path) do + shell.execute("#{prepare_command} --production") + end + end + + private + + def lockfile? + File.exist?(project_path.join('package-lock.json')) + end + + def npm_json + stdout, _stderr, status = Dir.chdir(project_path) do + shell.execute("npm list --json --long --production") + end + status.success? ? JSON.parse(stdout) : {} + end + end +end diff --git a/lib/license/finder/ext/yarn.rb b/lib/license/finder/ext/yarn.rb new file mode 100644 index 0000000..cc2c029 --- /dev/null +++ b/lib/license/finder/ext/yarn.rb @@ -0,0 +1,9 @@ +# frozen_string_literal: true + +module LicenseFinder + class Yarn + def prepare_command + 'yarn install --ignore-engines --ignore-scripts' + end + end +end diff --git a/lib/license/management/version.rb b/lib/license/management/version.rb index 64d34f7..cfb570e 100644 --- a/lib/license/management/version.rb +++ b/lib/license/management/version.rb @@ -2,6 +2,6 @@ module License module Management - VERSION = '3.7.5' + VERSION = '3.7.6' end end diff --git a/run.sh b/run.sh index 19dc495..9fd7746 100755 --- a/run.sh +++ b/run.sh @@ -17,6 +17,7 @@ export LANG=C.UTF-8 export LICENSE_FINDER_CLI_OPTS=${LICENSE_FINDER_CLI_OPTS:=--no-debug} export LM_REPORT_FILE=${LM_REPORT_FILE:-'gl-license-management-report.json'} export MAVEN_CLI_OPTS="${MAVEN_CLI_OPTS:--DskipTests}" +export NO_UPDATE_NOTIFIER=true export PIPENV_VENV_IN_PROJECT=1 export PREPARE="${PREPARE:---prepare-no-fail}" export RECURSIVE='--no-recursive' @@ -56,13 +57,6 @@ function scan_project() { license_management report $@ } -function prepare_javascript() { - if [ -f package.json ]; then - [[ -f package-lock.json ]] && [[ ! -f yarn.lock ]] && npm ci - [[ ! -d node_modules ]] && yarn install --ignore-engines --ignore-scripts - fi -} - function prepare_dotnet() { [[ $(ls ./*.sln 2> /dev/null) ]] && RECURSIVE="--recursive" } @@ -77,7 +71,6 @@ function prepare_tools() { function prepare_project() { if [[ -z ${SETUP_CMD:-} ]]; then prepare_tools || true - prepare_javascript || true prepare_dotnet || true else echo "Running '${SETUP_CMD}' to install project dependencies…" diff --git a/spec/fixtures/expected/js/npm/v1.0.json b/spec/fixtures/expected/js/npm/v1.0.json index 93ea313..4978ad4 100644 --- a/spec/fixtures/expected/js/npm/v1.0.json +++ b/spec/fixtures/expected/js/npm/v1.0.json @@ -1,64 +1,16 @@ { "licenses": [ - { - "count": 271, - "name": "MIT" - }, - { - "count": 38, - "name": "ISC" - }, - { - "count": 14, - "name": "New BSD" - }, - { - "count": 9, - "name": "Apache 2.0" - }, - { - "count": 9, - "name": "Simplified BSD" - }, { "count": 2, - "name": "MIT/X11" - }, - { - "count": 1, - "name": "(MIT OR Apache-2.0)" - }, - { - "count": 1, - "name": "BSD" - }, - { - "count": 1, - "name": "BSD, AFLv2.1" - }, - { - "count": 1, - "name": "BSD-3-Clause OR MIT" - }, - { - "count": 1, - "name": "CC-BY-3.0" - }, - { - "count": 1, - "name": "CC0-1.0" - }, - { - "count": 1, - "name": "New BSD, MIT, ISC, Apache 2.0" + "name": "MIT" }, { "count": 1, - "name": "Unlicense" + "name": "New BSD" }, { "count": 1, - "name": "WTFPL" + "name": "New BSD, MIT" } ], "dependencies": [ @@ -68,274 +20,9 @@ "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "abab", - "url": "https://github.com/jsdom/abab#readme", - "description": "WHATWG spec-compliant implementations of window.atob and window.btoa.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "acorn", - "url": "https://github.com/acornjs/acorn", - "description": "ECMAScript parser", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "acorn", - "url": "https://github.com/acornjs/acorn", - "description": "ECMAScript parser", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "acorn-globals", - "url": "https://github.com/ForbesLindesay/acorn-globals#readme", - "description": "Detect global variables in JavaScript using acorn", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "acorn-walk", - "url": "https://github.com/acornjs/acorn", - "description": "ECMAScript (ESTree) AST walker", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "ajv", - "url": "https://github.com/epoberezkin/ajv", - "description": "Another JSON Schema Validator", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "align-text", - "url": "https://github.com/jonschlinkert/align-text", - "description": "Align the text in a string.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "BSD-3-Clause OR MIT" - }, - "dependency": { - "name": "amdefine", - "url": "http://github.com/jrburke/amdefine", - "description": "Provide AMD's define() API for declaring modules in the AMD format", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "ansi-regex", - "url": "https://github.com/chalk/ansi-regex#readme", - "description": "Regular expression for matching ANSI escape codes", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "ansi-regex", - "url": "https://github.com/chalk/ansi-regex#readme", - "description": "Regular expression for matching ANSI escape codes", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "ansi-styles", - "url": "https://github.com/chalk/ansi-styles#readme", - "description": "ANSI escape codes for styling strings in the terminal", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "append-transform", - "url": "https://github.com/jamestalmage/append-transform#readme", - "description": "Install a transform to `require.extensions` that always runs last, even if additional extensions are added later.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "archy", - "url": "https://github.com/substack/node-archy#readme", - "description": "render nested hierarchies `npm ls` style with unicode pipes", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "arr-diff", - "url": "https://github.com/jonschlinkert/arr-diff", - "description": "Returns an array with only the unique values from the first array, by excluding all values from additional arrays using strict equality for comparisons.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "arr-flatten", - "url": "https://github.com/jonschlinkert/arr-flatten", - "description": "Recursively flatten an array or arrays.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "arr-union", - "url": "https://github.com/jonschlinkert/arr-union", - "description": "Combines a list of arrays, returning a single array with unique values, using strict equality for comparisons.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "array-equal", - "url": "https://github.com/component/array-equal#readme", - "description": "check if two arrays are equal", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "array-unique", - "url": "https://github.com/jonschlinkert/array-unique", - "description": "Remove duplicate values from an array. Fastest ES5 implementation.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "arrify", - "url": "https://github.com/sindresorhus/arrify#readme", - "description": "Convert a value to an array", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "asn1", - "url": "https://github.com/joyent/node-asn1#readme", - "description": "Contains parsers and serializers for ASN.1 (currently BER only)", + "name": "highlight.js", + "url": "https://highlightjs.org/", + "description": "Syntax highlighting with language autodetection.", "pathes": [ "." ] @@ -343,13 +30,12 @@ }, { "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD, MIT", + "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "assert-plus", - "url": "https://github.com/mcavage/node-assert-plus#readme", - "description": "Extra assertions on top of node's assert module", + "name": "js-npm", + "description": "Test project for js-npm", "pathes": [ "." ] @@ -361,9 +47,9 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "assign-symbols", - "url": "https://github.com/jonschlinkert/assign-symbols", - "description": "Assign the enumerable es6 Symbol properties from an object (or objects) to the first object passed on the arguments. Can be used as a supplement to other extend, assign or merge methods as a polyfill for the Symbols part of the es6 Object.assign method.", + "name": "moment", + "url": "http://momentjs.com", + "description": "Parse, validate, manipulate, and display dates", "pathes": [ "." ] @@ -375,4609 +61,13 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "async", - "url": "https://github.com/caolan/async#readme", - "description": "Higher-order functions and common patterns for asynchronous code", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "async-limiter", - "url": "https://github.com/strml/async-limiter#readme", - "description": "asynchronous function queue with adjustable concurrency", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "asynckit", - "url": "https://github.com/alexindigo/asynckit#readme", - "description": "Minimal async jobs utility library, with streams support", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "(MIT OR Apache-2.0)" - }, - "dependency": { - "name": "atob", - "url": "https://git.coolaj86.com/coolaj86/atob.js.git", - "description": "atob for Node.JS and Linux / Mac / Windows CLI (it's a one-liner)", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" - }, - "dependency": { - "name": "aws-sign2", - "url": "https://github.com/mikeal/aws-sign#readme", - "description": "AWS signing. Originally pulled from LearnBoost/knox, maintained as vendor in request, now a standalone module.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "aws4", - "url": "https://github.com/mhart/aws4#readme", - "description": "Signs and prepares requests using AWS Signature Version 4", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "babel-code-frame", - "url": "https://babeljs.io/", - "description": "Generate errors that contain a code frame that point to source locations.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "babel-generator", - "url": "https://babeljs.io/", - "description": "Turns an AST into code.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "babel-messages", - "url": "https://babeljs.io/", - "description": "Collection of debug messages used by Babel.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "babel-runtime", - "description": "babel selfContained runtime", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "babel-template", - "url": "https://babeljs.io/", - "description": "Generate an AST from a string template.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "babel-traverse", - "url": "https://babeljs.io/", - "description": "The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "babel-types", - "url": "https://babeljs.io/", - "description": "Babel Types is a Lodash-esque utility library for AST nodes", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "babylon", - "url": "https://babeljs.io/", - "description": "A JavaScript parser", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "balanced-match", - "url": "https://github.com/juliangruber/balanced-match", - "description": "Match balanced character pairs, like \"{\" and \"}\"", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "base", - "url": "https://github.com/node-base/base", - "description": "base is the foundation for creating modular, unit testable and highly pluggable node.js applications, starting with a handful of common methods, like `set`, `get`, `del` and `use`.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" - }, - "dependency": { - "name": "bcrypt-pbkdf", - "url": "https://github.com/joyent/node-bcrypt-pbkdf#readme", - "description": "Port of the OpenBSD bcrypt_pbkdf function to pure JS", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "brace-expansion", - "url": "https://github.com/juliangruber/brace-expansion", - "description": "Brace expansion as known from sh/bash", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "braces", - "url": "https://github.com/micromatch/braces", - "description": "Bash-like brace expansion, implemented in JavaScript. Safer than other brace expansion libs, with complete support for the Bash 4.3 braces specification, without sacrificing speed.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" - }, - "dependency": { - "name": "browser-process-hrtime", - "url": "https://github.com/kumavis/browser-process-hrtime#readme", - "description": "Shim for process.hrtime in the browser", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "builtin-modules", - "url": "https://github.com/sindresorhus/builtin-modules#readme", - "description": "List of the Node.js builtin modules", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "cache-base", - "url": "https://github.com/jonschlinkert/cache-base", - "description": "Basic object cache with `get`, `set`, `del`, and `has` methods for node.js/javascript projects.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "caching-transform", - "url": "https://github.com/jamestalmage/caching-transform#readme", - "description": "Wraps a transform and provides caching", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "camelcase", - "url": "https://github.com/sindresorhus/camelcase#readme", - "description": "Convert a dash/dot/underscore/space separated string to camelCase: foo-bar → fooBar", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "camelcase", - "url": "https://github.com/sindresorhus/camelcase#readme", - "description": "Convert a dash/dot/underscore/space separated string to camelCase: foo-bar → fooBar", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" - }, - "dependency": { - "name": "caseless", - "url": "https://github.com/mikeal/caseless#readme", - "description": "Caseless object set/get/has, very useful when working with HTTP headers.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "center-align", - "url": "https://github.com/jonschlinkert/center-align", - "description": "Center-align the text in a string.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "chalk", - "url": "https://github.com/chalk/chalk#readme", - "description": "Terminal string styling done right. Much color.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "class-utils", - "url": "https://github.com/jonschlinkert/class-utils", - "description": "Utils for working with JavaScript classes and prototype methods.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "cliui", - "url": "https://github.com/bcoe/cliui#readme", - "description": "easily create complex multi-column command-line-interfaces", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "cliui", - "url": "https://github.com/yargs/cliui#readme", - "description": "easily create complex multi-column command-line-interfaces", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "code-point-at", - "url": "https://github.com/sindresorhus/code-point-at#readme", - "description": "ES2015 `String#codePointAt()` ponyfill", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "collection-visit", - "url": "https://github.com/jonschlinkert/collection-visit", - "description": "Visit a method over the items in an object, or map visit over the objects in an array.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "combined-stream", - "url": "https://github.com/felixge/node-combined-stream", - "description": "A stream that emits multiple other streams one after another.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "commondir", - "url": "https://github.com/substack/node-commondir#readme", - "description": "compute the closest common parent for file paths", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "component-emitter", - "url": "https://github.com/component/emitter#readme", - "description": "Event emitter", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "concat-map", - "url": "https://github.com/substack/node-concat-map#readme", - "description": "concatenative mapdashery", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "convert-source-map", - "url": "https://github.com/thlorenz/convert-source-map", - "description": "Converts a source-map from/to different formats and allows adding/changing properties.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "copy-descriptor", - "url": "https://github.com/jonschlinkert/copy-descriptor", - "description": "Copy a descriptor from object A to object B", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "core-js", - "url": "https://github.com/zloirock/core-js#readme", - "description": "Standard library", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "core-util-is", - "url": "https://github.com/isaacs/core-util-is#readme", - "description": "The `util.is*` functions introduced in Node v0.12.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "cross-spawn", - "url": "https://github.com/IndigoUnited/node-cross-spawn#readme", - "description": "Cross platform child_process#spawn and child_process#spawnSync", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "cross-spawn", - "url": "https://github.com/IndigoUnited/node-cross-spawn#readme", - "description": "Cross platform child_process#spawn and child_process#spawnSync", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "cssom", - "url": "https://github.com/NV/CSSOM#readme", - "description": "CSS Object Model implementation and CSS parser", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "cssstyle", - "url": "https://github.com/jsakas/CSSStyleDeclaration", - "description": "CSSStyleDeclaration Object Model implementation", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "dashdash", - "url": "https://github.com/trentm/node-dashdash#readme", - "description": "A light, featureful and explicit option parsing library.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "data-urls", - "url": "https://github.com/jsdom/data-urls#readme", - "description": "Parses data: URLs", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "debug", - "url": "https://github.com/visionmedia/debug#readme", - "description": "small debugging utility", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "debug", - "url": "https://github.com/visionmedia/debug#readme", - "description": "small debugging utility", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "debug-log", - "url": "https://github.com/sindresorhus/debug-log#readme", - "description": "Node.js 0.12 util.debuglog() ponyfill", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "decamelize", - "url": "https://github.com/sindresorhus/decamelize#readme", - "description": "Convert a camelized string into a lowercased one with a custom separator: unicornRainbow → unicorn_rainbow", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "decode-uri-component", - "url": "https://github.com/SamVerschueren/decode-uri-component#readme", - "description": "A better decodeURIComponent", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "deep-is", - "url": "https://github.com/thlorenz/deep-is#readme", - "description": "node's assert.deepEqual algorithm except for NaN being equal to NaN", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "default-require-extensions", - "url": "https://github.com/jamestalmage/default-require-extensions#readme", - "description": "Node's default require extensions as a separate module", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "define-property", - "url": "https://github.com/jonschlinkert/define-property", - "description": "Define a non-enumerable property on an object.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "define-property", - "url": "https://github.com/jonschlinkert/define-property", - "description": "Define a non-enumerable property on an object.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "define-property", - "url": "https://github.com/jonschlinkert/define-property", - "description": "Define a non-enumerable property on an object. Uses Reflect.defineProperty when available, otherwise Object.defineProperty.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "delayed-stream", - "url": "https://github.com/felixge/node-delayed-stream", - "description": "Buffers events from a stream until you are ready to handle them.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "detect-indent", - "url": "https://github.com/sindresorhus/detect-indent#readme", - "description": "Detect the indentation of code", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "domexception", - "url": "https://github.com/jsdom/domexception#readme", - "description": "An implementation of the DOMException class from browsers", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "ecc-jsbn", - "url": "https://github.com/quartzjer/ecc-jsbn", - "description": "ECC JS code based on JSBN", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "error-ex", - "url": "https://github.com/qix-/node-error-ex#readme", - "description": "Easy error subclassing and stack customization", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "escape-string-regexp", - "url": "https://github.com/sindresorhus/escape-string-regexp#readme", - "description": "Escape RegExp special characters", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" - }, - "dependency": { - "name": "escodegen", - "url": "http://github.com/estools/escodegen", - "description": "ECMAScript code generator", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" - }, - "dependency": { - "name": "esprima", - "url": "http://esprima.org", - "description": "ECMAScript parsing infrastructure for multipurpose analysis", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" - }, - "dependency": { - "name": "estraverse", - "url": "https://github.com/estools/estraverse", - "description": "ECMAScript JS AST traversal functions", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "BSD", - "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" - }, - "dependency": { - "name": "esutils", - "url": "https://github.com/estools/esutils", - "description": "utility box for ECMAScript language tools", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" - }, - "dependency": { - "name": "esutils", - "url": "https://github.com/estools/esutils", - "description": "utility box for ECMAScript language tools", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "execa", - "url": "https://github.com/sindresorhus/execa#readme", - "description": "A better `child_process`", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "expand-brackets", - "url": "https://github.com/jonschlinkert/expand-brackets", - "description": "Expand POSIX bracket expressions (character classes) in glob patterns.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "extend", - "url": "https://github.com/justmoon/node-extend#readme", - "description": "Port of jQuery.extend for node.js and the browser", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "extend-shallow", - "url": "https://github.com/jonschlinkert/extend-shallow", - "description": "Extend an object with the properties of additional objects. node.js/javascript util.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "extend-shallow", - "url": "https://github.com/jonschlinkert/extend-shallow", - "description": "Extend an object with the properties of additional objects. node.js/javascript util.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "extglob", - "url": "https://github.com/micromatch/extglob", - "description": "Extended glob support for JavaScript. Adds (almost) the expressive power of regular expressions to glob patterns.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "extsprintf", - "url": "https://github.com/davepacheco/node-extsprintf#readme", - "description": "extended POSIX-style sprintf", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "fast-deep-equal", - "url": "https://github.com/epoberezkin/fast-deep-equal#readme", - "description": "Fast deep equal", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "fast-json-stable-stringify", - "url": "https://github.com/epoberezkin/fast-json-stable-stringify", - "description": "deterministic `JSON.stringify()` - a faster version of substack's json-stable-strigify without jsonify", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "fast-levenshtein", - "url": "https://github.com/hiddentao/fast-levenshtein#readme", - "description": "Efficient implementation of Levenshtein algorithm with locale-specific collator support.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "fill-range", - "url": "https://github.com/jonschlinkert/fill-range", - "description": "Fill in a range of numbers or letters, optionally passing an increment or `step` to use, or create a regex-compatible range with `options.toRegex`", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "find-cache-dir", - "url": "https://github.com/jamestalmage/find-cache-dir#readme", - "description": "My well-made module", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "find-up", - "url": "https://github.com/sindresorhus/find-up#readme", - "description": "Find a file by walking up parent directories", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "find-up", - "url": "https://github.com/sindresorhus/find-up#readme", - "description": "Find a file by walking up parent directories", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "for-in", - "url": "https://github.com/jonschlinkert/for-in", - "description": "Iterate over the own and inherited enumerable properties of an object, and return an object with properties that evaluate to true from the callback. Exit early by returning `false`. JavaScript/Node.js", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "foreground-child", - "url": "https://github.com/tapjs/foreground-child#readme", - "description": "Run a child as if it's the foreground process. Give it stdio. Exit when it exits.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" - }, - "dependency": { - "name": "forever-agent", - "url": "https://github.com/mikeal/forever-agent#readme", - "description": "HTTP Agent that keeps socket connections alive between keep-alive requests. Formerly part of mikeal/request, now a standalone module.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "form-data", - "url": "https://github.com/form-data/form-data#readme", - "description": "A library to create readable \"multipart/form-data\" streams. Can be used to submit forms and file uploads to other web applications.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "fragment-cache", - "url": "https://github.com/jonschlinkert/fragment-cache", - "description": "A cache for managing namespaced sub-caches", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "fs.realpath", - "url": "https://github.com/isaacs/fs.realpath#readme", - "description": "Use node's fs.realpath, but fall back to the JS implementation if the native one fails", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "get-caller-file", - "url": "https://github.com/stefanpenner/get-caller-file#readme", - "description": "[![Build Status](https://travis-ci.org/ember-cli/ember-cli.svg?branch=master)](https://travis-ci.org/ember-cli/ember-cli) [![Build status](https://ci.appveyor.com/api/projects/status/ol2q94g1932cy14a/branch/master?svg=true)](https://ci.appveyor.com/project/embercli/get-caller-file/branch/master)", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "get-stream", - "url": "https://github.com/sindresorhus/get-stream#readme", - "description": "Get a stream as a string, buffer, or array", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "get-value", - "url": "https://github.com/jonschlinkert/get-value", - "description": "Use property paths (`a.b.c`) to get a nested value from an object.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "getpass", - "url": "https://github.com/arekinath/node-getpass#readme", - "description": "getpass for node.js", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "glob", - "url": "https://github.com/isaacs/node-glob#readme", - "description": "a little globber", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "globals", - "url": "https://github.com/sindresorhus/globals#readme", - "description": "Global identifiers from different JavaScript environments", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "graceful-fs", - "url": "https://github.com/isaacs/node-graceful-fs#readme", - "description": "A drop-in replacement for fs, making various improvements.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "handlebars", - "url": "http://www.handlebarsjs.com/", - "description": "Handlebars provides the power necessary to let you build semantic templates effectively with no frustration", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "har-schema", - "url": "https://github.com/ahmadnassri/har-schema", - "description": "JSON Schema for HTTP Archive (HAR)", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "har-validator", - "url": "https://github.com/ahmadnassri/node-har-validator", - "description": "Extremely fast HTTP Archive (HAR) validator using JSON Schema", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "has-ansi", - "url": "https://github.com/sindresorhus/has-ansi#readme", - "description": "Check if a string has ANSI escape codes", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "has-flag", - "url": "https://github.com/sindresorhus/has-flag#readme", - "description": "Check if argv has a specific flag", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "has-value", - "url": "https://github.com/jonschlinkert/has-value", - "description": "Returns true if a value exists, false if empty. Works with deeply nested values using object paths.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "has-value", - "url": "https://github.com/jonschlinkert/has-value", - "description": "Returns true if a value exists, false if empty. Works with deeply nested values using object paths.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "has-values", - "url": "https://github.com/jonschlinkert/has-values", - "description": "Returns true if any values exist, false if empty. Works for booleans, functions, numbers, strings, nulls, objects and arrays. ", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "has-values", - "url": "https://github.com/jonschlinkert/has-values", - "description": "Returns true if any values exist, false if empty. Works for booleans, functions, numbers, strings, nulls, objects and arrays. ", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" - }, - "dependency": { - "name": "highlight.js", - "url": "https://highlightjs.org/", - "description": "Syntax highlighting with language autodetection.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "hosted-git-info", - "url": "https://github.com/npm/hosted-git-info", - "description": "Provides metadata and conversions from repository urls for Github, Bitbucket and Gitlab", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "html-encoding-sniffer", - "url": "https://github.com/jsdom/html-encoding-sniffer#readme", - "description": "Sniff the encoding from a HTML byte stream", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "http-signature", - "url": "https://github.com/joyent/node-http-signature/", - "description": "Reference implementation of Joyent's HTTP Signature scheme.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "iconv-lite", - "url": "https://github.com/ashtuchkin/iconv-lite", - "description": "Convert character encodings in pure javascript.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "imurmurhash", - "url": "https://github.com/jensyt/imurmurhash-js", - "description": "An incremental implementation of MurmurHash3", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "inflight", - "url": "https://github.com/isaacs/inflight", - "description": "Add callbacks to requests in flight to avoid async duplication", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "inherits", - "url": "https://github.com/isaacs/inherits#readme", - "description": "Browser-friendly inheritance fully compatible with standard node.js inherits()", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "invariant", - "url": "https://github.com/zertosh/invariant#readme", - "description": "invariant", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "invert-kv", - "url": "https://github.com/sindresorhus/invert-kv#readme", - "description": "Invert the key/value of an object. Example: {foo: 'bar'} → {bar: 'foo'}", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "is-accessor-descriptor", - "url": "https://github.com/jonschlinkert/is-accessor-descriptor", - "description": "Returns true if a value has the characteristics of a valid JavaScript accessor descriptor.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "is-accessor-descriptor", - "url": "https://github.com/jonschlinkert/is-accessor-descriptor", - "description": "Returns true if a value has the characteristics of a valid JavaScript accessor descriptor.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "is-arrayish", - "url": "https://github.com/qix-/node-is-arrayish#readme", - "description": "Determines if an object can be used as an array", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "is-buffer", - "url": "https://github.com/feross/is-buffer#readme", - "description": "Determine if an object is a Buffer", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "is-builtin-module", - "url": "https://github.com/sindresorhus/is-builtin-module#readme", - "description": "Check if a string matches the name of a Node.js builtin module", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "is-data-descriptor", - "url": "https://github.com/jonschlinkert/is-data-descriptor", - "description": "Returns true if a value has the characteristics of a valid JavaScript data descriptor.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "is-data-descriptor", - "url": "https://github.com/jonschlinkert/is-data-descriptor", - "description": "Returns true if a value has the characteristics of a valid JavaScript data descriptor.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "is-descriptor", - "url": "https://github.com/jonschlinkert/is-descriptor", - "description": "Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for data descriptors and accessor descriptors.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "is-descriptor", - "url": "https://github.com/jonschlinkert/is-descriptor", - "description": "Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for data descriptors and accessor descriptors.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "is-extendable", - "url": "https://github.com/jonschlinkert/is-extendable", - "description": "Returns true if a value is any of the object types: array, regexp, plain object, function or date. This is useful for determining if a value can be extended, e.g. \"can the value have keys?\"", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "is-extendable", - "url": "https://github.com/jonschlinkert/is-extendable", - "description": "Returns true if a value is a plain object, array or function.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "is-finite", - "url": "https://github.com/sindresorhus/is-finite#readme", - "description": "ES2015 Number.isFinite() ponyfill", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "is-fullwidth-code-point", - "url": "https://github.com/sindresorhus/is-fullwidth-code-point#readme", - "description": "Check if the character represented by a given Unicode code point is fullwidth", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "is-fullwidth-code-point", - "url": "https://github.com/sindresorhus/is-fullwidth-code-point#readme", - "description": "Check if the character represented by a given Unicode code point is fullwidth", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "is-number", - "url": "https://github.com/jonschlinkert/is-number", - "description": "Returns true if the value is a number. comprehensive tests.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "is-number", - "url": "https://github.com/jonschlinkert/is-number", - "description": "Returns true if the value is a number. comprehensive tests.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "is-odd", - "url": "https://github.com/jonschlinkert/is-odd", - "description": "Returns true if the given number is odd.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "is-plain-object", - "url": "https://github.com/jonschlinkert/is-plain-object", - "description": "Returns true if an object was created by the `Object` constructor.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "is-stream", - "url": "https://github.com/sindresorhus/is-stream#readme", - "description": "Check if something is a Node.js stream", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "is-typedarray", - "url": "https://github.com/hughsk/is-typedarray", - "description": "Detect whether or not an object is a Typed Array", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "is-utf8", - "url": "https://github.com/wayfind/is-utf8#readme", - "description": "Detect if a buffer is utf8 encoded.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "is-windows", - "url": "https://github.com/jonschlinkert/is-windows", - "description": "Returns true if the platform is windows. UMD module, works with node.js, commonjs, browser, AMD, electron, etc.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "isarray", - "url": "https://github.com/juliangruber/isarray", - "description": "Array#isArray for older browsers", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "isexe", - "url": "https://github.com/isaacs/isexe#readme", - "description": "Minimal module to check if a file is executable.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "isobject", - "url": "https://github.com/jonschlinkert/isobject", - "description": "Returns true if the value is an object and not an array or null.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "isobject", - "url": "https://github.com/jonschlinkert/isobject", - "description": "Returns true if the value is an object and not an array or null.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "isstream", - "url": "https://github.com/rvagg/isstream", - "description": "Determine if an object is a Stream", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" - }, - "dependency": { - "name": "istanbul-lib-coverage", - "url": "https://github.com/istanbuljs/istanbuljs", - "description": "Data library for istanbul coverage objects", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" - }, - "dependency": { - "name": "istanbul-lib-hook", - "url": "https://github.com/istanbuljs/istanbuljs#readme", - "description": "Hooks for require, vm and script used in istanbul", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" - }, - "dependency": { - "name": "istanbul-lib-instrument", - "url": "https://github.com/istanbuljs/istanbuljs", - "description": "Core istanbul API for JS code coverage", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" - }, - "dependency": { - "name": "istanbul-lib-report", - "url": "https://github.com/istanbuljs/istanbuljs", - "description": "Base reporting library for istanbul", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" - }, - "dependency": { - "name": "istanbul-lib-source-maps", - "url": "https://github.com/istanbuljs/istanbuljs#readme", - "description": "Source maps support for istanbul", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" - }, - "dependency": { - "name": "istanbul-reports", - "url": "https://github.com/istanbuljs/istanbuljs", - "description": "istanbul reports", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "New BSD, MIT, ISC, Apache 2.0", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "js-npm", - "description": "Test project for js-npm", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "js-tokens", - "url": "https://github.com/lydell/js-tokens#readme", - "description": "A regex that tokenizes JavaScript.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "jsbn", - "url": "https://github.com/andyperlitch/jsbn#readme", - "description": "The jsbn library is a fast, portable implementation of large-number math in pure JavaScript, enabling public-key crypto and other applications on desktop and mobile browsers.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "jsdom", - "url": "https://github.com/jsdom/jsdom#readme", - "description": "A JavaScript implementation of many web standards", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "jsesc", - "url": "https://mths.be/jsesc", - "description": "A JavaScript library for escaping JavaScript strings while generating the shortest possible valid output.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "BSD, AFLv2.1", - "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" - }, - "dependency": { - "name": "json-schema", - "url": "https://github.com/kriszyp/json-schema#readme", - "description": "JSON Schema validation and specifications", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "json-schema-traverse", - "url": "https://github.com/epoberezkin/json-schema-traverse#readme", - "description": "Traverse JSON Schema passing each schema object to callback", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "json-stringify-safe", - "url": "https://github.com/isaacs/json-stringify-safe", - "description": "Like JSON.stringify, but doesn't blow up on circular refs.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "jsprim", - "url": "https://github.com/joyent/node-jsprim#readme", - "description": "utilities for primitive JavaScript types", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "kind-of", - "url": "https://github.com/jonschlinkert/kind-of", - "description": "Get the native type of a value.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "kind-of", - "url": "https://github.com/jonschlinkert/kind-of", - "description": "Get the native type of a value.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "kind-of", - "url": "https://github.com/jonschlinkert/kind-of", - "description": "Get the native type of a value.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "kind-of", - "url": "https://github.com/jonschlinkert/kind-of", - "description": "Get the native type of a value.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "lazy-cache", - "url": "https://github.com/jonschlinkert/lazy-cache", - "description": "Cache requires to be lazy-loaded when needed.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "lcid", - "url": "https://github.com/sindresorhus/lcid#readme", - "description": "Mapping between standard locale identifiers and Windows locale identifiers (LCID)", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "WTFPL" - }, - "dependency": { - "name": "left-pad", - "url": "https://github.com/stevemao/left-pad#readme", - "description": "String left pad", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "levn", - "url": "https://github.com/gkz/levn", - "description": "Light ECMAScript (JavaScript) Value Notation - human written, concise, typed, flexible", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "load-json-file", - "url": "https://github.com/sindresorhus/load-json-file#readme", - "description": "Read and parse a JSON file", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "locate-path", - "url": "https://github.com/sindresorhus/locate-path#readme", - "description": "Get the first path that exists on disk of multiple paths", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "lodash", - "url": "https://lodash.com/", - "description": "Lodash modular utilities.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "lodash", - "url": "https://lodash.com/", - "description": "Lodash modular utilities.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "lodash.sortby", - "url": "https://lodash.com/", - "description": "The lodash method `_.sortBy` exported as a module.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "longest", - "url": "https://github.com/jonschlinkert/longest", - "description": "Get the longest item in an array.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "loose-envify", - "url": "https://github.com/zertosh/loose-envify", - "description": "Fast (and loose) selective `process.env` replacer using js-tokens instead of an AST", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "lru-cache", - "url": "https://github.com/isaacs/node-lru-cache#readme", - "description": "A cache object that deletes the least-recently-used items.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "map-cache", - "url": "https://github.com/jonschlinkert/map-cache", - "description": "Basic cache object for storing key-value pairs.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "map-visit", - "url": "https://github.com/jonschlinkert/map-visit", - "description": "Map `visit` over an array of objects.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "md5-hex", - "url": "https://github.com/sindresorhus/md5-hex#readme", - "description": "Create a MD5 hash with hex encoding", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "md5-o-matic", - "url": "https://github.com/trentmillar/md5-o-matic", - "description": "Fast and simple MD5 hashing utility with zero module dependencies. View MD5 Shootout results, http://jsperf.com/md5-shootout/39", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "mem", - "url": "https://github.com/sindresorhus/mem#readme", - "description": "Memoize functions - An optimization used to speed up consecutive function calls by caching the result of calls with identical input", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "merge-source-map", - "url": "https://github.com/keik/merge-source-map#readme", - "description": "Merge old source map and new source map in multi-transform flow", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "micromatch", - "url": "https://github.com/micromatch/micromatch", - "description": "Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "mime-db", - "url": "https://github.com/jshttp/mime-db#readme", - "description": "Media Type Database", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "mime-types", - "url": "https://github.com/jshttp/mime-types#readme", - "description": "The ultimate javascript content-type utility.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "mimic-fn", - "url": "https://github.com/sindresorhus/mimic-fn#readme", - "description": "Make a function mimic another one", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "minimatch", - "url": "https://github.com/isaacs/minimatch#readme", - "description": "a glob matcher in javascript", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "minimist", - "url": "https://github.com/substack/minimist", - "description": "parse argument options", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "mixin-deep", - "url": "https://github.com/jonschlinkert/mixin-deep", - "description": "Deeply mix the properties of objects into the first object. Like merge-deep, but doesn't clone.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "mkdirp", - "url": "https://github.com/substack/node-mkdirp#readme", - "description": "Recursively mkdir, like `mkdir -p`", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "moment", - "url": "http://momentjs.com", - "description": "Parse, validate, manipulate, and display dates", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "ms", - "url": "https://github.com/zeit/ms#readme", - "description": "Tiny milisecond conversion utility", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "nanomatch", - "url": "https://github.com/micromatch/nanomatch", - "description": "Fast, minimal glob matcher for node.js. Similar to micromatch, minimatch and multimatch, but complete Bash 4.3 wildcard support only (no support for exglobs, posix brackets or braces)", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" - }, - "dependency": { - "name": "normalize-package-data", - "url": "https://github.com/npm/normalize-package-data#readme", - "description": "Normalizes data that can be found in package.json files.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "normalize.css", - "url": "https://necolas.github.io/normalize.css", - "description": "A modern alternative to CSS resets", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "npm-run-path", - "url": "https://github.com/sindresorhus/npm-run-path#readme", - "description": "Get your PATH prepended with locally installed binaries", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "number-is-nan", - "url": "https://github.com/sindresorhus/number-is-nan#readme", - "description": "ES2015 Number.isNaN() ponyfill", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "nwsapi", - "url": "http://javascript.nwbox.com/nwsapi/", - "description": "Fast CSS Selectors API Engine", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "nyc", - "url": "https://github.com/istanbuljs/nyc#readme", - "description": "the Istanbul command line interface", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" - }, - "dependency": { - "name": "oauth-sign", - "url": "https://github.com/mikeal/oauth-sign#readme", - "description": "OAuth 1 signing. Formerly a vendor lib in mikeal/request, now a standalone module.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "object-assign", - "url": "https://github.com/sindresorhus/object-assign#readme", - "description": "ES2015 `Object.assign()` ponyfill", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "object-copy", - "url": "https://github.com/jonschlinkert/object-copy", - "description": "Copy static properties, prototype properties, and descriptors from one object to another.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "object-visit", - "url": "https://github.com/jonschlinkert/object-visit", - "description": "Call a specified method on each value in the given object.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "object.pick", - "url": "https://github.com/jonschlinkert/object.pick", - "description": "Returns a filtered copy of an object with only the specified keys, similar to `_.pick` from lodash / underscore.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "once", - "url": "https://github.com/isaacs/once#readme", - "description": "Run a function exactly one time", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT/X11" - }, - "dependency": { - "name": "optimist", - "url": "https://github.com/substack/node-optimist#readme", - "description": "Light-weight option parsing with an argv hash. No optstrings attached.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "optionator", - "url": "https://github.com/gkz/optionator", - "description": "option parsing and help generation", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "os-homedir", - "url": "https://github.com/sindresorhus/os-homedir#readme", - "description": "Node.js 4 `os.homedir()` ponyfill", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "os-locale", - "url": "https://github.com/sindresorhus/os-locale#readme", - "description": "Get the system locale", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "p-finally", - "url": "https://github.com/sindresorhus/p-finally#readme", - "description": "`Promise#finally()` ponyfill - Invoked when the promise is settled regardless of outcome", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "p-limit", - "url": "https://github.com/sindresorhus/p-limit#readme", - "description": "Run multiple promise-returning & async functions with limited concurrency", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "p-locate", - "url": "https://github.com/sindresorhus/p-locate#readme", - "description": "Get the first fulfilled promise that satisfies the provided testing function", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "p-try", - "url": "https://github.com/sindresorhus/p-try#readme", - "description": "`Promise#try()` ponyfill - Starts a promise chain", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "parse-json", - "url": "https://github.com/sindresorhus/parse-json#readme", - "description": "Parse JSON with more helpful errors", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "parse5", - "url": "https://github.com/inikulin/parse5", - "description": "HTML parsing/serialization toolset for Node.js. WHATWG HTML Living Standard (aka HTML5)-compliant.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "pascalcase", - "url": "https://github.com/jonschlinkert/pascalcase", - "description": "Convert a string to pascal-case.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "path-exists", - "url": "https://github.com/sindresorhus/path-exists#readme", - "description": "Check if a path exists", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "path-exists", - "url": "https://github.com/sindresorhus/path-exists#readme", - "description": "Check if a path exists", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "path-is-absolute", - "url": "https://github.com/sindresorhus/path-is-absolute#readme", - "description": "Node.js 0.12 path.isAbsolute() ponyfill", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "path-key", - "url": "https://github.com/sindresorhus/path-key#readme", - "description": "Get the PATH environment variable key cross-platform", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "path-parse", - "url": "https://github.com/jbgutierrez/path-parse#readme", - "description": "Node.js path.parse() ponyfill", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "path-type", - "url": "https://github.com/sindresorhus/path-type#readme", - "description": "Check if a path is a file, directory, or symlink", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "performance-now", - "url": "https://github.com/braveg1rl/performance-now", - "description": "Implements performance.now (based on process.hrtime).", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "pify", - "url": "https://github.com/sindresorhus/pify#readme", - "description": "Promisify a callback-style function", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "pinkie", - "url": "https://github.com/floatdrop/pinkie#readme", - "description": "Itty bitty little widdle twinkie pinkie ES2015 Promise implementation", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "pinkie-promise", - "url": "https://github.com/floatdrop/pinkie-promise#readme", - "description": "ES2015 Promise ponyfill", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "pkg-dir", - "url": "https://github.com/sindresorhus/pkg-dir#readme", - "description": "Find the root directory of a npm package", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "pn", - "url": "https://github.com/cscott/node-pn#readme", - "description": "Promisify the node standard library.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "posix-character-classes", - "url": "https://github.com/jonschlinkert/posix-character-classes", - "description": "POSIX character classes for creating regular expressions.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "prelude-ls", - "url": "http://preludels.com", - "description": "prelude.ls is a functionally oriented utility library. It is powerful and flexible. Almost all of its functions are curried. It is written in, and is the recommended base library for, LiveScript.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "pseudomap", - "url": "https://github.com/isaacs/pseudomap#readme", - "description": "A thing that is a lot like ES6 `Map`, but without iterators, for use in environments where `for..of` syntax and `Map` are not available.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "psl", - "url": "https://github.com/lupomontero/psl#readme", - "description": "Domain name parser based on the Public Suffix List", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "punycode", - "url": "https://mths.be/punycode", - "description": "A robust Punycode converter that fully complies to RFC 3492 and RFC 5891, and works on nearly all JavaScript platforms.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "punycode", - "url": "https://mths.be/punycode", - "description": "A robust Punycode converter that fully complies to RFC 3492 and RFC 5891, and works on nearly all JavaScript platforms.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" - }, - "dependency": { - "name": "qs", - "url": "https://github.com/ljharb/qs", - "description": "A querystring parser that supports nesting and arrays, with a depth limit", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "read-pkg", - "url": "https://github.com/sindresorhus/read-pkg#readme", - "description": "Read a package.json file", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "read-pkg-up", - "url": "https://github.com/sindresorhus/read-pkg-up#readme", - "description": "Read the closest package.json file", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "regenerator-runtime", - "description": "Runtime for Regenerator-compiled generator and async functions.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "regex-not", - "url": "https://github.com/jonschlinkert/regex-not", - "description": "Create a javascript regular expression for matching everything except for the given string.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "repeat-element", - "url": "https://github.com/jonschlinkert/repeat-element", - "description": "Create an array by repeating the given value n times.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "repeat-string", - "url": "https://github.com/jonschlinkert/repeat-string", - "description": "Repeat the given string n times. Fastest implementation for repeating a string.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "repeating", - "url": "https://github.com/sindresorhus/repeating#readme", - "description": "Repeat a string - fast", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" - }, - "dependency": { - "name": "request", - "url": "https://github.com/request/request#readme", - "description": "Simplified HTTP request client.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "request-promise-core", - "url": "https://github.com/request/promise-core#readme", - "description": "Core Promise support implementation for the simplified HTTP request client 'request'.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "request-promise-native", - "url": "https://github.com/request/request-promise-native#readme", - "description": "The simplified HTTP request client 'request' with Promise support. Powered by native ES6 promises.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "require-directory", - "url": "https://github.com/troygoode/node-require-directory/", - "description": "Recursively iterates over specified directory, require()'ing each file, and returning a nested hash structure containing those modules.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "require-main-filename", - "url": "https://github.com/yargs/require-main-filename#readme", - "description": "shim for require.main.filename() that works in as many environments as possible", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "resolve-from", - "url": "https://github.com/sindresorhus/resolve-from#readme", - "description": "Resolve the path of a module like require.resolve() but from a given path", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "resolve-url", - "url": "https://github.com/lydell/resolve-url#readme", - "description": "Like Node.js’ `path.resolve`/`url.resolve` for the browser.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "ret", - "url": "https://github.com/fent/ret.js#readme", - "description": "Tokenizes a string that represents a regular expression.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "right-align", - "url": "https://github.com/jonschlinkert/right-align", - "description": "Right-align the text in a string.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "rimraf", - "url": "https://github.com/isaacs/rimraf#readme", - "description": "A deep deletion module for node (like `rm -rf`)", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "safe-buffer", - "url": "https://github.com/feross/safe-buffer", - "description": "Safer Node.js Buffer API", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "safe-regex", - "url": "https://github.com/substack/safe-regex", - "description": "detect possibly catastrophic, exponential-time regular expressions", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "safer-buffer", - "url": "https://github.com/ChALkeR/safer-buffer#readme", - "description": "Modern Buffer API polyfill without footguns", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "sax", - "url": "https://github.com/isaacs/sax-js#readme", - "description": "An evented streaming XML parser in JavaScript", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "semver", - "url": "https://github.com/npm/node-semver#readme", - "description": "The semantic version parser used by npm.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "set-blocking", - "url": "https://github.com/yargs/set-blocking#readme", - "description": "set blocking stdio and stderr ensuring that terminal output does not truncate", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "set-value", - "url": "https://github.com/jonschlinkert/set-value", - "description": "Create nested values and any intermediaries using dot notation (`'a.b.c'`) paths.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "set-value", - "url": "https://github.com/jonschlinkert/set-value", - "description": "Create nested values and any intermediaries using dot notation (`'a.b.c'`) paths.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "shebang-command", - "url": "https://github.com/kevva/shebang-command#readme", - "description": "Get the command from a shebang", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "shebang-regex", - "url": "https://github.com/sindresorhus/shebang-regex#readme", - "description": "Regular expression for matching a shebang", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "signal-exit", - "url": "https://github.com/tapjs/signal-exit", - "description": "when you want to fire an event no matter how a process exits.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "slide", - "url": "https://github.com/isaacs/slide-flow-control#readme", - "description": "A flow control lib small enough to fit on in a slide presentation. Derived live at Oak.JS", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "snapdragon", - "url": "https://github.com/jonschlinkert/snapdragon", - "description": "Fast, pluggable and easy-to-use parser-renderer factory.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "snapdragon-node", - "url": "https://github.com/jonschlinkert/snapdragon-node", - "description": "Snapdragon utility for creating a new AST node in custom code, such as plugins.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "snapdragon-util", - "url": "https://github.com/jonschlinkert/snapdragon-util", - "description": "Utilities for the snapdragon parser/compiler.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" - }, - "dependency": { - "name": "source-map", - "url": "https://github.com/mozilla/source-map", - "description": "Generates and consumes source maps", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" - }, - "dependency": { - "name": "source-map", - "url": "https://github.com/mozilla/source-map", - "description": "Generates and consumes source maps", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" - }, - "dependency": { - "name": "source-map", - "url": "https://github.com/mozilla/source-map", - "description": "Generates and consumes source maps", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "source-map-resolve", - "url": "https://github.com/lydell/source-map-resolve#readme", - "description": "Resolve the source map and/or sources for a generated file.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "source-map-url", - "url": "https://github.com/lydell/source-map-url#readme", - "description": "Tools for working with sourceMappingURL comments.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "spawn-wrap", - "url": "https://github.com/isaacs/spawn-wrap#readme", - "description": "Wrap all spawned Node.js child processes by adding environs and arguments ahead of the main JavaScript file argument.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" - }, - "dependency": { - "name": "spdx-correct", - "url": "https://github.com/jslicense/spdx-correct.js#readme", - "description": "correct invalid SPDX expressions", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "CC-BY-3.0" - }, - "dependency": { - "name": "spdx-exceptions", - "url": "https://github.com/kemitchell/spdx-exceptions.json#readme", - "description": "list of SPDX standard license exceptions", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "spdx-expression-parse", - "url": "https://github.com/jslicense/spdx-expression-parse.js#readme", - "description": "parse SPDX license expressions", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "CC0-1.0" - }, - "dependency": { - "name": "spdx-license-ids", - "url": "https://github.com/shinnn/spdx-license-ids#readme", - "description": "A list of SPDX license identifiers", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "split-string", - "url": "https://github.com/jonschlinkert/split-string", - "description": "Split a string on a character except when the character is escaped.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "sshpk", - "url": "https://github.com/arekinath/node-sshpk#readme", - "description": "A library for finding and using SSH public keys", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "static-extend", - "url": "https://github.com/jonschlinkert/static-extend", - "description": "Adds a static `extend` method to a class, to simplify inheritance. Extends the static properties, prototype properties, and descriptors from a `Parent` constructor onto `Child` constructors.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "stealthy-require", - "url": "https://github.com/analog-nico/stealthy-require#readme", - "description": "The closest you can get to require something with bypassing the require cache", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "string-width", - "url": "https://github.com/sindresorhus/string-width#readme", - "description": "Get the visual width of a string - the number of columns required to display it", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "string-width", - "url": "https://github.com/sindresorhus/string-width#readme", - "description": "Get the visual width of a string - the number of columns required to display it", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "strip-ansi", - "url": "https://github.com/chalk/strip-ansi#readme", - "description": "Strip ANSI escape codes", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "strip-ansi", - "url": "https://github.com/chalk/strip-ansi#readme", - "description": "Strip ANSI escape codes", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "strip-bom", - "url": "https://github.com/sindresorhus/strip-bom#readme", - "description": "Strip UTF-8 byte order mark (BOM) from a string/buffer", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "strip-eof", - "url": "https://github.com/sindresorhus/strip-eof#readme", - "description": "Strip the End-Of-File (EOF) character from a string/buffer", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "supports-color", - "url": "https://github.com/chalk/supports-color#readme", - "description": "Detect whether a terminal supports color", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "supports-color", - "url": "https://github.com/chalk/supports-color#readme", - "description": "Detect whether a terminal supports color", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "symbol-tree", - "url": "https://github.com/jsdom/js-symbol-tree#symbol-tree", - "description": "Turn any collection of objects into its own efficient tree or linked list using Symbol", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "test-exclude", - "url": "https://github.com/istanbuljs/istanbuljs#readme", - "description": "test for inclusion or exclusion of paths using pkg-conf and globs", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "to-fast-properties", - "url": "https://github.com/sindresorhus/to-fast-properties#readme", - "description": "Force V8 to use fast properties for an object", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "to-object-path", - "url": "https://github.com/jonschlinkert/to-object-path", - "description": "Create an object path from a list or array of strings.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "to-regex", - "url": "https://github.com/jonschlinkert/to-regex", - "description": "Generate a regex from a string or array of strings.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "to-regex-range", - "url": "https://github.com/micromatch/to-regex-range", - "description": "Pass two numbers, get a regex-compatible source string for matching ranges. Validated against more than 2.78 million test assertions.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" - }, - "dependency": { - "name": "tough-cookie", - "url": "https://github.com/salesforce/tough-cookie", - "description": "RFC6265 Cookies and Cookie Jar for node.js", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "tr46", - "url": "https://github.com/Sebmaster/tr46.js#readme", - "description": "An implementation of the Unicode TR46 spec", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "trim-right", - "url": "https://github.com/sindresorhus/trim-right#readme", - "description": "Similar to String#trim() but removes only whitespace on the right", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" - }, - "dependency": { - "name": "tunnel-agent", - "url": "https://github.com/mikeal/tunnel-agent#readme", - "description": "HTTP proxy tunneling agent. Formerly part of mikeal/request, now a standalone module.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "Unlicense" - }, - "dependency": { - "name": "tweetnacl", - "url": "https://tweetnacl.js.org", - "description": "Port of TweetNaCl cryptographic library to JavaScript", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "type-check", - "url": "https://github.com/gkz/type-check", - "description": "type-check allows you to check the types of JavaScript values at runtime with a Haskell like type syntax.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" - }, - "dependency": { - "name": "uglify-js", - "url": "http://lisperator.net/uglifyjs", - "description": "JavaScript parser, mangler/compressor and beautifier toolkit", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "uglify-to-browserify", - "url": "https://github.com/ForbesLindesay/uglify-to-browserify#readme", - "description": "A transform to make UglifyJS work in browserify.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "union-value", - "url": "https://github.com/jonschlinkert/union-value", - "description": "Set an array of unique values as the property of an object. Supports setting deeply nested properties using using object-paths/dot notation.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "unset-value", - "url": "https://github.com/jonschlinkert/unset-value", - "description": "Delete nested properties from an object using dot notation.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" - }, - "dependency": { - "name": "uri-js", - "url": "https://github.com/garycourt/uri-js", - "description": "An RFC 3986/3987 compliant, scheme extendable URI/IRI parsing/validating/resolving library for JavaScript.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "urix", - "url": "https://github.com/lydell/urix#readme", - "description": "Makes Windows-style paths more unix and URI friendly.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "use", - "url": "https://github.com/jonschlinkert/use", - "description": "Easily add plugin support to your node.js application.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "uuid", - "url": "https://github.com/kelektiv/node-uuid#readme", - "description": "RFC4122 (v1, v4, and v5) UUIDs", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" - }, - "dependency": { - "name": "validate-npm-package-license", - "url": "https://github.com/kemitchell/validate-npm-package-license.js#readme", - "description": "Give me a string and I'll tell you if it's a valid npm package license string", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "verror", - "url": "https://github.com/davepacheco/node-verror#readme", - "description": "richer JavaScript errors", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "w3c-hr-time", - "url": "https://github.com/jsdom/w3c-hr-time#readme", - "description": "An implementation of the W3C High Resolution Time Level 2 specification.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" - }, - "dependency": { - "name": "webidl-conversions", - "url": "https://github.com/jsdom/webidl-conversions#readme", - "description": "Implements the WebIDL algorithms for converting to and from JavaScript values", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "whatwg-encoding", - "url": "https://github.com/jsdom/whatwg-encoding#readme", - "description": "Decode strings according to the WHATWG Encoding Standard", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "whatwg-mimetype", - "url": "https://github.com/jsdom/whatwg-mimetype#readme", - "description": "Parses, serializes, and manipulates MIME types, according to the WHATWG MIME Sniffing Standard", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "whatwg-url", - "url": "https://github.com/jsdom/whatwg-url#readme", - "description": "An implementation of the WHATWG URL Standard's URL API and parsing machinery", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "whatwg-url", - "url": "https://github.com/jsdom/whatwg-url#readme", - "description": "An implementation of the WHATWG URL Standard's URL API and parsing machinery", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "which", - "url": "https://github.com/isaacs/node-which#readme", - "description": "Like which(1) unix command. Find the first instance of an executable in the PATH.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "which-module", - "url": "https://github.com/nexdrew/which-module#readme", - "description": "Find the module object for something that was require()d", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "window-size", - "url": "https://github.com/jonschlinkert/window-size", - "description": "Reliable way to to get the height and width of the terminal/console in a node.js environment.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "word-wrap", - "url": "https://github.com/jonschlinkert/word-wrap", - "description": "Wrap words to a specified length.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT/X11" - }, - "dependency": { - "name": "wordwrap", - "url": "https://github.com/substack/node-wordwrap#readme", - "description": "Wrap those words. Show them at what columns to start and stop.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "wordwrap", - "url": "https://github.com/substack/node-wordwrap#readme", - "description": "Wrap those words. Show them at what columns to start and stop.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "wrap-ansi", - "url": "https://github.com/chalk/wrap-ansi#readme", - "description": "Wordwrap a string with ANSI escape codes", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "wrappy", - "url": "https://github.com/npm/wrappy", - "description": "Callback wrapping utility", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "write-file-atomic", - "url": "https://github.com/iarna/write-file-atomic", - "description": "Write files in an atomic fashion w/configurable ownership", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "ws", - "url": "https://github.com/websockets/ws", - "description": "Simple to use, blazing fast and thoroughly tested websocket client and server for Node.js", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" - }, - "dependency": { - "name": "xml-name-validator", - "url": "https://github.com/jsdom/xml-name-validator#readme", - "description": "Validates whether a string matches the production for an XML name or qualified name", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "y18n", - "url": "https://github.com/yargs/y18n", - "description": "the bare-bones internationalization library used by yargs", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "yallist", - "url": "https://github.com/isaacs/yallist#readme", - "description": "Yet Another Linked List", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "yargs", - "url": "http://yargs.js.org/", - "description": "yargs the modern, pirate-themed, successor to optimist.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "yargs", - "url": "https://github.com/bcoe/yargs#readme", - "description": "Light-weight option parsing with an argv hash. No optstrings attached.", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "yargs-parser", - "url": "https://github.com/yargs/yargs-parser#readme", - "description": "the mighty option parser used by yargs", - "pathes": [ - "." - ] - } - }, - { - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "yargs-parser", - "url": "https://github.com/yargs/yargs-parser#readme", - "description": "the mighty option parser used by yargs", + "name": "normalize.css", + "url": "https://necolas.github.io/normalize.css", + "description": "A modern alternative to CSS resets", "pathes": [ "." ] } } ] -} +} \ No newline at end of file diff --git a/spec/fixtures/expected/js/npm/v1.1.json b/spec/fixtures/expected/js/npm/v1.1.json index 0acc153..8294741 100644 --- a/spec/fixtures/expected/js/npm/v1.1.json +++ b/spec/fixtures/expected/js/npm/v1.1.json @@ -1,65 +1,17 @@ { "version": "1.1", "licenses": [ - { - "count": 271, - "name": "MIT" - }, - { - "count": 38, - "name": "ISC" - }, - { - "count": 14, - "name": "New BSD" - }, - { - "count": 9, - "name": "Apache 2.0" - }, - { - "count": 9, - "name": "Simplified BSD" - }, { "count": 2, - "name": "MIT/X11" - }, - { - "count": 1, - "name": "(MIT OR Apache-2.0)" - }, - { - "count": 1, - "name": "BSD" - }, - { - "count": 1, - "name": "BSD, AFLv2.1" - }, - { - "count": 1, - "name": "BSD-3-Clause OR MIT" - }, - { - "count": 1, - "name": "CC-BY-3.0" - }, - { - "count": 1, - "name": "CC0-1.0" - }, - { - "count": 1, - "name": "New BSD, MIT, ISC, Apache 2.0" + "name": "MIT" }, { "count": 1, - "name": "Unlicense" + "name": "New BSD" }, { "count": 1, - "name": "WTFPL" + "name": "New BSD, MIT" } ], "dependencies": [ @@ -75,228 +27,9 @@ "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "abab", - "url": "https://github.com/jsdom/abab#readme", - "description": "WHATWG spec-compliant implementations of window.atob and window.btoa.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "acorn", - "url": "https://github.com/acornjs/acorn", - "description": "ECMAScript parser", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "acorn", - "url": "https://github.com/acornjs/acorn", - "description": "ECMAScript parser", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "acorn-globals", - "url": "https://github.com/ForbesLindesay/acorn-globals#readme", - "description": "Detect global variables in JavaScript using acorn", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "acorn-walk", - "url": "https://github.com/acornjs/acorn", - "description": "ECMAScript (ESTree) AST walker", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "ajv", - "url": "https://github.com/epoberezkin/ajv", - "description": "Another JSON Schema Validator", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "align-text", - "url": "https://github.com/jonschlinkert/align-text", - "description": "Align the text in a string.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "BSD-3-Clause OR MIT", - "url": "" - } - ], - "license": { - "name": "BSD-3-Clause OR MIT" - }, - "dependency": { - "name": "amdefine", - "url": "http://github.com/jrburke/amdefine", - "description": "Provide AMD's define() API for declaring modules in the AMD format", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "ansi-regex", - "url": "https://github.com/chalk/ansi-regex#readme", - "description": "Regular expression for matching ANSI escape codes", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "ansi-regex", - "url": "https://github.com/chalk/ansi-regex#readme", - "description": "Regular expression for matching ANSI escape codes", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "ansi-styles", - "url": "https://github.com/chalk/ansi-styles#readme", - "description": "ANSI escape codes for styling strings in the terminal", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "append-transform", - "url": "https://github.com/jamestalmage/append-transform#readme", - "description": "Install a transform to `require.extensions` that always runs last, even if additional extensions are added later.", + "name": "highlight.js", + "url": "https://highlightjs.org/", + "description": "Syntax highlighting with language autodetection.", "pathes": [ "." ] @@ -307,36 +40,19 @@ { "name": "MIT", "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "archy", - "url": "https://github.com/substack/node-archy#readme", - "description": "render nested hierarchies `npm ls` style with unicode pipes", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ + }, { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD", + "url": "http://opensource.org/licenses/BSD-3-Clause" } ], "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" + "name": "New BSD, MIT", + "url": "http://opensource.org/licenses/BSD-3-Clause" }, "dependency": { - "name": "arr-diff", - "url": "https://github.com/jonschlinkert/arr-diff", - "description": "Returns an array with only the unique values from the first array, by excluding all values from additional arrays using strict equality for comparisons.", + "name": "js-npm", + "description": "Test project for js-npm", "pathes": [ "." ] @@ -354,9 +70,9 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "arr-flatten", - "url": "https://github.com/jonschlinkert/arr-flatten", - "description": "Recursively flatten an array or arrays.", + "name": "moment", + "url": "http://momentjs.com", + "description": "Parse, validate, manipulate, and display dates", "pathes": [ "." ] @@ -374,6739 +90,13 @@ "url": "http://opensource.org/licenses/mit-license" }, "dependency": { - "name": "arr-union", - "url": "https://github.com/jonschlinkert/arr-union", - "description": "Combines a list of arrays, returning a single array with unique values, using strict equality for comparisons.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "array-equal", - "url": "https://github.com/component/array-equal#readme", - "description": "check if two arrays are equal", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "array-unique", - "url": "https://github.com/jonschlinkert/array-unique", - "description": "Remove duplicate values from an array. Fastest ES5 implementation.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "arrify", - "url": "https://github.com/sindresorhus/arrify#readme", - "description": "Convert a value to an array", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "asn1", - "url": "https://github.com/joyent/node-asn1#readme", - "description": "Contains parsers and serializers for ASN.1 (currently BER only)", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "assert-plus", - "url": "https://github.com/mcavage/node-assert-plus#readme", - "description": "Extra assertions on top of node's assert module", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "assign-symbols", - "url": "https://github.com/jonschlinkert/assign-symbols", - "description": "Assign the enumerable es6 Symbol properties from an object (or objects) to the first object passed on the arguments. Can be used as a supplement to other extend, assign or merge methods as a polyfill for the Symbols part of the es6 Object.assign method.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "async", - "url": "https://github.com/caolan/async#readme", - "description": "Higher-order functions and common patterns for asynchronous code", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "async-limiter", - "url": "https://github.com/strml/async-limiter#readme", - "description": "asynchronous function queue with adjustable concurrency", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "asynckit", - "url": "https://github.com/alexindigo/asynckit#readme", - "description": "Minimal async jobs utility library, with streams support", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "(MIT OR Apache-2.0)", - "url": "" - } - ], - "license": { - "name": "(MIT OR Apache-2.0)" - }, - "dependency": { - "name": "atob", - "url": "https://git.coolaj86.com/coolaj86/atob.js.git", - "description": "atob for Node.JS and Linux / Mac / Windows CLI (it's a one-liner)", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" - } - ], - "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" - }, - "dependency": { - "name": "aws-sign2", - "url": "https://github.com/mikeal/aws-sign#readme", - "description": "AWS signing. Originally pulled from LearnBoost/knox, maintained as vendor in request, now a standalone module.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "aws4", - "url": "https://github.com/mhart/aws4#readme", - "description": "Signs and prepares requests using AWS Signature Version 4", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "babel-code-frame", - "url": "https://babeljs.io/", - "description": "Generate errors that contain a code frame that point to source locations.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "babel-generator", - "url": "https://babeljs.io/", - "description": "Turns an AST into code.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "babel-messages", - "url": "https://babeljs.io/", - "description": "Collection of debug messages used by Babel.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "babel-runtime", - "description": "babel selfContained runtime", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "babel-template", - "url": "https://babeljs.io/", - "description": "Generate an AST from a string template.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "babel-traverse", - "url": "https://babeljs.io/", - "description": "The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "babel-types", - "url": "https://babeljs.io/", - "description": "Babel Types is a Lodash-esque utility library for AST nodes", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "babylon", - "url": "https://babeljs.io/", - "description": "A JavaScript parser", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "balanced-match", - "url": "https://github.com/juliangruber/balanced-match", - "description": "Match balanced character pairs, like \"{\" and \"}\"", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "base", - "url": "https://github.com/node-base/base", - "description": "base is the foundation for creating modular, unit testable and highly pluggable node.js applications, starting with a handful of common methods, like `set`, `get`, `del` and `use`.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" - } - ], - "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" - }, - "dependency": { - "name": "bcrypt-pbkdf", - "url": "https://github.com/joyent/node-bcrypt-pbkdf#readme", - "description": "Port of the OpenBSD bcrypt_pbkdf function to pure JS", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "brace-expansion", - "url": "https://github.com/juliangruber/brace-expansion", - "description": "Brace expansion as known from sh/bash", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "braces", - "url": "https://github.com/micromatch/braces", - "description": "Bash-like brace expansion, implemented in JavaScript. Safer than other brace expansion libs, with complete support for the Bash 4.3 braces specification, without sacrificing speed.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" - } - ], - "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" - }, - "dependency": { - "name": "browser-process-hrtime", - "url": "https://github.com/kumavis/browser-process-hrtime#readme", - "description": "Shim for process.hrtime in the browser", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "builtin-modules", - "url": "https://github.com/sindresorhus/builtin-modules#readme", - "description": "List of the Node.js builtin modules", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "cache-base", - "url": "https://github.com/jonschlinkert/cache-base", - "description": "Basic object cache with `get`, `set`, `del`, and `has` methods for node.js/javascript projects.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "caching-transform", - "url": "https://github.com/jamestalmage/caching-transform#readme", - "description": "Wraps a transform and provides caching", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "camelcase", - "url": "https://github.com/sindresorhus/camelcase#readme", - "description": "Convert a dash/dot/underscore/space separated string to camelCase: foo-bar → fooBar", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "camelcase", - "url": "https://github.com/sindresorhus/camelcase#readme", - "description": "Convert a dash/dot/underscore/space separated string to camelCase: foo-bar → fooBar", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" - } - ], - "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" - }, - "dependency": { - "name": "caseless", - "url": "https://github.com/mikeal/caseless#readme", - "description": "Caseless object set/get/has, very useful when working with HTTP headers.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "center-align", - "url": "https://github.com/jonschlinkert/center-align", - "description": "Center-align the text in a string.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "chalk", - "url": "https://github.com/chalk/chalk#readme", - "description": "Terminal string styling done right. Much color.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "class-utils", - "url": "https://github.com/jonschlinkert/class-utils", - "description": "Utils for working with JavaScript classes and prototype methods.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - } - ], - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "cliui", - "url": "https://github.com/bcoe/cliui#readme", - "description": "easily create complex multi-column command-line-interfaces", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - } - ], - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "cliui", - "url": "https://github.com/yargs/cliui#readme", - "description": "easily create complex multi-column command-line-interfaces", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "code-point-at", - "url": "https://github.com/sindresorhus/code-point-at#readme", - "description": "ES2015 `String#codePointAt()` ponyfill", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "collection-visit", - "url": "https://github.com/jonschlinkert/collection-visit", - "description": "Visit a method over the items in an object, or map visit over the objects in an array.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "combined-stream", - "url": "https://github.com/felixge/node-combined-stream", - "description": "A stream that emits multiple other streams one after another.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "commondir", - "url": "https://github.com/substack/node-commondir#readme", - "description": "compute the closest common parent for file paths", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "component-emitter", - "url": "https://github.com/component/emitter#readme", - "description": "Event emitter", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "concat-map", - "url": "https://github.com/substack/node-concat-map#readme", - "description": "concatenative mapdashery", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "convert-source-map", - "url": "https://github.com/thlorenz/convert-source-map", - "description": "Converts a source-map from/to different formats and allows adding/changing properties.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "copy-descriptor", - "url": "https://github.com/jonschlinkert/copy-descriptor", - "description": "Copy a descriptor from object A to object B", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "core-js", - "url": "https://github.com/zloirock/core-js#readme", - "description": "Standard library", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "core-util-is", - "url": "https://github.com/isaacs/core-util-is#readme", - "description": "The `util.is*` functions introduced in Node v0.12.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "cross-spawn", - "url": "https://github.com/IndigoUnited/node-cross-spawn#readme", - "description": "Cross platform child_process#spawn and child_process#spawnSync", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "cross-spawn", - "url": "https://github.com/IndigoUnited/node-cross-spawn#readme", - "description": "Cross platform child_process#spawn and child_process#spawnSync", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "cssom", - "url": "https://github.com/NV/CSSOM#readme", - "description": "CSS Object Model implementation and CSS parser", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "cssstyle", - "url": "https://github.com/jsakas/CSSStyleDeclaration", - "description": "CSSStyleDeclaration Object Model implementation", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "dashdash", - "url": "https://github.com/trentm/node-dashdash#readme", - "description": "A light, featureful and explicit option parsing library.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "data-urls", - "url": "https://github.com/jsdom/data-urls#readme", - "description": "Parses data: URLs", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "debug", - "url": "https://github.com/visionmedia/debug#readme", - "description": "small debugging utility", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "debug", - "url": "https://github.com/visionmedia/debug#readme", - "description": "small debugging utility", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "debug-log", - "url": "https://github.com/sindresorhus/debug-log#readme", - "description": "Node.js 0.12 util.debuglog() ponyfill", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "decamelize", - "url": "https://github.com/sindresorhus/decamelize#readme", - "description": "Convert a camelized string into a lowercased one with a custom separator: unicornRainbow → unicorn_rainbow", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "decode-uri-component", - "url": "https://github.com/SamVerschueren/decode-uri-component#readme", - "description": "A better decodeURIComponent", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "deep-is", - "url": "https://github.com/thlorenz/deep-is#readme", - "description": "node's assert.deepEqual algorithm except for NaN being equal to NaN", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "default-require-extensions", - "url": "https://github.com/jamestalmage/default-require-extensions#readme", - "description": "Node's default require extensions as a separate module", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "define-property", - "url": "https://github.com/jonschlinkert/define-property", - "description": "Define a non-enumerable property on an object.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "define-property", - "url": "https://github.com/jonschlinkert/define-property", - "description": "Define a non-enumerable property on an object.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "define-property", - "url": "https://github.com/jonschlinkert/define-property", - "description": "Define a non-enumerable property on an object. Uses Reflect.defineProperty when available, otherwise Object.defineProperty.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "delayed-stream", - "url": "https://github.com/felixge/node-delayed-stream", - "description": "Buffers events from a stream until you are ready to handle them.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "detect-indent", - "url": "https://github.com/sindresorhus/detect-indent#readme", - "description": "Detect the indentation of code", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "domexception", - "url": "https://github.com/jsdom/domexception#readme", - "description": "An implementation of the DOMException class from browsers", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "ecc-jsbn", - "url": "https://github.com/quartzjer/ecc-jsbn", - "description": "ECC JS code based on JSBN", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "error-ex", - "url": "https://github.com/qix-/node-error-ex#readme", - "description": "Easy error subclassing and stack customization", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "escape-string-regexp", - "url": "https://github.com/sindresorhus/escape-string-regexp#readme", - "description": "Escape RegExp special characters", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" - } - ], - "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" - }, - "dependency": { - "name": "escodegen", - "url": "http://github.com/estools/escodegen", - "description": "ECMAScript code generator", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" - } - ], - "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" - }, - "dependency": { - "name": "esprima", - "url": "http://esprima.org", - "description": "ECMAScript parsing infrastructure for multipurpose analysis", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" - } - ], - "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" - }, - "dependency": { - "name": "estraverse", - "url": "https://github.com/estools/estraverse", - "description": "ECMAScript JS AST traversal functions", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "BSD", - "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" - } - ], - "license": { - "name": "BSD", - "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" - }, - "dependency": { - "name": "esutils", - "url": "https://github.com/estools/esutils", - "description": "utility box for ECMAScript language tools", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" - } - ], - "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" - }, - "dependency": { - "name": "esutils", - "url": "https://github.com/estools/esutils", - "description": "utility box for ECMAScript language tools", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "execa", - "url": "https://github.com/sindresorhus/execa#readme", - "description": "A better `child_process`", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "expand-brackets", - "url": "https://github.com/jonschlinkert/expand-brackets", - "description": "Expand POSIX bracket expressions (character classes) in glob patterns.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "extend", - "url": "https://github.com/justmoon/node-extend#readme", - "description": "Port of jQuery.extend for node.js and the browser", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "extend-shallow", - "url": "https://github.com/jonschlinkert/extend-shallow", - "description": "Extend an object with the properties of additional objects. node.js/javascript util.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "extend-shallow", - "url": "https://github.com/jonschlinkert/extend-shallow", - "description": "Extend an object with the properties of additional objects. node.js/javascript util.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "extglob", - "url": "https://github.com/micromatch/extglob", - "description": "Extended glob support for JavaScript. Adds (almost) the expressive power of regular expressions to glob patterns.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "extsprintf", - "url": "https://github.com/davepacheco/node-extsprintf#readme", - "description": "extended POSIX-style sprintf", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "fast-deep-equal", - "url": "https://github.com/epoberezkin/fast-deep-equal#readme", - "description": "Fast deep equal", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "fast-json-stable-stringify", - "url": "https://github.com/epoberezkin/fast-json-stable-stringify", - "description": "deterministic `JSON.stringify()` - a faster version of substack's json-stable-strigify without jsonify", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "fast-levenshtein", - "url": "https://github.com/hiddentao/fast-levenshtein#readme", - "description": "Efficient implementation of Levenshtein algorithm with locale-specific collator support.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "fill-range", - "url": "https://github.com/jonschlinkert/fill-range", - "description": "Fill in a range of numbers or letters, optionally passing an increment or `step` to use, or create a regex-compatible range with `options.toRegex`", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "find-cache-dir", - "url": "https://github.com/jamestalmage/find-cache-dir#readme", - "description": "My well-made module", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "find-up", - "url": "https://github.com/sindresorhus/find-up#readme", - "description": "Find a file by walking up parent directories", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "find-up", - "url": "https://github.com/sindresorhus/find-up#readme", - "description": "Find a file by walking up parent directories", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "for-in", - "url": "https://github.com/jonschlinkert/for-in", - "description": "Iterate over the own and inherited enumerable properties of an object, and return an object with properties that evaluate to true from the callback. Exit early by returning `false`. JavaScript/Node.js", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - } - ], - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "foreground-child", - "url": "https://github.com/tapjs/foreground-child#readme", - "description": "Run a child as if it's the foreground process. Give it stdio. Exit when it exits.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" - } - ], - "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" - }, - "dependency": { - "name": "forever-agent", - "url": "https://github.com/mikeal/forever-agent#readme", - "description": "HTTP Agent that keeps socket connections alive between keep-alive requests. Formerly part of mikeal/request, now a standalone module.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "form-data", - "url": "https://github.com/form-data/form-data#readme", - "description": "A library to create readable \"multipart/form-data\" streams. Can be used to submit forms and file uploads to other web applications.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "fragment-cache", - "url": "https://github.com/jonschlinkert/fragment-cache", - "description": "A cache for managing namespaced sub-caches", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - } - ], - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "fs.realpath", - "url": "https://github.com/isaacs/fs.realpath#readme", - "description": "Use node's fs.realpath, but fall back to the JS implementation if the native one fails", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - } - ], - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "get-caller-file", - "url": "https://github.com/stefanpenner/get-caller-file#readme", - "description": "[![Build Status](https://travis-ci.org/ember-cli/ember-cli.svg?branch=master)](https://travis-ci.org/ember-cli/ember-cli) [![Build status](https://ci.appveyor.com/api/projects/status/ol2q94g1932cy14a/branch/master?svg=true)](https://ci.appveyor.com/project/embercli/get-caller-file/branch/master)", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "get-stream", - "url": "https://github.com/sindresorhus/get-stream#readme", - "description": "Get a stream as a string, buffer, or array", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "get-value", - "url": "https://github.com/jonschlinkert/get-value", - "description": "Use property paths (`a.b.c`) to get a nested value from an object.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "getpass", - "url": "https://github.com/arekinath/node-getpass#readme", - "description": "getpass for node.js", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - } - ], - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "glob", - "url": "https://github.com/isaacs/node-glob#readme", - "description": "a little globber", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "globals", - "url": "https://github.com/sindresorhus/globals#readme", - "description": "Global identifiers from different JavaScript environments", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - } - ], - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "graceful-fs", - "url": "https://github.com/isaacs/node-graceful-fs#readme", - "description": "A drop-in replacement for fs, making various improvements.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "handlebars", - "url": "http://www.handlebarsjs.com/", - "description": "Handlebars provides the power necessary to let you build semantic templates effectively with no frustration", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - } - ], - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "har-schema", - "url": "https://github.com/ahmadnassri/har-schema", - "description": "JSON Schema for HTTP Archive (HAR)", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "har-validator", - "url": "https://github.com/ahmadnassri/node-har-validator", - "description": "Extremely fast HTTP Archive (HAR) validator using JSON Schema", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "has-ansi", - "url": "https://github.com/sindresorhus/has-ansi#readme", - "description": "Check if a string has ANSI escape codes", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "has-flag", - "url": "https://github.com/sindresorhus/has-flag#readme", - "description": "Check if argv has a specific flag", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "has-value", - "url": "https://github.com/jonschlinkert/has-value", - "description": "Returns true if a value exists, false if empty. Works with deeply nested values using object paths.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "has-value", - "url": "https://github.com/jonschlinkert/has-value", - "description": "Returns true if a value exists, false if empty. Works with deeply nested values using object paths.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "has-values", - "url": "https://github.com/jonschlinkert/has-values", - "description": "Returns true if any values exist, false if empty. Works for booleans, functions, numbers, strings, nulls, objects and arrays. ", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "has-values", - "url": "https://github.com/jonschlinkert/has-values", - "description": "Returns true if any values exist, false if empty. Works for booleans, functions, numbers, strings, nulls, objects and arrays. ", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" - } - ], - "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" - }, - "dependency": { - "name": "highlight.js", - "url": "https://highlightjs.org/", - "description": "Syntax highlighting with language autodetection.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - } - ], - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "hosted-git-info", - "url": "https://github.com/npm/hosted-git-info", - "description": "Provides metadata and conversions from repository urls for Github, Bitbucket and Gitlab", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "html-encoding-sniffer", - "url": "https://github.com/jsdom/html-encoding-sniffer#readme", - "description": "Sniff the encoding from a HTML byte stream", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "http-signature", - "url": "https://github.com/joyent/node-http-signature/", - "description": "Reference implementation of Joyent's HTTP Signature scheme.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "iconv-lite", - "url": "https://github.com/ashtuchkin/iconv-lite", - "description": "Convert character encodings in pure javascript.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "imurmurhash", - "url": "https://github.com/jensyt/imurmurhash-js", - "description": "An incremental implementation of MurmurHash3", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - } - ], - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "inflight", - "url": "https://github.com/isaacs/inflight", - "description": "Add callbacks to requests in flight to avoid async duplication", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - } - ], - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "inherits", - "url": "https://github.com/isaacs/inherits#readme", - "description": "Browser-friendly inheritance fully compatible with standard node.js inherits()", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "invariant", - "url": "https://github.com/zertosh/invariant#readme", - "description": "invariant", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "invert-kv", - "url": "https://github.com/sindresorhus/invert-kv#readme", - "description": "Invert the key/value of an object. Example: {foo: 'bar'} → {bar: 'foo'}", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "is-accessor-descriptor", - "url": "https://github.com/jonschlinkert/is-accessor-descriptor", - "description": "Returns true if a value has the characteristics of a valid JavaScript accessor descriptor.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "is-accessor-descriptor", - "url": "https://github.com/jonschlinkert/is-accessor-descriptor", - "description": "Returns true if a value has the characteristics of a valid JavaScript accessor descriptor.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "is-arrayish", - "url": "https://github.com/qix-/node-is-arrayish#readme", - "description": "Determines if an object can be used as an array", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "is-buffer", - "url": "https://github.com/feross/is-buffer#readme", - "description": "Determine if an object is a Buffer", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "is-builtin-module", - "url": "https://github.com/sindresorhus/is-builtin-module#readme", - "description": "Check if a string matches the name of a Node.js builtin module", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "is-data-descriptor", - "url": "https://github.com/jonschlinkert/is-data-descriptor", - "description": "Returns true if a value has the characteristics of a valid JavaScript data descriptor.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "is-data-descriptor", - "url": "https://github.com/jonschlinkert/is-data-descriptor", - "description": "Returns true if a value has the characteristics of a valid JavaScript data descriptor.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "is-descriptor", - "url": "https://github.com/jonschlinkert/is-descriptor", - "description": "Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for data descriptors and accessor descriptors.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "is-descriptor", - "url": "https://github.com/jonschlinkert/is-descriptor", - "description": "Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for data descriptors and accessor descriptors.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "is-extendable", - "url": "https://github.com/jonschlinkert/is-extendable", - "description": "Returns true if a value is any of the object types: array, regexp, plain object, function or date. This is useful for determining if a value can be extended, e.g. \"can the value have keys?\"", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "is-extendable", - "url": "https://github.com/jonschlinkert/is-extendable", - "description": "Returns true if a value is a plain object, array or function.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "is-finite", - "url": "https://github.com/sindresorhus/is-finite#readme", - "description": "ES2015 Number.isFinite() ponyfill", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "is-fullwidth-code-point", - "url": "https://github.com/sindresorhus/is-fullwidth-code-point#readme", - "description": "Check if the character represented by a given Unicode code point is fullwidth", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "is-fullwidth-code-point", - "url": "https://github.com/sindresorhus/is-fullwidth-code-point#readme", - "description": "Check if the character represented by a given Unicode code point is fullwidth", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "is-number", - "url": "https://github.com/jonschlinkert/is-number", - "description": "Returns true if the value is a number. comprehensive tests.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "is-number", - "url": "https://github.com/jonschlinkert/is-number", - "description": "Returns true if the value is a number. comprehensive tests.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "is-odd", - "url": "https://github.com/jonschlinkert/is-odd", - "description": "Returns true if the given number is odd.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "is-plain-object", - "url": "https://github.com/jonschlinkert/is-plain-object", - "description": "Returns true if an object was created by the `Object` constructor.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "is-stream", - "url": "https://github.com/sindresorhus/is-stream#readme", - "description": "Check if something is a Node.js stream", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "is-typedarray", - "url": "https://github.com/hughsk/is-typedarray", - "description": "Detect whether or not an object is a Typed Array", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "is-utf8", - "url": "https://github.com/wayfind/is-utf8#readme", - "description": "Detect if a buffer is utf8 encoded.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "is-windows", - "url": "https://github.com/jonschlinkert/is-windows", - "description": "Returns true if the platform is windows. UMD module, works with node.js, commonjs, browser, AMD, electron, etc.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "isarray", - "url": "https://github.com/juliangruber/isarray", - "description": "Array#isArray for older browsers", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - } - ], - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "isexe", - "url": "https://github.com/isaacs/isexe#readme", - "description": "Minimal module to check if a file is executable.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "isobject", - "url": "https://github.com/jonschlinkert/isobject", - "description": "Returns true if the value is an object and not an array or null.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "isobject", - "url": "https://github.com/jonschlinkert/isobject", - "description": "Returns true if the value is an object and not an array or null.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "isstream", - "url": "https://github.com/rvagg/isstream", - "description": "Determine if an object is a Stream", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" - } - ], - "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" - }, - "dependency": { - "name": "istanbul-lib-coverage", - "url": "https://github.com/istanbuljs/istanbuljs", - "description": "Data library for istanbul coverage objects", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" - } - ], - "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" - }, - "dependency": { - "name": "istanbul-lib-hook", - "url": "https://github.com/istanbuljs/istanbuljs#readme", - "description": "Hooks for require, vm and script used in istanbul", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" - } - ], - "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" - }, - "dependency": { - "name": "istanbul-lib-instrument", - "url": "https://github.com/istanbuljs/istanbuljs", - "description": "Core istanbul API for JS code coverage", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" - } - ], - "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" - }, - "dependency": { - "name": "istanbul-lib-report", - "url": "https://github.com/istanbuljs/istanbuljs", - "description": "Base reporting library for istanbul", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" - } - ], - "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" - }, - "dependency": { - "name": "istanbul-lib-source-maps", - "url": "https://github.com/istanbuljs/istanbuljs#readme", - "description": "Source maps support for istanbul", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" - } - ], - "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" - }, - "dependency": { - "name": "istanbul-reports", - "url": "https://github.com/istanbuljs/istanbuljs", - "description": "istanbul reports", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" - }, - { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" - } - ], - "license": { - "name": "New BSD, MIT, ISC, Apache 2.0", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "js-npm", - "description": "Test project for js-npm", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "js-tokens", - "url": "https://github.com/lydell/js-tokens#readme", - "description": "A regex that tokenizes JavaScript.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "jsbn", - "url": "https://github.com/andyperlitch/jsbn#readme", - "description": "The jsbn library is a fast, portable implementation of large-number math in pure JavaScript, enabling public-key crypto and other applications on desktop and mobile browsers.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "jsdom", - "url": "https://github.com/jsdom/jsdom#readme", - "description": "A JavaScript implementation of many web standards", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "jsesc", - "url": "https://mths.be/jsesc", - "description": "A JavaScript library for escaping JavaScript strings while generating the shortest possible valid output.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "AFLv2.1", - "url": "" - }, - { - "name": "BSD", - "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" - } - ], - "license": { - "name": "BSD, AFLv2.1", - "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" - }, - "dependency": { - "name": "json-schema", - "url": "https://github.com/kriszyp/json-schema#readme", - "description": "JSON Schema validation and specifications", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "json-schema-traverse", - "url": "https://github.com/epoberezkin/json-schema-traverse#readme", - "description": "Traverse JSON Schema passing each schema object to callback", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - } - ], - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "json-stringify-safe", - "url": "https://github.com/isaacs/json-stringify-safe", - "description": "Like JSON.stringify, but doesn't blow up on circular refs.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "jsprim", - "url": "https://github.com/joyent/node-jsprim#readme", - "description": "utilities for primitive JavaScript types", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "kind-of", - "url": "https://github.com/jonschlinkert/kind-of", - "description": "Get the native type of a value.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "kind-of", - "url": "https://github.com/jonschlinkert/kind-of", - "description": "Get the native type of a value.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "kind-of", - "url": "https://github.com/jonschlinkert/kind-of", - "description": "Get the native type of a value.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "kind-of", - "url": "https://github.com/jonschlinkert/kind-of", - "description": "Get the native type of a value.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "lazy-cache", - "url": "https://github.com/jonschlinkert/lazy-cache", - "description": "Cache requires to be lazy-loaded when needed.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "lcid", - "url": "https://github.com/sindresorhus/lcid#readme", - "description": "Mapping between standard locale identifiers and Windows locale identifiers (LCID)", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "WTFPL", - "url": "" - } - ], - "license": { - "name": "WTFPL" - }, - "dependency": { - "name": "left-pad", - "url": "https://github.com/stevemao/left-pad#readme", - "description": "String left pad", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "levn", - "url": "https://github.com/gkz/levn", - "description": "Light ECMAScript (JavaScript) Value Notation - human written, concise, typed, flexible", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "load-json-file", - "url": "https://github.com/sindresorhus/load-json-file#readme", - "description": "Read and parse a JSON file", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "locate-path", - "url": "https://github.com/sindresorhus/locate-path#readme", - "description": "Get the first path that exists on disk of multiple paths", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "lodash", - "url": "https://lodash.com/", - "description": "Lodash modular utilities.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "lodash", - "url": "https://lodash.com/", - "description": "Lodash modular utilities.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "lodash.sortby", - "url": "https://lodash.com/", - "description": "The lodash method `_.sortBy` exported as a module.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "longest", - "url": "https://github.com/jonschlinkert/longest", - "description": "Get the longest item in an array.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "loose-envify", - "url": "https://github.com/zertosh/loose-envify", - "description": "Fast (and loose) selective `process.env` replacer using js-tokens instead of an AST", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - } - ], - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "lru-cache", - "url": "https://github.com/isaacs/node-lru-cache#readme", - "description": "A cache object that deletes the least-recently-used items.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "map-cache", - "url": "https://github.com/jonschlinkert/map-cache", - "description": "Basic cache object for storing key-value pairs.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "map-visit", - "url": "https://github.com/jonschlinkert/map-visit", - "description": "Map `visit` over an array of objects.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "md5-hex", - "url": "https://github.com/sindresorhus/md5-hex#readme", - "description": "Create a MD5 hash with hex encoding", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "md5-o-matic", - "url": "https://github.com/trentmillar/md5-o-matic", - "description": "Fast and simple MD5 hashing utility with zero module dependencies. View MD5 Shootout results, http://jsperf.com/md5-shootout/39", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "mem", - "url": "https://github.com/sindresorhus/mem#readme", - "description": "Memoize functions - An optimization used to speed up consecutive function calls by caching the result of calls with identical input", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "merge-source-map", - "url": "https://github.com/keik/merge-source-map#readme", - "description": "Merge old source map and new source map in multi-transform flow", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "micromatch", - "url": "https://github.com/micromatch/micromatch", - "description": "Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "mime-db", - "url": "https://github.com/jshttp/mime-db#readme", - "description": "Media Type Database", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "mime-types", - "url": "https://github.com/jshttp/mime-types#readme", - "description": "The ultimate javascript content-type utility.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "mimic-fn", - "url": "https://github.com/sindresorhus/mimic-fn#readme", - "description": "Make a function mimic another one", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - } - ], - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "minimatch", - "url": "https://github.com/isaacs/minimatch#readme", - "description": "a glob matcher in javascript", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "minimist", - "url": "https://github.com/substack/minimist", - "description": "parse argument options", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "mixin-deep", - "url": "https://github.com/jonschlinkert/mixin-deep", - "description": "Deeply mix the properties of objects into the first object. Like merge-deep, but doesn't clone.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "mkdirp", - "url": "https://github.com/substack/node-mkdirp#readme", - "description": "Recursively mkdir, like `mkdir -p`", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "moment", - "url": "http://momentjs.com", - "description": "Parse, validate, manipulate, and display dates", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "ms", - "url": "https://github.com/zeit/ms#readme", - "description": "Tiny milisecond conversion utility", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "nanomatch", - "url": "https://github.com/micromatch/nanomatch", - "description": "Fast, minimal glob matcher for node.js. Similar to micromatch, minimatch and multimatch, but complete Bash 4.3 wildcard support only (no support for exglobs, posix brackets or braces)", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" - } - ], - "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" - }, - "dependency": { - "name": "normalize-package-data", - "url": "https://github.com/npm/normalize-package-data#readme", - "description": "Normalizes data that can be found in package.json files.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "normalize.css", - "url": "https://necolas.github.io/normalize.css", - "description": "A modern alternative to CSS resets", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "npm-run-path", - "url": "https://github.com/sindresorhus/npm-run-path#readme", - "description": "Get your PATH prepended with locally installed binaries", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "number-is-nan", - "url": "https://github.com/sindresorhus/number-is-nan#readme", - "description": "ES2015 Number.isNaN() ponyfill", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "nwsapi", - "url": "http://javascript.nwbox.com/nwsapi/", - "description": "Fast CSS Selectors API Engine", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - } - ], - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "nyc", - "url": "https://github.com/istanbuljs/nyc#readme", - "description": "the Istanbul command line interface", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" - } - ], - "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" - }, - "dependency": { - "name": "oauth-sign", - "url": "https://github.com/mikeal/oauth-sign#readme", - "description": "OAuth 1 signing. Formerly a vendor lib in mikeal/request, now a standalone module.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "object-assign", - "url": "https://github.com/sindresorhus/object-assign#readme", - "description": "ES2015 `Object.assign()` ponyfill", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "object-copy", - "url": "https://github.com/jonschlinkert/object-copy", - "description": "Copy static properties, prototype properties, and descriptors from one object to another.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "object-visit", - "url": "https://github.com/jonschlinkert/object-visit", - "description": "Call a specified method on each value in the given object.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "object.pick", - "url": "https://github.com/jonschlinkert/object.pick", - "description": "Returns a filtered copy of an object with only the specified keys, similar to `_.pick` from lodash / underscore.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - } - ], - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "once", - "url": "https://github.com/isaacs/once#readme", - "description": "Run a function exactly one time", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT/X11", - "url": "" - } - ], - "license": { - "name": "MIT/X11" - }, - "dependency": { - "name": "optimist", - "url": "https://github.com/substack/node-optimist#readme", - "description": "Light-weight option parsing with an argv hash. No optstrings attached.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "optionator", - "url": "https://github.com/gkz/optionator", - "description": "option parsing and help generation", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "os-homedir", - "url": "https://github.com/sindresorhus/os-homedir#readme", - "description": "Node.js 4 `os.homedir()` ponyfill", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "os-locale", - "url": "https://github.com/sindresorhus/os-locale#readme", - "description": "Get the system locale", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "p-finally", - "url": "https://github.com/sindresorhus/p-finally#readme", - "description": "`Promise#finally()` ponyfill - Invoked when the promise is settled regardless of outcome", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "p-limit", - "url": "https://github.com/sindresorhus/p-limit#readme", - "description": "Run multiple promise-returning & async functions with limited concurrency", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "p-locate", - "url": "https://github.com/sindresorhus/p-locate#readme", - "description": "Get the first fulfilled promise that satisfies the provided testing function", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "p-try", - "url": "https://github.com/sindresorhus/p-try#readme", - "description": "`Promise#try()` ponyfill - Starts a promise chain", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "parse-json", - "url": "https://github.com/sindresorhus/parse-json#readme", - "description": "Parse JSON with more helpful errors", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "parse5", - "url": "https://github.com/inikulin/parse5", - "description": "HTML parsing/serialization toolset for Node.js. WHATWG HTML Living Standard (aka HTML5)-compliant.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "pascalcase", - "url": "https://github.com/jonschlinkert/pascalcase", - "description": "Convert a string to pascal-case.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "path-exists", - "url": "https://github.com/sindresorhus/path-exists#readme", - "description": "Check if a path exists", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "path-exists", - "url": "https://github.com/sindresorhus/path-exists#readme", - "description": "Check if a path exists", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "path-is-absolute", - "url": "https://github.com/sindresorhus/path-is-absolute#readme", - "description": "Node.js 0.12 path.isAbsolute() ponyfill", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "path-key", - "url": "https://github.com/sindresorhus/path-key#readme", - "description": "Get the PATH environment variable key cross-platform", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "path-parse", - "url": "https://github.com/jbgutierrez/path-parse#readme", - "description": "Node.js path.parse() ponyfill", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "path-type", - "url": "https://github.com/sindresorhus/path-type#readme", - "description": "Check if a path is a file, directory, or symlink", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "performance-now", - "url": "https://github.com/braveg1rl/performance-now", - "description": "Implements performance.now (based on process.hrtime).", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "pify", - "url": "https://github.com/sindresorhus/pify#readme", - "description": "Promisify a callback-style function", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "pinkie", - "url": "https://github.com/floatdrop/pinkie#readme", - "description": "Itty bitty little widdle twinkie pinkie ES2015 Promise implementation", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "pinkie-promise", - "url": "https://github.com/floatdrop/pinkie-promise#readme", - "description": "ES2015 Promise ponyfill", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "pkg-dir", - "url": "https://github.com/sindresorhus/pkg-dir#readme", - "description": "Find the root directory of a npm package", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "pn", - "url": "https://github.com/cscott/node-pn#readme", - "description": "Promisify the node standard library.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "posix-character-classes", - "url": "https://github.com/jonschlinkert/posix-character-classes", - "description": "POSIX character classes for creating regular expressions.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "prelude-ls", - "url": "http://preludels.com", - "description": "prelude.ls is a functionally oriented utility library. It is powerful and flexible. Almost all of its functions are curried. It is written in, and is the recommended base library for, LiveScript.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - } - ], - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "pseudomap", - "url": "https://github.com/isaacs/pseudomap#readme", - "description": "A thing that is a lot like ES6 `Map`, but without iterators, for use in environments where `for..of` syntax and `Map` are not available.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "psl", - "url": "https://github.com/lupomontero/psl#readme", - "description": "Domain name parser based on the Public Suffix List", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "punycode", - "url": "https://mths.be/punycode", - "description": "A robust Punycode converter that fully complies to RFC 3492 and RFC 5891, and works on nearly all JavaScript platforms.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "punycode", - "url": "https://mths.be/punycode", - "description": "A robust Punycode converter that fully complies to RFC 3492 and RFC 5891, and works on nearly all JavaScript platforms.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" - } - ], - "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" - }, - "dependency": { - "name": "qs", - "url": "https://github.com/ljharb/qs", - "description": "A querystring parser that supports nesting and arrays, with a depth limit", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "read-pkg", - "url": "https://github.com/sindresorhus/read-pkg#readme", - "description": "Read a package.json file", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "read-pkg-up", - "url": "https://github.com/sindresorhus/read-pkg-up#readme", - "description": "Read the closest package.json file", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "regenerator-runtime", - "description": "Runtime for Regenerator-compiled generator and async functions.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "regex-not", - "url": "https://github.com/jonschlinkert/regex-not", - "description": "Create a javascript regular expression for matching everything except for the given string.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "repeat-element", - "url": "https://github.com/jonschlinkert/repeat-element", - "description": "Create an array by repeating the given value n times.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "repeat-string", - "url": "https://github.com/jonschlinkert/repeat-string", - "description": "Repeat the given string n times. Fastest implementation for repeating a string.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "repeating", - "url": "https://github.com/sindresorhus/repeating#readme", - "description": "Repeat a string - fast", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" - } - ], - "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" - }, - "dependency": { - "name": "request", - "url": "https://github.com/request/request#readme", - "description": "Simplified HTTP request client.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - } - ], - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "request-promise-core", - "url": "https://github.com/request/promise-core#readme", - "description": "Core Promise support implementation for the simplified HTTP request client 'request'.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - } - ], - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "request-promise-native", - "url": "https://github.com/request/request-promise-native#readme", - "description": "The simplified HTTP request client 'request' with Promise support. Powered by native ES6 promises.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "require-directory", - "url": "https://github.com/troygoode/node-require-directory/", - "description": "Recursively iterates over specified directory, require()'ing each file, and returning a nested hash structure containing those modules.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - } - ], - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "require-main-filename", - "url": "https://github.com/yargs/require-main-filename#readme", - "description": "shim for require.main.filename() that works in as many environments as possible", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "resolve-from", - "url": "https://github.com/sindresorhus/resolve-from#readme", - "description": "Resolve the path of a module like require.resolve() but from a given path", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "resolve-url", - "url": "https://github.com/lydell/resolve-url#readme", - "description": "Like Node.js’ `path.resolve`/`url.resolve` for the browser.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "ret", - "url": "https://github.com/fent/ret.js#readme", - "description": "Tokenizes a string that represents a regular expression.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "right-align", - "url": "https://github.com/jonschlinkert/right-align", - "description": "Right-align the text in a string.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - } - ], - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "rimraf", - "url": "https://github.com/isaacs/rimraf#readme", - "description": "A deep deletion module for node (like `rm -rf`)", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "safe-buffer", - "url": "https://github.com/feross/safe-buffer", - "description": "Safer Node.js Buffer API", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "safe-regex", - "url": "https://github.com/substack/safe-regex", - "description": "detect possibly catastrophic, exponential-time regular expressions", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "safer-buffer", - "url": "https://github.com/ChALkeR/safer-buffer#readme", - "description": "Modern Buffer API polyfill without footguns", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - } - ], - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "sax", - "url": "https://github.com/isaacs/sax-js#readme", - "description": "An evented streaming XML parser in JavaScript", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - } - ], - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "semver", - "url": "https://github.com/npm/node-semver#readme", - "description": "The semantic version parser used by npm.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - } - ], - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "set-blocking", - "url": "https://github.com/yargs/set-blocking#readme", - "description": "set blocking stdio and stderr ensuring that terminal output does not truncate", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "set-value", - "url": "https://github.com/jonschlinkert/set-value", - "description": "Create nested values and any intermediaries using dot notation (`'a.b.c'`) paths.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "set-value", - "url": "https://github.com/jonschlinkert/set-value", - "description": "Create nested values and any intermediaries using dot notation (`'a.b.c'`) paths.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "shebang-command", - "url": "https://github.com/kevva/shebang-command#readme", - "description": "Get the command from a shebang", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "shebang-regex", - "url": "https://github.com/sindresorhus/shebang-regex#readme", - "description": "Regular expression for matching a shebang", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - } - ], - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "signal-exit", - "url": "https://github.com/tapjs/signal-exit", - "description": "when you want to fire an event no matter how a process exits.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - } - ], - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "slide", - "url": "https://github.com/isaacs/slide-flow-control#readme", - "description": "A flow control lib small enough to fit on in a slide presentation. Derived live at Oak.JS", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "snapdragon", - "url": "https://github.com/jonschlinkert/snapdragon", - "description": "Fast, pluggable and easy-to-use parser-renderer factory.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "snapdragon-node", - "url": "https://github.com/jonschlinkert/snapdragon-node", - "description": "Snapdragon utility for creating a new AST node in custom code, such as plugins.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "snapdragon-util", - "url": "https://github.com/jonschlinkert/snapdragon-util", - "description": "Utilities for the snapdragon parser/compiler.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" - } - ], - "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" - }, - "dependency": { - "name": "source-map", - "url": "https://github.com/mozilla/source-map", - "description": "Generates and consumes source maps", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" - } - ], - "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" - }, - "dependency": { - "name": "source-map", - "url": "https://github.com/mozilla/source-map", - "description": "Generates and consumes source maps", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" - } - ], - "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" - }, - "dependency": { - "name": "source-map", - "url": "https://github.com/mozilla/source-map", - "description": "Generates and consumes source maps", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "source-map-resolve", - "url": "https://github.com/lydell/source-map-resolve#readme", - "description": "Resolve the source map and/or sources for a generated file.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "source-map-url", - "url": "https://github.com/lydell/source-map-url#readme", - "description": "Tools for working with sourceMappingURL comments.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - } - ], - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "spawn-wrap", - "url": "https://github.com/isaacs/spawn-wrap#readme", - "description": "Wrap all spawned Node.js child processes by adding environs and arguments ahead of the main JavaScript file argument.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" - } - ], - "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" - }, - "dependency": { - "name": "spdx-correct", - "url": "https://github.com/jslicense/spdx-correct.js#readme", - "description": "correct invalid SPDX expressions", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "CC-BY-3.0", - "url": "" - } - ], - "license": { - "name": "CC-BY-3.0" - }, - "dependency": { - "name": "spdx-exceptions", - "url": "https://github.com/kemitchell/spdx-exceptions.json#readme", - "description": "list of SPDX standard license exceptions", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "spdx-expression-parse", - "url": "https://github.com/jslicense/spdx-expression-parse.js#readme", - "description": "parse SPDX license expressions", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "CC0-1.0", - "url": "" - } - ], - "license": { - "name": "CC0-1.0" - }, - "dependency": { - "name": "spdx-license-ids", - "url": "https://github.com/shinnn/spdx-license-ids#readme", - "description": "A list of SPDX license identifiers", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "split-string", - "url": "https://github.com/jonschlinkert/split-string", - "description": "Split a string on a character except when the character is escaped.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "sshpk", - "url": "https://github.com/arekinath/node-sshpk#readme", - "description": "A library for finding and using SSH public keys", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "static-extend", - "url": "https://github.com/jonschlinkert/static-extend", - "description": "Adds a static `extend` method to a class, to simplify inheritance. Extends the static properties, prototype properties, and descriptors from a `Parent` constructor onto `Child` constructors.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - } - ], - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "stealthy-require", - "url": "https://github.com/analog-nico/stealthy-require#readme", - "description": "The closest you can get to require something with bypassing the require cache", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "string-width", - "url": "https://github.com/sindresorhus/string-width#readme", - "description": "Get the visual width of a string - the number of columns required to display it", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "string-width", - "url": "https://github.com/sindresorhus/string-width#readme", - "description": "Get the visual width of a string - the number of columns required to display it", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "strip-ansi", - "url": "https://github.com/chalk/strip-ansi#readme", - "description": "Strip ANSI escape codes", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "strip-ansi", - "url": "https://github.com/chalk/strip-ansi#readme", - "description": "Strip ANSI escape codes", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "strip-bom", - "url": "https://github.com/sindresorhus/strip-bom#readme", - "description": "Strip UTF-8 byte order mark (BOM) from a string/buffer", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "strip-eof", - "url": "https://github.com/sindresorhus/strip-eof#readme", - "description": "Strip the End-Of-File (EOF) character from a string/buffer", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "supports-color", - "url": "https://github.com/chalk/supports-color#readme", - "description": "Detect whether a terminal supports color", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "supports-color", - "url": "https://github.com/chalk/supports-color#readme", - "description": "Detect whether a terminal supports color", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "symbol-tree", - "url": "https://github.com/jsdom/js-symbol-tree#symbol-tree", - "description": "Turn any collection of objects into its own efficient tree or linked list using Symbol", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - } - ], - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "test-exclude", - "url": "https://github.com/istanbuljs/istanbuljs#readme", - "description": "test for inclusion or exclusion of paths using pkg-conf and globs", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "to-fast-properties", - "url": "https://github.com/sindresorhus/to-fast-properties#readme", - "description": "Force V8 to use fast properties for an object", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "to-object-path", - "url": "https://github.com/jonschlinkert/to-object-path", - "description": "Create an object path from a list or array of strings.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "to-regex", - "url": "https://github.com/jonschlinkert/to-regex", - "description": "Generate a regex from a string or array of strings.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "to-regex-range", - "url": "https://github.com/micromatch/to-regex-range", - "description": "Pass two numbers, get a regex-compatible source string for matching ranges. Validated against more than 2.78 million test assertions.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" - } - ], - "license": { - "name": "New BSD", - "url": "http://opensource.org/licenses/BSD-3-Clause" - }, - "dependency": { - "name": "tough-cookie", - "url": "https://github.com/salesforce/tough-cookie", - "description": "RFC6265 Cookies and Cookie Jar for node.js", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "tr46", - "url": "https://github.com/Sebmaster/tr46.js#readme", - "description": "An implementation of the Unicode TR46 spec", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "trim-right", - "url": "https://github.com/sindresorhus/trim-right#readme", - "description": "Similar to String#trim() but removes only whitespace on the right", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" - } - ], - "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" - }, - "dependency": { - "name": "tunnel-agent", - "url": "https://github.com/mikeal/tunnel-agent#readme", - "description": "HTTP proxy tunneling agent. Formerly part of mikeal/request, now a standalone module.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "Unlicense", - "url": "" - } - ], - "license": { - "name": "Unlicense" - }, - "dependency": { - "name": "tweetnacl", - "url": "https://tweetnacl.js.org", - "description": "Port of TweetNaCl cryptographic library to JavaScript", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "type-check", - "url": "https://github.com/gkz/type-check", - "description": "type-check allows you to check the types of JavaScript values at runtime with a Haskell like type syntax.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" - } - ], - "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" - }, - "dependency": { - "name": "uglify-js", - "url": "http://lisperator.net/uglifyjs", - "description": "JavaScript parser, mangler/compressor and beautifier toolkit", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "uglify-to-browserify", - "url": "https://github.com/ForbesLindesay/uglify-to-browserify#readme", - "description": "A transform to make UglifyJS work in browserify.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "union-value", - "url": "https://github.com/jonschlinkert/union-value", - "description": "Set an array of unique values as the property of an object. Supports setting deeply nested properties using using object-paths/dot notation.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "unset-value", - "url": "https://github.com/jonschlinkert/unset-value", - "description": "Delete nested properties from an object using dot notation.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" - } - ], - "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" - }, - "dependency": { - "name": "uri-js", - "url": "https://github.com/garycourt/uri-js", - "description": "An RFC 3986/3987 compliant, scheme extendable URI/IRI parsing/validating/resolving library for JavaScript.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "urix", - "url": "https://github.com/lydell/urix#readme", - "description": "Makes Windows-style paths more unix and URI friendly.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "use", - "url": "https://github.com/jonschlinkert/use", - "description": "Easily add plugin support to your node.js application.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "uuid", - "url": "https://github.com/kelektiv/node-uuid#readme", - "description": "RFC4122 (v1, v4, and v5) UUIDs", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" - } - ], - "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" - }, - "dependency": { - "name": "validate-npm-package-license", - "url": "https://github.com/kemitchell/validate-npm-package-license.js#readme", - "description": "Give me a string and I'll tell you if it's a valid npm package license string", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "verror", - "url": "https://github.com/davepacheco/node-verror#readme", - "description": "richer JavaScript errors", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "w3c-hr-time", - "url": "https://github.com/jsdom/w3c-hr-time#readme", - "description": "An implementation of the W3C High Resolution Time Level 2 specification.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" - } - ], - "license": { - "name": "Simplified BSD", - "url": "http://opensource.org/licenses/bsd-license" - }, - "dependency": { - "name": "webidl-conversions", - "url": "https://github.com/jsdom/webidl-conversions#readme", - "description": "Implements the WebIDL algorithms for converting to and from JavaScript values", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "whatwg-encoding", - "url": "https://github.com/jsdom/whatwg-encoding#readme", - "description": "Decode strings according to the WHATWG Encoding Standard", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "whatwg-mimetype", - "url": "https://github.com/jsdom/whatwg-mimetype#readme", - "description": "Parses, serializes, and manipulates MIME types, according to the WHATWG MIME Sniffing Standard", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "whatwg-url", - "url": "https://github.com/jsdom/whatwg-url#readme", - "description": "An implementation of the WHATWG URL Standard's URL API and parsing machinery", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "whatwg-url", - "url": "https://github.com/jsdom/whatwg-url#readme", - "description": "An implementation of the WHATWG URL Standard's URL API and parsing machinery", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - } - ], - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "which", - "url": "https://github.com/isaacs/node-which#readme", - "description": "Like which(1) unix command. Find the first instance of an executable in the PATH.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - } - ], - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "which-module", - "url": "https://github.com/nexdrew/which-module#readme", - "description": "Find the module object for something that was require()d", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "window-size", - "url": "https://github.com/jonschlinkert/window-size", - "description": "Reliable way to to get the height and width of the terminal/console in a node.js environment.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "word-wrap", - "url": "https://github.com/jonschlinkert/word-wrap", - "description": "Wrap words to a specified length.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT/X11", - "url": "" - } - ], - "license": { - "name": "MIT/X11" - }, - "dependency": { - "name": "wordwrap", - "url": "https://github.com/substack/node-wordwrap#readme", - "description": "Wrap those words. Show them at what columns to start and stop.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "wordwrap", - "url": "https://github.com/substack/node-wordwrap#readme", - "description": "Wrap those words. Show them at what columns to start and stop.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "wrap-ansi", - "url": "https://github.com/chalk/wrap-ansi#readme", - "description": "Wordwrap a string with ANSI escape codes", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - } - ], - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "wrappy", - "url": "https://github.com/npm/wrappy", - "description": "Callback wrapping utility", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - } - ], - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "write-file-atomic", - "url": "https://github.com/iarna/write-file-atomic", - "description": "Write files in an atomic fashion w/configurable ownership", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "ws", - "url": "https://github.com/websockets/ws", - "description": "Simple to use, blazing fast and thoroughly tested websocket client and server for Node.js", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" - } - ], - "license": { - "name": "Apache 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" - }, - "dependency": { - "name": "xml-name-validator", - "url": "https://github.com/jsdom/xml-name-validator#readme", - "description": "Validates whether a string matches the production for an XML name or qualified name", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - } - ], - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "y18n", - "url": "https://github.com/yargs/y18n", - "description": "the bare-bones internationalization library used by yargs", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - } - ], - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "yallist", - "url": "https://github.com/isaacs/yallist#readme", - "description": "Yet Another Linked List", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "yargs", - "url": "http://yargs.js.org/", - "description": "yargs the modern, pirate-themed, successor to optimist.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - } - ], - "license": { - "name": "MIT", - "url": "http://opensource.org/licenses/mit-license" - }, - "dependency": { - "name": "yargs", - "url": "https://github.com/bcoe/yargs#readme", - "description": "Light-weight option parsing with an argv hash. No optstrings attached.", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - } - ], - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "yargs-parser", - "url": "https://github.com/yargs/yargs-parser#readme", - "description": "the mighty option parser used by yargs", - "pathes": [ - "." - ] - } - }, - { - "licenses": [ - { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - } - ], - "license": { - "name": "ISC", - "url": "http://en.wikipedia.org/wiki/ISC_license" - }, - "dependency": { - "name": "yargs-parser", - "url": "https://github.com/yargs/yargs-parser#readme", - "description": "the mighty option parser used by yargs", + "name": "normalize.css", + "url": "https://necolas.github.io/normalize.css", + "description": "A modern alternative to CSS resets", "pathes": [ "." ] } } ] -} +} \ No newline at end of file diff --git a/spec/fixtures/expected/js/npm/v2.0.json b/spec/fixtures/expected/js/npm/v2.0.json index 76b97fb..dcba5ef 100644 --- a/spec/fixtures/expected/js/npm/v2.0.json +++ b/spec/fixtures/expected/js/npm/v2.0.json @@ -5,86 +5,20 @@ "id": "MIT", "name": "MIT License", "url": "https://opensource.org/licenses/MIT", - "count": 274 - }, - { - "id": "ISC", - "name": "ISC License", - "url": "https://opensource.org/licenses/ISC", - "count": 39 + "count": 3 }, { "id": "BSD-3-Clause", "name": "BSD 3-Clause \"New\" or \"Revised\" License", "url": "https://opensource.org/licenses/BSD-3-Clause", - "count": 15 - }, - { - "id": "Apache-2.0", - "name": "Apache License 2.0", - "url": "https://opensource.org/licenses/Apache-2.0", - "count": 10 - }, - { - "id": "BSD-2-Clause", - "name": "BSD 2-Clause \"Simplified\" License", - "url": "https://opensource.org/licenses/BSD-2-Clause", - "count": 9 - }, - { - "id": "BSD-4-Clause", - "name": "BSD 4-Clause \"Original\" or \"Old\" License", - "url": "http://directory.fsf.org/wiki/License:BSD_4Clause", "count": 2 - }, - { - "id": "(mit or apache-2.0)", - "name": "(MIT OR Apache-2.0)", - "url": "", - "count": 1 - }, - { - "id": "AFL-2.1", - "name": "Academic Free License v2.1", - "url": "http://opensource.linux-mirror.org/licenses/afl-2.1.txt", - "count": 1 - }, - { - "id": "bsd-3-clause or mit", - "name": "BSD-3-Clause OR MIT", - "url": "", - "count": 1 - }, - { - "id": "CC-BY-3.0", - "name": "Creative Commons Attribution 3.0 Unported", - "url": "https://creativecommons.org/licenses/by/3.0/legalcode", - "count": 1 - }, - { - "id": "CC0-1.0", - "name": "Creative Commons Zero v1.0 Universal", - "url": "https://creativecommons.org/publicdomain/zero/1.0/legalcode", - "count": 1 - }, - { - "id": "WTFPL", - "name": "Do What The F*ck You Want To Public License", - "url": "http://sam.zoy.org/wtfpl/COPYING", - "count": 1 - }, - { - "id": "Unlicense", - "name": "The Unlicense", - "url": "https://unlicense.org/", - "count": 1 } ], "dependencies": [ { - "name": "abab", - "url": "https://github.com/jsdom/abab#readme", - "description": "WHATWG spec-compliant implementations of window.atob and window.btoa.", + "name": "highlight.js", + "url": "https://highlightjs.org/", + "description": "Syntax highlighting with language autodetection.", "paths": [ "." ], @@ -93,317 +27,21 @@ ] }, { - "name": "acorn", - "url": "https://github.com/acornjs/acorn", - "description": "ECMAScript parser", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "acorn", - "url": "https://github.com/acornjs/acorn", - "description": "ECMAScript parser", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "acorn-globals", - "url": "https://github.com/ForbesLindesay/acorn-globals#readme", - "description": "Detect global variables in JavaScript using acorn", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "acorn-walk", - "url": "https://github.com/acornjs/acorn", - "description": "ECMAScript (ESTree) AST walker", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "ajv", - "url": "https://github.com/epoberezkin/ajv", - "description": "Another JSON Schema Validator", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "align-text", - "url": "https://github.com/jonschlinkert/align-text", - "description": "Align the text in a string.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "amdefine", - "url": "http://github.com/jrburke/amdefine", - "description": "Provide AMD's define() API for declaring modules in the AMD format", - "paths": [ - "." - ], - "licenses": [ - "bsd-3-clause or mit" - ] - }, - { - "name": "ansi-regex", - "url": "https://github.com/chalk/ansi-regex#readme", - "description": "Regular expression for matching ANSI escape codes", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "ansi-regex", - "url": "https://github.com/chalk/ansi-regex#readme", - "description": "Regular expression for matching ANSI escape codes", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "ansi-styles", - "url": "https://github.com/chalk/ansi-styles#readme", - "description": "ANSI escape codes for styling strings in the terminal", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "append-transform", - "url": "https://github.com/jamestalmage/append-transform#readme", - "description": "Install a transform to `require.extensions` that always runs last, even if additional extensions are added later.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "archy", - "url": "https://github.com/substack/node-archy#readme", - "description": "render nested hierarchies `npm ls` style with unicode pipes", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "arr-diff", - "url": "https://github.com/jonschlinkert/arr-diff", - "description": "Returns an array with only the unique values from the first array, by excluding all values from additional arrays using strict equality for comparisons.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "arr-flatten", - "url": "https://github.com/jonschlinkert/arr-flatten", - "description": "Recursively flatten an array or arrays.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "arr-union", - "url": "https://github.com/jonschlinkert/arr-union", - "description": "Combines a list of arrays, returning a single array with unique values, using strict equality for comparisons.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "array-equal", - "url": "https://github.com/component/array-equal#readme", - "description": "check if two arrays are equal", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "array-unique", - "url": "https://github.com/jonschlinkert/array-unique", - "description": "Remove duplicate values from an array. Fastest ES5 implementation.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "arrify", - "url": "https://github.com/sindresorhus/arrify#readme", - "description": "Convert a value to an array", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "asn1", - "url": "https://github.com/joyent/node-asn1#readme", - "description": "Contains parsers and serializers for ASN.1 (currently BER only)", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "assert-plus", - "url": "https://github.com/mcavage/node-assert-plus#readme", - "description": "Extra assertions on top of node's assert module", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "assign-symbols", - "url": "https://github.com/jonschlinkert/assign-symbols", - "description": "Assign the enumerable es6 Symbol properties from an object (or objects) to the first object passed on the arguments. Can be used as a supplement to other extend, assign or merge methods as a polyfill for the Symbols part of the es6 Object.assign method.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "async", - "url": "https://github.com/caolan/async#readme", - "description": "Higher-order functions and common patterns for asynchronous code", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "async-limiter", - "url": "https://github.com/strml/async-limiter#readme", - "description": "asynchronous function queue with adjustable concurrency", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "asynckit", - "url": "https://github.com/alexindigo/asynckit#readme", - "description": "Minimal async jobs utility library, with streams support", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "atob", - "url": "https://git.coolaj86.com/coolaj86/atob.js.git", - "description": "atob for Node.JS and Linux / Mac / Windows CLI (it's a one-liner)", - "paths": [ - "." - ], - "licenses": [ - "(mit or apache-2.0)" - ] - }, - { - "name": "aws-sign2", - "url": "https://github.com/mikeal/aws-sign#readme", - "description": "AWS signing. Originally pulled from LearnBoost/knox, maintained as vendor in request, now a standalone module.", - "paths": [ - "." - ], - "licenses": [ - "Apache-2.0" - ] - }, - { - "name": "aws4", - "url": "https://github.com/mhart/aws4#readme", - "description": "Signs and prepares requests using AWS Signature Version 4", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "babel-code-frame", - "url": "https://babeljs.io/", - "description": "Generate errors that contain a code frame that point to source locations.", + "name": "js-npm", + "url": "", + "description": "Test project for js-npm", "paths": [ "." ], "licenses": [ + "BSD-3-Clause", "MIT" ] }, { - "name": "babel-generator", - "url": "https://babeljs.io/", - "description": "Turns an AST into code.", + "name": "moment", + "url": "http://momentjs.com", + "description": "Parse, validate, manipulate, and display dates", "paths": [ "." ], @@ -412,3550 +50,15 @@ ] }, { - "name": "babel-messages", - "url": "https://babeljs.io/", - "description": "Collection of debug messages used by Babel.", + "name": "normalize.css", + "url": "https://necolas.github.io/normalize.css", + "description": "A modern alternative to CSS resets", "paths": [ "." ], "licenses": [ "MIT" ] - }, - { - "name": "babel-runtime", - "url": "", - "description": "babel selfContained runtime", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "babel-template", - "url": "https://babeljs.io/", - "description": "Generate an AST from a string template.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "babel-traverse", - "url": "https://babeljs.io/", - "description": "The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "babel-types", - "url": "https://babeljs.io/", - "description": "Babel Types is a Lodash-esque utility library for AST nodes", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "babylon", - "url": "https://babeljs.io/", - "description": "A JavaScript parser", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "balanced-match", - "url": "https://github.com/juliangruber/balanced-match", - "description": "Match balanced character pairs, like \"{\" and \"}\"", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "base", - "url": "https://github.com/node-base/base", - "description": "base is the foundation for creating modular, unit testable and highly pluggable node.js applications, starting with a handful of common methods, like `set`, `get`, `del` and `use`.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "bcrypt-pbkdf", - "url": "https://github.com/joyent/node-bcrypt-pbkdf#readme", - "description": "Port of the OpenBSD bcrypt_pbkdf function to pure JS", - "paths": [ - "." - ], - "licenses": [ - "BSD-3-Clause" - ] - }, - { - "name": "brace-expansion", - "url": "https://github.com/juliangruber/brace-expansion", - "description": "Brace expansion as known from sh/bash", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "braces", - "url": "https://github.com/micromatch/braces", - "description": "Bash-like brace expansion, implemented in JavaScript. Safer than other brace expansion libs, with complete support for the Bash 4.3 braces specification, without sacrificing speed.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "browser-process-hrtime", - "url": "https://github.com/kumavis/browser-process-hrtime#readme", - "description": "Shim for process.hrtime in the browser", - "paths": [ - "." - ], - "licenses": [ - "BSD-2-Clause" - ] - }, - { - "name": "builtin-modules", - "url": "https://github.com/sindresorhus/builtin-modules#readme", - "description": "List of the Node.js builtin modules", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "cache-base", - "url": "https://github.com/jonschlinkert/cache-base", - "description": "Basic object cache with `get`, `set`, `del`, and `has` methods for node.js/javascript projects.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "caching-transform", - "url": "https://github.com/jamestalmage/caching-transform#readme", - "description": "Wraps a transform and provides caching", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "camelcase", - "url": "https://github.com/sindresorhus/camelcase#readme", - "description": "Convert a dash/dot/underscore/space separated string to camelCase: foo-bar → fooBar", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "camelcase", - "url": "https://github.com/sindresorhus/camelcase#readme", - "description": "Convert a dash/dot/underscore/space separated string to camelCase: foo-bar → fooBar", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "caseless", - "url": "https://github.com/mikeal/caseless#readme", - "description": "Caseless object set/get/has, very useful when working with HTTP headers.", - "paths": [ - "." - ], - "licenses": [ - "Apache-2.0" - ] - }, - { - "name": "center-align", - "url": "https://github.com/jonschlinkert/center-align", - "description": "Center-align the text in a string.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "chalk", - "url": "https://github.com/chalk/chalk#readme", - "description": "Terminal string styling done right. Much color.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "class-utils", - "url": "https://github.com/jonschlinkert/class-utils", - "description": "Utils for working with JavaScript classes and prototype methods.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "cliui", - "url": "https://github.com/bcoe/cliui#readme", - "description": "easily create complex multi-column command-line-interfaces", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] - }, - { - "name": "cliui", - "url": "https://github.com/yargs/cliui#readme", - "description": "easily create complex multi-column command-line-interfaces", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] - }, - { - "name": "code-point-at", - "url": "https://github.com/sindresorhus/code-point-at#readme", - "description": "ES2015 `String#codePointAt()` ponyfill", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "collection-visit", - "url": "https://github.com/jonschlinkert/collection-visit", - "description": "Visit a method over the items in an object, or map visit over the objects in an array.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "combined-stream", - "url": "https://github.com/felixge/node-combined-stream", - "description": "A stream that emits multiple other streams one after another.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "commondir", - "url": "https://github.com/substack/node-commondir#readme", - "description": "compute the closest common parent for file paths", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "component-emitter", - "url": "https://github.com/component/emitter#readme", - "description": "Event emitter", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "concat-map", - "url": "https://github.com/substack/node-concat-map#readme", - "description": "concatenative mapdashery", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "convert-source-map", - "url": "https://github.com/thlorenz/convert-source-map", - "description": "Converts a source-map from/to different formats and allows adding/changing properties.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "copy-descriptor", - "url": "https://github.com/jonschlinkert/copy-descriptor", - "description": "Copy a descriptor from object A to object B", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "core-js", - "url": "https://github.com/zloirock/core-js#readme", - "description": "Standard library", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "core-util-is", - "url": "https://github.com/isaacs/core-util-is#readme", - "description": "The `util.is*` functions introduced in Node v0.12.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "cross-spawn", - "url": "https://github.com/IndigoUnited/node-cross-spawn#readme", - "description": "Cross platform child_process#spawn and child_process#spawnSync", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "cross-spawn", - "url": "https://github.com/IndigoUnited/node-cross-spawn#readme", - "description": "Cross platform child_process#spawn and child_process#spawnSync", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "cssom", - "url": "https://github.com/NV/CSSOM#readme", - "description": "CSS Object Model implementation and CSS parser", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "cssstyle", - "url": "https://github.com/jsakas/CSSStyleDeclaration", - "description": "CSSStyleDeclaration Object Model implementation", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "dashdash", - "url": "https://github.com/trentm/node-dashdash#readme", - "description": "A light, featureful and explicit option parsing library.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "data-urls", - "url": "https://github.com/jsdom/data-urls#readme", - "description": "Parses data: URLs", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "debug", - "url": "https://github.com/visionmedia/debug#readme", - "description": "small debugging utility", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "debug", - "url": "https://github.com/visionmedia/debug#readme", - "description": "small debugging utility", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "debug-log", - "url": "https://github.com/sindresorhus/debug-log#readme", - "description": "Node.js 0.12 util.debuglog() ponyfill", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "decamelize", - "url": "https://github.com/sindresorhus/decamelize#readme", - "description": "Convert a camelized string into a lowercased one with a custom separator: unicornRainbow → unicorn_rainbow", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "decode-uri-component", - "url": "https://github.com/SamVerschueren/decode-uri-component#readme", - "description": "A better decodeURIComponent", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "deep-is", - "url": "https://github.com/thlorenz/deep-is#readme", - "description": "node's assert.deepEqual algorithm except for NaN being equal to NaN", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "default-require-extensions", - "url": "https://github.com/jamestalmage/default-require-extensions#readme", - "description": "Node's default require extensions as a separate module", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "define-property", - "url": "https://github.com/jonschlinkert/define-property", - "description": "Define a non-enumerable property on an object.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "define-property", - "url": "https://github.com/jonschlinkert/define-property", - "description": "Define a non-enumerable property on an object.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "define-property", - "url": "https://github.com/jonschlinkert/define-property", - "description": "Define a non-enumerable property on an object. Uses Reflect.defineProperty when available, otherwise Object.defineProperty.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "delayed-stream", - "url": "https://github.com/felixge/node-delayed-stream", - "description": "Buffers events from a stream until you are ready to handle them.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "detect-indent", - "url": "https://github.com/sindresorhus/detect-indent#readme", - "description": "Detect the indentation of code", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "domexception", - "url": "https://github.com/jsdom/domexception#readme", - "description": "An implementation of the DOMException class from browsers", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "ecc-jsbn", - "url": "https://github.com/quartzjer/ecc-jsbn", - "description": "ECC JS code based on JSBN", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "error-ex", - "url": "https://github.com/qix-/node-error-ex#readme", - "description": "Easy error subclassing and stack customization", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "escape-string-regexp", - "url": "https://github.com/sindresorhus/escape-string-regexp#readme", - "description": "Escape RegExp special characters", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "escodegen", - "url": "http://github.com/estools/escodegen", - "description": "ECMAScript code generator", - "paths": [ - "." - ], - "licenses": [ - "BSD-2-Clause" - ] - }, - { - "name": "esprima", - "url": "http://esprima.org", - "description": "ECMAScript parsing infrastructure for multipurpose analysis", - "paths": [ - "." - ], - "licenses": [ - "BSD-2-Clause" - ] - }, - { - "name": "estraverse", - "url": "https://github.com/estools/estraverse", - "description": "ECMAScript JS AST traversal functions", - "paths": [ - "." - ], - "licenses": [ - "BSD-2-Clause" - ] - }, - { - "name": "esutils", - "url": "https://github.com/estools/esutils", - "description": "utility box for ECMAScript language tools", - "paths": [ - "." - ], - "licenses": [ - "BSD-4-Clause" - ] - }, - { - "name": "esutils", - "url": "https://github.com/estools/esutils", - "description": "utility box for ECMAScript language tools", - "paths": [ - "." - ], - "licenses": [ - "BSD-2-Clause" - ] - }, - { - "name": "execa", - "url": "https://github.com/sindresorhus/execa#readme", - "description": "A better `child_process`", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "expand-brackets", - "url": "https://github.com/jonschlinkert/expand-brackets", - "description": "Expand POSIX bracket expressions (character classes) in glob patterns.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "extend", - "url": "https://github.com/justmoon/node-extend#readme", - "description": "Port of jQuery.extend for node.js and the browser", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "extend-shallow", - "url": "https://github.com/jonschlinkert/extend-shallow", - "description": "Extend an object with the properties of additional objects. node.js/javascript util.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "extend-shallow", - "url": "https://github.com/jonschlinkert/extend-shallow", - "description": "Extend an object with the properties of additional objects. node.js/javascript util.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "extglob", - "url": "https://github.com/micromatch/extglob", - "description": "Extended glob support for JavaScript. Adds (almost) the expressive power of regular expressions to glob patterns.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "extsprintf", - "url": "https://github.com/davepacheco/node-extsprintf#readme", - "description": "extended POSIX-style sprintf", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "fast-deep-equal", - "url": "https://github.com/epoberezkin/fast-deep-equal#readme", - "description": "Fast deep equal", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "fast-json-stable-stringify", - "url": "https://github.com/epoberezkin/fast-json-stable-stringify", - "description": "deterministic `JSON.stringify()` - a faster version of substack's json-stable-strigify without jsonify", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "fast-levenshtein", - "url": "https://github.com/hiddentao/fast-levenshtein#readme", - "description": "Efficient implementation of Levenshtein algorithm with locale-specific collator support.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "fill-range", - "url": "https://github.com/jonschlinkert/fill-range", - "description": "Fill in a range of numbers or letters, optionally passing an increment or `step` to use, or create a regex-compatible range with `options.toRegex`", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "find-cache-dir", - "url": "https://github.com/jamestalmage/find-cache-dir#readme", - "description": "My well-made module", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "find-up", - "url": "https://github.com/sindresorhus/find-up#readme", - "description": "Find a file by walking up parent directories", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "find-up", - "url": "https://github.com/sindresorhus/find-up#readme", - "description": "Find a file by walking up parent directories", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "for-in", - "url": "https://github.com/jonschlinkert/for-in", - "description": "Iterate over the own and inherited enumerable properties of an object, and return an object with properties that evaluate to true from the callback. Exit early by returning `false`. JavaScript/Node.js", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "foreground-child", - "url": "https://github.com/tapjs/foreground-child#readme", - "description": "Run a child as if it's the foreground process. Give it stdio. Exit when it exits.", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] - }, - { - "name": "forever-agent", - "url": "https://github.com/mikeal/forever-agent#readme", - "description": "HTTP Agent that keeps socket connections alive between keep-alive requests. Formerly part of mikeal/request, now a standalone module.", - "paths": [ - "." - ], - "licenses": [ - "Apache-2.0" - ] - }, - { - "name": "form-data", - "url": "https://github.com/form-data/form-data#readme", - "description": "A library to create readable \"multipart/form-data\" streams. Can be used to submit forms and file uploads to other web applications.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "fragment-cache", - "url": "https://github.com/jonschlinkert/fragment-cache", - "description": "A cache for managing namespaced sub-caches", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "fs.realpath", - "url": "https://github.com/isaacs/fs.realpath#readme", - "description": "Use node's fs.realpath, but fall back to the JS implementation if the native one fails", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] - }, - { - "name": "get-caller-file", - "url": "https://github.com/stefanpenner/get-caller-file#readme", - "description": "[![Build Status](https://travis-ci.org/ember-cli/ember-cli.svg?branch=master)](https://travis-ci.org/ember-cli/ember-cli) [![Build status](https://ci.appveyor.com/api/projects/status/ol2q94g1932cy14a/branch/master?svg=true)](https://ci.appveyor.com/project/embercli/get-caller-file/branch/master)", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] - }, - { - "name": "get-stream", - "url": "https://github.com/sindresorhus/get-stream#readme", - "description": "Get a stream as a string, buffer, or array", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "get-value", - "url": "https://github.com/jonschlinkert/get-value", - "description": "Use property paths (`a.b.c`) to get a nested value from an object.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "getpass", - "url": "https://github.com/arekinath/node-getpass#readme", - "description": "getpass for node.js", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "glob", - "url": "https://github.com/isaacs/node-glob#readme", - "description": "a little globber", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] - }, - { - "name": "globals", - "url": "https://github.com/sindresorhus/globals#readme", - "description": "Global identifiers from different JavaScript environments", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "graceful-fs", - "url": "https://github.com/isaacs/node-graceful-fs#readme", - "description": "A drop-in replacement for fs, making various improvements.", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] - }, - { - "name": "handlebars", - "url": "http://www.handlebarsjs.com/", - "description": "Handlebars provides the power necessary to let you build semantic templates effectively with no frustration", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "har-schema", - "url": "https://github.com/ahmadnassri/har-schema", - "description": "JSON Schema for HTTP Archive (HAR)", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] - }, - { - "name": "har-validator", - "url": "https://github.com/ahmadnassri/node-har-validator", - "description": "Extremely fast HTTP Archive (HAR) validator using JSON Schema", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "has-ansi", - "url": "https://github.com/sindresorhus/has-ansi#readme", - "description": "Check if a string has ANSI escape codes", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "has-flag", - "url": "https://github.com/sindresorhus/has-flag#readme", - "description": "Check if argv has a specific flag", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "has-value", - "url": "https://github.com/jonschlinkert/has-value", - "description": "Returns true if a value exists, false if empty. Works with deeply nested values using object paths.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "has-value", - "url": "https://github.com/jonschlinkert/has-value", - "description": "Returns true if a value exists, false if empty. Works with deeply nested values using object paths.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "has-values", - "url": "https://github.com/jonschlinkert/has-values", - "description": "Returns true if any values exist, false if empty. Works for booleans, functions, numbers, strings, nulls, objects and arrays. ", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "has-values", - "url": "https://github.com/jonschlinkert/has-values", - "description": "Returns true if any values exist, false if empty. Works for booleans, functions, numbers, strings, nulls, objects and arrays. ", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "highlight.js", - "url": "https://highlightjs.org/", - "description": "Syntax highlighting with language autodetection.", - "paths": [ - "." - ], - "licenses": [ - "BSD-3-Clause" - ] - }, - { - "name": "hosted-git-info", - "url": "https://github.com/npm/hosted-git-info", - "description": "Provides metadata and conversions from repository urls for Github, Bitbucket and Gitlab", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] - }, - { - "name": "html-encoding-sniffer", - "url": "https://github.com/jsdom/html-encoding-sniffer#readme", - "description": "Sniff the encoding from a HTML byte stream", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "http-signature", - "url": "https://github.com/joyent/node-http-signature/", - "description": "Reference implementation of Joyent's HTTP Signature scheme.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "iconv-lite", - "url": "https://github.com/ashtuchkin/iconv-lite", - "description": "Convert character encodings in pure javascript.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "imurmurhash", - "url": "https://github.com/jensyt/imurmurhash-js", - "description": "An incremental implementation of MurmurHash3", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "inflight", - "url": "https://github.com/isaacs/inflight", - "description": "Add callbacks to requests in flight to avoid async duplication", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] - }, - { - "name": "inherits", - "url": "https://github.com/isaacs/inherits#readme", - "description": "Browser-friendly inheritance fully compatible with standard node.js inherits()", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] - }, - { - "name": "invariant", - "url": "https://github.com/zertosh/invariant#readme", - "description": "invariant", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "invert-kv", - "url": "https://github.com/sindresorhus/invert-kv#readme", - "description": "Invert the key/value of an object. Example: {foo: 'bar'} → {bar: 'foo'}", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "is-accessor-descriptor", - "url": "https://github.com/jonschlinkert/is-accessor-descriptor", - "description": "Returns true if a value has the characteristics of a valid JavaScript accessor descriptor.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "is-accessor-descriptor", - "url": "https://github.com/jonschlinkert/is-accessor-descriptor", - "description": "Returns true if a value has the characteristics of a valid JavaScript accessor descriptor.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "is-arrayish", - "url": "https://github.com/qix-/node-is-arrayish#readme", - "description": "Determines if an object can be used as an array", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "is-buffer", - "url": "https://github.com/feross/is-buffer#readme", - "description": "Determine if an object is a Buffer", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "is-builtin-module", - "url": "https://github.com/sindresorhus/is-builtin-module#readme", - "description": "Check if a string matches the name of a Node.js builtin module", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "is-data-descriptor", - "url": "https://github.com/jonschlinkert/is-data-descriptor", - "description": "Returns true if a value has the characteristics of a valid JavaScript data descriptor.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "is-data-descriptor", - "url": "https://github.com/jonschlinkert/is-data-descriptor", - "description": "Returns true if a value has the characteristics of a valid JavaScript data descriptor.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "is-descriptor", - "url": "https://github.com/jonschlinkert/is-descriptor", - "description": "Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for data descriptors and accessor descriptors.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "is-descriptor", - "url": "https://github.com/jonschlinkert/is-descriptor", - "description": "Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for data descriptors and accessor descriptors.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "is-extendable", - "url": "https://github.com/jonschlinkert/is-extendable", - "description": "Returns true if a value is any of the object types: array, regexp, plain object, function or date. This is useful for determining if a value can be extended, e.g. \"can the value have keys?\"", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "is-extendable", - "url": "https://github.com/jonschlinkert/is-extendable", - "description": "Returns true if a value is a plain object, array or function.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "is-finite", - "url": "https://github.com/sindresorhus/is-finite#readme", - "description": "ES2015 Number.isFinite() ponyfill", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "is-fullwidth-code-point", - "url": "https://github.com/sindresorhus/is-fullwidth-code-point#readme", - "description": "Check if the character represented by a given Unicode code point is fullwidth", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "is-fullwidth-code-point", - "url": "https://github.com/sindresorhus/is-fullwidth-code-point#readme", - "description": "Check if the character represented by a given Unicode code point is fullwidth", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "is-number", - "url": "https://github.com/jonschlinkert/is-number", - "description": "Returns true if the value is a number. comprehensive tests.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "is-number", - "url": "https://github.com/jonschlinkert/is-number", - "description": "Returns true if the value is a number. comprehensive tests.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "is-odd", - "url": "https://github.com/jonschlinkert/is-odd", - "description": "Returns true if the given number is odd.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "is-plain-object", - "url": "https://github.com/jonschlinkert/is-plain-object", - "description": "Returns true if an object was created by the `Object` constructor.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "is-stream", - "url": "https://github.com/sindresorhus/is-stream#readme", - "description": "Check if something is a Node.js stream", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "is-typedarray", - "url": "https://github.com/hughsk/is-typedarray", - "description": "Detect whether or not an object is a Typed Array", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "is-utf8", - "url": "https://github.com/wayfind/is-utf8#readme", - "description": "Detect if a buffer is utf8 encoded.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "is-windows", - "url": "https://github.com/jonschlinkert/is-windows", - "description": "Returns true if the platform is windows. UMD module, works with node.js, commonjs, browser, AMD, electron, etc.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "isarray", - "url": "https://github.com/juliangruber/isarray", - "description": "Array#isArray for older browsers", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "isexe", - "url": "https://github.com/isaacs/isexe#readme", - "description": "Minimal module to check if a file is executable.", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] - }, - { - "name": "isobject", - "url": "https://github.com/jonschlinkert/isobject", - "description": "Returns true if the value is an object and not an array or null.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "isobject", - "url": "https://github.com/jonschlinkert/isobject", - "description": "Returns true if the value is an object and not an array or null.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "isstream", - "url": "https://github.com/rvagg/isstream", - "description": "Determine if an object is a Stream", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "istanbul-lib-coverage", - "url": "https://github.com/istanbuljs/istanbuljs", - "description": "Data library for istanbul coverage objects", - "paths": [ - "." - ], - "licenses": [ - "BSD-3-Clause" - ] - }, - { - "name": "istanbul-lib-hook", - "url": "https://github.com/istanbuljs/istanbuljs#readme", - "description": "Hooks for require, vm and script used in istanbul", - "paths": [ - "." - ], - "licenses": [ - "BSD-3-Clause" - ] - }, - { - "name": "istanbul-lib-instrument", - "url": "https://github.com/istanbuljs/istanbuljs", - "description": "Core istanbul API for JS code coverage", - "paths": [ - "." - ], - "licenses": [ - "BSD-3-Clause" - ] - }, - { - "name": "istanbul-lib-report", - "url": "https://github.com/istanbuljs/istanbuljs", - "description": "Base reporting library for istanbul", - "paths": [ - "." - ], - "licenses": [ - "BSD-3-Clause" - ] - }, - { - "name": "istanbul-lib-source-maps", - "url": "https://github.com/istanbuljs/istanbuljs#readme", - "description": "Source maps support for istanbul", - "paths": [ - "." - ], - "licenses": [ - "BSD-3-Clause" - ] - }, - { - "name": "istanbul-reports", - "url": "https://github.com/istanbuljs/istanbuljs", - "description": "istanbul reports", - "paths": [ - "." - ], - "licenses": [ - "BSD-3-Clause" - ] - }, - { - "name": "js-npm", - "url": "", - "description": "Test project for js-npm", - "paths": [ - "." - ], - "licenses": [ - "Apache-2.0", - "BSD-3-Clause", - "ISC", - "MIT" - ] - }, - { - "name": "js-tokens", - "url": "https://github.com/lydell/js-tokens#readme", - "description": "A regex that tokenizes JavaScript.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "jsbn", - "url": "https://github.com/andyperlitch/jsbn#readme", - "description": "The jsbn library is a fast, portable implementation of large-number math in pure JavaScript, enabling public-key crypto and other applications on desktop and mobile browsers.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "jsdom", - "url": "https://github.com/jsdom/jsdom#readme", - "description": "A JavaScript implementation of many web standards", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "jsesc", - "url": "https://mths.be/jsesc", - "description": "A JavaScript library for escaping JavaScript strings while generating the shortest possible valid output.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "json-schema", - "url": "https://github.com/kriszyp/json-schema#readme", - "description": "JSON Schema validation and specifications", - "paths": [ - "." - ], - "licenses": [ - "AFL-2.1", - "BSD-4-Clause" - ] - }, - { - "name": "json-schema-traverse", - "url": "https://github.com/epoberezkin/json-schema-traverse#readme", - "description": "Traverse JSON Schema passing each schema object to callback", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "json-stringify-safe", - "url": "https://github.com/isaacs/json-stringify-safe", - "description": "Like JSON.stringify, but doesn't blow up on circular refs.", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] - }, - { - "name": "jsprim", - "url": "https://github.com/joyent/node-jsprim#readme", - "description": "utilities for primitive JavaScript types", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "kind-of", - "url": "https://github.com/jonschlinkert/kind-of", - "description": "Get the native type of a value.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "kind-of", - "url": "https://github.com/jonschlinkert/kind-of", - "description": "Get the native type of a value.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "kind-of", - "url": "https://github.com/jonschlinkert/kind-of", - "description": "Get the native type of a value.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "kind-of", - "url": "https://github.com/jonschlinkert/kind-of", - "description": "Get the native type of a value.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "lazy-cache", - "url": "https://github.com/jonschlinkert/lazy-cache", - "description": "Cache requires to be lazy-loaded when needed.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "lcid", - "url": "https://github.com/sindresorhus/lcid#readme", - "description": "Mapping between standard locale identifiers and Windows locale identifiers (LCID)", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "left-pad", - "url": "https://github.com/stevemao/left-pad#readme", - "description": "String left pad", - "paths": [ - "." - ], - "licenses": [ - "WTFPL" - ] - }, - { - "name": "levn", - "url": "https://github.com/gkz/levn", - "description": "Light ECMAScript (JavaScript) Value Notation - human written, concise, typed, flexible", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "load-json-file", - "url": "https://github.com/sindresorhus/load-json-file#readme", - "description": "Read and parse a JSON file", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "locate-path", - "url": "https://github.com/sindresorhus/locate-path#readme", - "description": "Get the first path that exists on disk of multiple paths", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "lodash", - "url": "https://lodash.com/", - "description": "Lodash modular utilities.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "lodash", - "url": "https://lodash.com/", - "description": "Lodash modular utilities.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "lodash.sortby", - "url": "https://lodash.com/", - "description": "The lodash method `_.sortBy` exported as a module.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "longest", - "url": "https://github.com/jonschlinkert/longest", - "description": "Get the longest item in an array.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "loose-envify", - "url": "https://github.com/zertosh/loose-envify", - "description": "Fast (and loose) selective `process.env` replacer using js-tokens instead of an AST", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "lru-cache", - "url": "https://github.com/isaacs/node-lru-cache#readme", - "description": "A cache object that deletes the least-recently-used items.", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] - }, - { - "name": "map-cache", - "url": "https://github.com/jonschlinkert/map-cache", - "description": "Basic cache object for storing key-value pairs.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "map-visit", - "url": "https://github.com/jonschlinkert/map-visit", - "description": "Map `visit` over an array of objects.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "md5-hex", - "url": "https://github.com/sindresorhus/md5-hex#readme", - "description": "Create a MD5 hash with hex encoding", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "md5-o-matic", - "url": "https://github.com/trentmillar/md5-o-matic", - "description": "Fast and simple MD5 hashing utility with zero module dependencies. View MD5 Shootout results, http://jsperf.com/md5-shootout/39", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "mem", - "url": "https://github.com/sindresorhus/mem#readme", - "description": "Memoize functions - An optimization used to speed up consecutive function calls by caching the result of calls with identical input", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "merge-source-map", - "url": "https://github.com/keik/merge-source-map#readme", - "description": "Merge old source map and new source map in multi-transform flow", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "micromatch", - "url": "https://github.com/micromatch/micromatch", - "description": "Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "mime-db", - "url": "https://github.com/jshttp/mime-db#readme", - "description": "Media Type Database", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "mime-types", - "url": "https://github.com/jshttp/mime-types#readme", - "description": "The ultimate javascript content-type utility.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "mimic-fn", - "url": "https://github.com/sindresorhus/mimic-fn#readme", - "description": "Make a function mimic another one", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "minimatch", - "url": "https://github.com/isaacs/minimatch#readme", - "description": "a glob matcher in javascript", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] - }, - { - "name": "minimist", - "url": "https://github.com/substack/minimist", - "description": "parse argument options", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "mixin-deep", - "url": "https://github.com/jonschlinkert/mixin-deep", - "description": "Deeply mix the properties of objects into the first object. Like merge-deep, but doesn't clone.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "mkdirp", - "url": "https://github.com/substack/node-mkdirp#readme", - "description": "Recursively mkdir, like `mkdir -p`", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "moment", - "url": "http://momentjs.com", - "description": "Parse, validate, manipulate, and display dates", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "ms", - "url": "https://github.com/zeit/ms#readme", - "description": "Tiny milisecond conversion utility", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "nanomatch", - "url": "https://github.com/micromatch/nanomatch", - "description": "Fast, minimal glob matcher for node.js. Similar to micromatch, minimatch and multimatch, but complete Bash 4.3 wildcard support only (no support for exglobs, posix brackets or braces)", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "normalize-package-data", - "url": "https://github.com/npm/normalize-package-data#readme", - "description": "Normalizes data that can be found in package.json files.", - "paths": [ - "." - ], - "licenses": [ - "BSD-2-Clause" - ] - }, - { - "name": "normalize.css", - "url": "https://necolas.github.io/normalize.css", - "description": "A modern alternative to CSS resets", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "npm-run-path", - "url": "https://github.com/sindresorhus/npm-run-path#readme", - "description": "Get your PATH prepended with locally installed binaries", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "number-is-nan", - "url": "https://github.com/sindresorhus/number-is-nan#readme", - "description": "ES2015 Number.isNaN() ponyfill", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "nwsapi", - "url": "http://javascript.nwbox.com/nwsapi/", - "description": "Fast CSS Selectors API Engine", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "nyc", - "url": "https://github.com/istanbuljs/nyc#readme", - "description": "the Istanbul command line interface", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] - }, - { - "name": "oauth-sign", - "url": "https://github.com/mikeal/oauth-sign#readme", - "description": "OAuth 1 signing. Formerly a vendor lib in mikeal/request, now a standalone module.", - "paths": [ - "." - ], - "licenses": [ - "Apache-2.0" - ] - }, - { - "name": "object-assign", - "url": "https://github.com/sindresorhus/object-assign#readme", - "description": "ES2015 `Object.assign()` ponyfill", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "object-copy", - "url": "https://github.com/jonschlinkert/object-copy", - "description": "Copy static properties, prototype properties, and descriptors from one object to another.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "object-visit", - "url": "https://github.com/jonschlinkert/object-visit", - "description": "Call a specified method on each value in the given object.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "object.pick", - "url": "https://github.com/jonschlinkert/object.pick", - "description": "Returns a filtered copy of an object with only the specified keys, similar to `_.pick` from lodash / underscore.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "once", - "url": "https://github.com/isaacs/once#readme", - "description": "Run a function exactly one time", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] - }, - { - "name": "optimist", - "url": "https://github.com/substack/node-optimist#readme", - "description": "Light-weight option parsing with an argv hash. No optstrings attached.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "optionator", - "url": "https://github.com/gkz/optionator", - "description": "option parsing and help generation", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "os-homedir", - "url": "https://github.com/sindresorhus/os-homedir#readme", - "description": "Node.js 4 `os.homedir()` ponyfill", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "os-locale", - "url": "https://github.com/sindresorhus/os-locale#readme", - "description": "Get the system locale", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "p-finally", - "url": "https://github.com/sindresorhus/p-finally#readme", - "description": "`Promise#finally()` ponyfill - Invoked when the promise is settled regardless of outcome", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "p-limit", - "url": "https://github.com/sindresorhus/p-limit#readme", - "description": "Run multiple promise-returning & async functions with limited concurrency", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "p-locate", - "url": "https://github.com/sindresorhus/p-locate#readme", - "description": "Get the first fulfilled promise that satisfies the provided testing function", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "p-try", - "url": "https://github.com/sindresorhus/p-try#readme", - "description": "`Promise#try()` ponyfill - Starts a promise chain", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "parse-json", - "url": "https://github.com/sindresorhus/parse-json#readme", - "description": "Parse JSON with more helpful errors", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "parse5", - "url": "https://github.com/inikulin/parse5", - "description": "HTML parsing/serialization toolset for Node.js. WHATWG HTML Living Standard (aka HTML5)-compliant.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "pascalcase", - "url": "https://github.com/jonschlinkert/pascalcase", - "description": "Convert a string to pascal-case.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "path-exists", - "url": "https://github.com/sindresorhus/path-exists#readme", - "description": "Check if a path exists", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "path-exists", - "url": "https://github.com/sindresorhus/path-exists#readme", - "description": "Check if a path exists", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "path-is-absolute", - "url": "https://github.com/sindresorhus/path-is-absolute#readme", - "description": "Node.js 0.12 path.isAbsolute() ponyfill", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "path-key", - "url": "https://github.com/sindresorhus/path-key#readme", - "description": "Get the PATH environment variable key cross-platform", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "path-parse", - "url": "https://github.com/jbgutierrez/path-parse#readme", - "description": "Node.js path.parse() ponyfill", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "path-type", - "url": "https://github.com/sindresorhus/path-type#readme", - "description": "Check if a path is a file, directory, or symlink", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "performance-now", - "url": "https://github.com/braveg1rl/performance-now", - "description": "Implements performance.now (based on process.hrtime).", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "pify", - "url": "https://github.com/sindresorhus/pify#readme", - "description": "Promisify a callback-style function", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "pinkie", - "url": "https://github.com/floatdrop/pinkie#readme", - "description": "Itty bitty little widdle twinkie pinkie ES2015 Promise implementation", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "pinkie-promise", - "url": "https://github.com/floatdrop/pinkie-promise#readme", - "description": "ES2015 Promise ponyfill", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "pkg-dir", - "url": "https://github.com/sindresorhus/pkg-dir#readme", - "description": "Find the root directory of a npm package", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "pn", - "url": "https://github.com/cscott/node-pn#readme", - "description": "Promisify the node standard library.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "posix-character-classes", - "url": "https://github.com/jonschlinkert/posix-character-classes", - "description": "POSIX character classes for creating regular expressions.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "prelude-ls", - "url": "http://preludels.com", - "description": "prelude.ls is a functionally oriented utility library. It is powerful and flexible. Almost all of its functions are curried. It is written in, and is the recommended base library for, LiveScript.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "pseudomap", - "url": "https://github.com/isaacs/pseudomap#readme", - "description": "A thing that is a lot like ES6 `Map`, but without iterators, for use in environments where `for..of` syntax and `Map` are not available.", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] - }, - { - "name": "psl", - "url": "https://github.com/lupomontero/psl#readme", - "description": "Domain name parser based on the Public Suffix List", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "punycode", - "url": "https://mths.be/punycode", - "description": "A robust Punycode converter that fully complies to RFC 3492 and RFC 5891, and works on nearly all JavaScript platforms.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "punycode", - "url": "https://mths.be/punycode", - "description": "A robust Punycode converter that fully complies to RFC 3492 and RFC 5891, and works on nearly all JavaScript platforms.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "qs", - "url": "https://github.com/ljharb/qs", - "description": "A querystring parser that supports nesting and arrays, with a depth limit", - "paths": [ - "." - ], - "licenses": [ - "BSD-3-Clause" - ] - }, - { - "name": "read-pkg", - "url": "https://github.com/sindresorhus/read-pkg#readme", - "description": "Read a package.json file", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "read-pkg-up", - "url": "https://github.com/sindresorhus/read-pkg-up#readme", - "description": "Read the closest package.json file", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "regenerator-runtime", - "url": "", - "description": "Runtime for Regenerator-compiled generator and async functions.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "regex-not", - "url": "https://github.com/jonschlinkert/regex-not", - "description": "Create a javascript regular expression for matching everything except for the given string.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "repeat-element", - "url": "https://github.com/jonschlinkert/repeat-element", - "description": "Create an array by repeating the given value n times.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "repeat-string", - "url": "https://github.com/jonschlinkert/repeat-string", - "description": "Repeat the given string n times. Fastest implementation for repeating a string.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "repeating", - "url": "https://github.com/sindresorhus/repeating#readme", - "description": "Repeat a string - fast", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "request", - "url": "https://github.com/request/request#readme", - "description": "Simplified HTTP request client.", - "paths": [ - "." - ], - "licenses": [ - "Apache-2.0" - ] - }, - { - "name": "request-promise-core", - "url": "https://github.com/request/promise-core#readme", - "description": "Core Promise support implementation for the simplified HTTP request client 'request'.", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] - }, - { - "name": "request-promise-native", - "url": "https://github.com/request/request-promise-native#readme", - "description": "The simplified HTTP request client 'request' with Promise support. Powered by native ES6 promises.", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] - }, - { - "name": "require-directory", - "url": "https://github.com/troygoode/node-require-directory/", - "description": "Recursively iterates over specified directory, require()'ing each file, and returning a nested hash structure containing those modules.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "require-main-filename", - "url": "https://github.com/yargs/require-main-filename#readme", - "description": "shim for require.main.filename() that works in as many environments as possible", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] - }, - { - "name": "resolve-from", - "url": "https://github.com/sindresorhus/resolve-from#readme", - "description": "Resolve the path of a module like require.resolve() but from a given path", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "resolve-url", - "url": "https://github.com/lydell/resolve-url#readme", - "description": "Like Node.js’ `path.resolve`/`url.resolve` for the browser.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "ret", - "url": "https://github.com/fent/ret.js#readme", - "description": "Tokenizes a string that represents a regular expression.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "right-align", - "url": "https://github.com/jonschlinkert/right-align", - "description": "Right-align the text in a string.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "rimraf", - "url": "https://github.com/isaacs/rimraf#readme", - "description": "A deep deletion module for node (like `rm -rf`)", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] - }, - { - "name": "safe-buffer", - "url": "https://github.com/feross/safe-buffer", - "description": "Safer Node.js Buffer API", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "safe-regex", - "url": "https://github.com/substack/safe-regex", - "description": "detect possibly catastrophic, exponential-time regular expressions", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "safer-buffer", - "url": "https://github.com/ChALkeR/safer-buffer#readme", - "description": "Modern Buffer API polyfill without footguns", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "sax", - "url": "https://github.com/isaacs/sax-js#readme", - "description": "An evented streaming XML parser in JavaScript", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] - }, - { - "name": "semver", - "url": "https://github.com/npm/node-semver#readme", - "description": "The semantic version parser used by npm.", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] - }, - { - "name": "set-blocking", - "url": "https://github.com/yargs/set-blocking#readme", - "description": "set blocking stdio and stderr ensuring that terminal output does not truncate", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] - }, - { - "name": "set-value", - "url": "https://github.com/jonschlinkert/set-value", - "description": "Create nested values and any intermediaries using dot notation (`'a.b.c'`) paths.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "set-value", - "url": "https://github.com/jonschlinkert/set-value", - "description": "Create nested values and any intermediaries using dot notation (`'a.b.c'`) paths.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "shebang-command", - "url": "https://github.com/kevva/shebang-command#readme", - "description": "Get the command from a shebang", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "shebang-regex", - "url": "https://github.com/sindresorhus/shebang-regex#readme", - "description": "Regular expression for matching a shebang", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "signal-exit", - "url": "https://github.com/tapjs/signal-exit", - "description": "when you want to fire an event no matter how a process exits.", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] - }, - { - "name": "slide", - "url": "https://github.com/isaacs/slide-flow-control#readme", - "description": "A flow control lib small enough to fit on in a slide presentation. Derived live at Oak.JS", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] - }, - { - "name": "snapdragon", - "url": "https://github.com/jonschlinkert/snapdragon", - "description": "Fast, pluggable and easy-to-use parser-renderer factory.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "snapdragon-node", - "url": "https://github.com/jonschlinkert/snapdragon-node", - "description": "Snapdragon utility for creating a new AST node in custom code, such as plugins.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "snapdragon-util", - "url": "https://github.com/jonschlinkert/snapdragon-util", - "description": "Utilities for the snapdragon parser/compiler.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "source-map", - "url": "https://github.com/mozilla/source-map", - "description": "Generates and consumes source maps", - "paths": [ - "." - ], - "licenses": [ - "BSD-3-Clause" - ] - }, - { - "name": "source-map", - "url": "https://github.com/mozilla/source-map", - "description": "Generates and consumes source maps", - "paths": [ - "." - ], - "licenses": [ - "BSD-3-Clause" - ] - }, - { - "name": "source-map", - "url": "https://github.com/mozilla/source-map", - "description": "Generates and consumes source maps", - "paths": [ - "." - ], - "licenses": [ - "BSD-3-Clause" - ] - }, - { - "name": "source-map-resolve", - "url": "https://github.com/lydell/source-map-resolve#readme", - "description": "Resolve the source map and/or sources for a generated file.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "source-map-url", - "url": "https://github.com/lydell/source-map-url#readme", - "description": "Tools for working with sourceMappingURL comments.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "spawn-wrap", - "url": "https://github.com/isaacs/spawn-wrap#readme", - "description": "Wrap all spawned Node.js child processes by adding environs and arguments ahead of the main JavaScript file argument.", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] - }, - { - "name": "spdx-correct", - "url": "https://github.com/jslicense/spdx-correct.js#readme", - "description": "correct invalid SPDX expressions", - "paths": [ - "." - ], - "licenses": [ - "Apache-2.0" - ] - }, - { - "name": "spdx-exceptions", - "url": "https://github.com/kemitchell/spdx-exceptions.json#readme", - "description": "list of SPDX standard license exceptions", - "paths": [ - "." - ], - "licenses": [ - "CC-BY-3.0" - ] - }, - { - "name": "spdx-expression-parse", - "url": "https://github.com/jslicense/spdx-expression-parse.js#readme", - "description": "parse SPDX license expressions", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "spdx-license-ids", - "url": "https://github.com/shinnn/spdx-license-ids#readme", - "description": "A list of SPDX license identifiers", - "paths": [ - "." - ], - "licenses": [ - "CC0-1.0" - ] - }, - { - "name": "split-string", - "url": "https://github.com/jonschlinkert/split-string", - "description": "Split a string on a character except when the character is escaped.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "sshpk", - "url": "https://github.com/arekinath/node-sshpk#readme", - "description": "A library for finding and using SSH public keys", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "static-extend", - "url": "https://github.com/jonschlinkert/static-extend", - "description": "Adds a static `extend` method to a class, to simplify inheritance. Extends the static properties, prototype properties, and descriptors from a `Parent` constructor onto `Child` constructors.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "stealthy-require", - "url": "https://github.com/analog-nico/stealthy-require#readme", - "description": "The closest you can get to require something with bypassing the require cache", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] - }, - { - "name": "string-width", - "url": "https://github.com/sindresorhus/string-width#readme", - "description": "Get the visual width of a string - the number of columns required to display it", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "string-width", - "url": "https://github.com/sindresorhus/string-width#readme", - "description": "Get the visual width of a string - the number of columns required to display it", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "strip-ansi", - "url": "https://github.com/chalk/strip-ansi#readme", - "description": "Strip ANSI escape codes", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "strip-ansi", - "url": "https://github.com/chalk/strip-ansi#readme", - "description": "Strip ANSI escape codes", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "strip-bom", - "url": "https://github.com/sindresorhus/strip-bom#readme", - "description": "Strip UTF-8 byte order mark (BOM) from a string/buffer", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "strip-eof", - "url": "https://github.com/sindresorhus/strip-eof#readme", - "description": "Strip the End-Of-File (EOF) character from a string/buffer", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "supports-color", - "url": "https://github.com/chalk/supports-color#readme", - "description": "Detect whether a terminal supports color", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "supports-color", - "url": "https://github.com/chalk/supports-color#readme", - "description": "Detect whether a terminal supports color", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "symbol-tree", - "url": "https://github.com/jsdom/js-symbol-tree#symbol-tree", - "description": "Turn any collection of objects into its own efficient tree or linked list using Symbol", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "test-exclude", - "url": "https://github.com/istanbuljs/istanbuljs#readme", - "description": "test for inclusion or exclusion of paths using pkg-conf and globs", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] - }, - { - "name": "to-fast-properties", - "url": "https://github.com/sindresorhus/to-fast-properties#readme", - "description": "Force V8 to use fast properties for an object", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "to-object-path", - "url": "https://github.com/jonschlinkert/to-object-path", - "description": "Create an object path from a list or array of strings.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "to-regex", - "url": "https://github.com/jonschlinkert/to-regex", - "description": "Generate a regex from a string or array of strings.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "to-regex-range", - "url": "https://github.com/micromatch/to-regex-range", - "description": "Pass two numbers, get a regex-compatible source string for matching ranges. Validated against more than 2.78 million test assertions.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "tough-cookie", - "url": "https://github.com/salesforce/tough-cookie", - "description": "RFC6265 Cookies and Cookie Jar for node.js", - "paths": [ - "." - ], - "licenses": [ - "BSD-3-Clause" - ] - }, - { - "name": "tr46", - "url": "https://github.com/Sebmaster/tr46.js#readme", - "description": "An implementation of the Unicode TR46 spec", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "trim-right", - "url": "https://github.com/sindresorhus/trim-right#readme", - "description": "Similar to String#trim() but removes only whitespace on the right", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "tunnel-agent", - "url": "https://github.com/mikeal/tunnel-agent#readme", - "description": "HTTP proxy tunneling agent. Formerly part of mikeal/request, now a standalone module.", - "paths": [ - "." - ], - "licenses": [ - "Apache-2.0" - ] - }, - { - "name": "tweetnacl", - "url": "https://tweetnacl.js.org", - "description": "Port of TweetNaCl cryptographic library to JavaScript", - "paths": [ - "." - ], - "licenses": [ - "Unlicense" - ] - }, - { - "name": "type-check", - "url": "https://github.com/gkz/type-check", - "description": "type-check allows you to check the types of JavaScript values at runtime with a Haskell like type syntax.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "uglify-js", - "url": "http://lisperator.net/uglifyjs", - "description": "JavaScript parser, mangler/compressor and beautifier toolkit", - "paths": [ - "." - ], - "licenses": [ - "BSD-2-Clause" - ] - }, - { - "name": "uglify-to-browserify", - "url": "https://github.com/ForbesLindesay/uglify-to-browserify#readme", - "description": "A transform to make UglifyJS work in browserify.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "union-value", - "url": "https://github.com/jonschlinkert/union-value", - "description": "Set an array of unique values as the property of an object. Supports setting deeply nested properties using using object-paths/dot notation.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "unset-value", - "url": "https://github.com/jonschlinkert/unset-value", - "description": "Delete nested properties from an object using dot notation.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "uri-js", - "url": "https://github.com/garycourt/uri-js", - "description": "An RFC 3986/3987 compliant, scheme extendable URI/IRI parsing/validating/resolving library for JavaScript.", - "paths": [ - "." - ], - "licenses": [ - "BSD-2-Clause" - ] - }, - { - "name": "urix", - "url": "https://github.com/lydell/urix#readme", - "description": "Makes Windows-style paths more unix and URI friendly.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "use", - "url": "https://github.com/jonschlinkert/use", - "description": "Easily add plugin support to your node.js application.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "uuid", - "url": "https://github.com/kelektiv/node-uuid#readme", - "description": "RFC4122 (v1, v4, and v5) UUIDs", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "validate-npm-package-license", - "url": "https://github.com/kemitchell/validate-npm-package-license.js#readme", - "description": "Give me a string and I'll tell you if it's a valid npm package license string", - "paths": [ - "." - ], - "licenses": [ - "Apache-2.0" - ] - }, - { - "name": "verror", - "url": "https://github.com/davepacheco/node-verror#readme", - "description": "richer JavaScript errors", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "w3c-hr-time", - "url": "https://github.com/jsdom/w3c-hr-time#readme", - "description": "An implementation of the W3C High Resolution Time Level 2 specification.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "webidl-conversions", - "url": "https://github.com/jsdom/webidl-conversions#readme", - "description": "Implements the WebIDL algorithms for converting to and from JavaScript values", - "paths": [ - "." - ], - "licenses": [ - "BSD-2-Clause" - ] - }, - { - "name": "whatwg-encoding", - "url": "https://github.com/jsdom/whatwg-encoding#readme", - "description": "Decode strings according to the WHATWG Encoding Standard", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "whatwg-mimetype", - "url": "https://github.com/jsdom/whatwg-mimetype#readme", - "description": "Parses, serializes, and manipulates MIME types, according to the WHATWG MIME Sniffing Standard", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "whatwg-url", - "url": "https://github.com/jsdom/whatwg-url#readme", - "description": "An implementation of the WHATWG URL Standard's URL API and parsing machinery", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "whatwg-url", - "url": "https://github.com/jsdom/whatwg-url#readme", - "description": "An implementation of the WHATWG URL Standard's URL API and parsing machinery", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "which", - "url": "https://github.com/isaacs/node-which#readme", - "description": "Like which(1) unix command. Find the first instance of an executable in the PATH.", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] - }, - { - "name": "which-module", - "url": "https://github.com/nexdrew/which-module#readme", - "description": "Find the module object for something that was require()d", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] - }, - { - "name": "window-size", - "url": "https://github.com/jonschlinkert/window-size", - "description": "Reliable way to to get the height and width of the terminal/console in a node.js environment.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "word-wrap", - "url": "https://github.com/jonschlinkert/word-wrap", - "description": "Wrap words to a specified length.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "wordwrap", - "url": "https://github.com/substack/node-wordwrap#readme", - "description": "Wrap those words. Show them at what columns to start and stop.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "wordwrap", - "url": "https://github.com/substack/node-wordwrap#readme", - "description": "Wrap those words. Show them at what columns to start and stop.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "wrap-ansi", - "url": "https://github.com/chalk/wrap-ansi#readme", - "description": "Wordwrap a string with ANSI escape codes", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "wrappy", - "url": "https://github.com/npm/wrappy", - "description": "Callback wrapping utility", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] - }, - { - "name": "write-file-atomic", - "url": "https://github.com/iarna/write-file-atomic", - "description": "Write files in an atomic fashion w/configurable ownership", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] - }, - { - "name": "ws", - "url": "https://github.com/websockets/ws", - "description": "Simple to use, blazing fast and thoroughly tested websocket client and server for Node.js", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "xml-name-validator", - "url": "https://github.com/jsdom/xml-name-validator#readme", - "description": "Validates whether a string matches the production for an XML name or qualified name", - "paths": [ - "." - ], - "licenses": [ - "Apache-2.0" - ] - }, - { - "name": "y18n", - "url": "https://github.com/yargs/y18n", - "description": "the bare-bones internationalization library used by yargs", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] - }, - { - "name": "yallist", - "url": "https://github.com/isaacs/yallist#readme", - "description": "Yet Another Linked List", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] - }, - { - "name": "yargs", - "url": "http://yargs.js.org/", - "description": "yargs the modern, pirate-themed, successor to optimist.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "yargs", - "url": "https://github.com/bcoe/yargs#readme", - "description": "Light-weight option parsing with an argv hash. No optstrings attached.", - "paths": [ - "." - ], - "licenses": [ - "MIT" - ] - }, - { - "name": "yargs-parser", - "url": "https://github.com/yargs/yargs-parser#readme", - "description": "the mighty option parser used by yargs", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] - }, - { - "name": "yargs-parser", - "url": "https://github.com/yargs/yargs-parser#readme", - "description": "the mighty option parser used by yargs", - "paths": [ - "." - ], - "licenses": [ - "ISC" - ] } ] -} +} \ No newline at end of file diff --git a/spec/fixtures/js/single-declared-dependency/package-lock.json b/spec/fixtures/js/single-declared-dependency/package-lock.json new file mode 100644 index 0000000..6e369bd --- /dev/null +++ b/spec/fixtures/js/single-declared-dependency/package-lock.json @@ -0,0 +1,943 @@ +{ + "name": "example", + "version": "1.0.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "2md": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/2md/-/2md-0.0.4.tgz", + "integrity": "sha512-XIPdNjfEUTqNCOi4DwePfnepUQkAbtbXgJsu11Tthau/PWrWG+KRHFL/bTI3YhjBPHAwjyWHTUwSrwLg86M44A==", + "requires": { + "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": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.3.tgz", + "integrity": "sha512-tsFzPpcttalNjFBCFMqsKYQcWxxen1pgJR56by//QwvJc4/OUS3kPOOttx2tSIfjsylB0pYu7f5D3K1RCxUnUg==" + }, + "acorn": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.1.1.tgz", + "integrity": "sha512-add7dgA5ppRPxCFJoAGfMDi7PIBXq1RtGo7BhbLaxwrXPOmw8gq48Y9ozT01hUKy9byMjlR20EJhu5zlkErEkg==" + }, + "acorn-globals": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-4.3.4.tgz", + "integrity": "sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A==", + "requires": { + "acorn": "^6.0.1", + "acorn-walk": "^6.0.1" + }, + "dependencies": { + "acorn": { + "version": "6.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.1.tgz", + "integrity": "sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA==" + } + } + }, + "acorn-walk": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-6.2.0.tgz", + "integrity": "sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==" + }, + "ajv": { + "version": "6.12.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.2.tgz", + "integrity": "sha512-k+V+hzjm5q/Mr8ef/1Y9goCmlsK4I6Sm74teeyGvFk1XrOsbsKLjEdrvny42CZ+a8sXbk8KWpY/bDwS+FLL2UQ==", + "requires": { + "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": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "array-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-equal/-/array-equal-1.0.0.tgz", + "integrity": "sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM=" + }, + "asn1": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", + "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", + "requires": { + "safer-buffer": "~2.1.0" + } + }, + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" + }, + "aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" + }, + "aws4": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.9.1.tgz", + "integrity": "sha512-wMHVg2EOHaMRxbzgFJ9gtjOOCrI80OHLG14rxi28XwOW8ux6IiEbRCGGGqCtdAIg4FQCbW20k9RsT4y3gJlFug==" + }, + "bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", + "requires": { + "tweetnacl": "^0.14.3" + } + }, + "browser-process-hrtime": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", + "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==" + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + }, + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" + }, + "cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "requires": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + }, + "cssom": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", + "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==" + }, + "cssstyle": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.2.0.tgz", + "integrity": "sha512-sEb3XFPx3jNnCAMtqrXPDeSgQr+jojtCeNf8cvMNMh1cG970+lljssvQDzPq6lmmJu2Vhqood/gtEomBiHOGnA==", + "requires": { + "cssom": "~0.3.6" + }, + "dependencies": { + "cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" + } + } + }, + "dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "requires": { + "assert-plus": "^1.0.0" + } + }, + "data-urls": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-1.1.0.tgz", + "integrity": "sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ==", + "requires": { + "abab": "^2.0.0", + "whatwg-mimetype": "^2.2.0", + "whatwg-url": "^7.0.0" + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=" + }, + "deep-is": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", + "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=" + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" + }, + "domexception": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-1.0.1.tgz", + "integrity": "sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug==", + "requires": { + "webidl-conversions": "^4.0.2" + } + }, + "ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", + "requires": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" + }, + "escodegen": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.1.tgz", + "integrity": "sha512-Bmt7NcRySdIfNPfU2ZoXDrrXsG9ZjvDxcAlMfDUgRBjLOWTuIACXPBFJH7Z+cLb40JeQco5toikyc9t9P8E9SQ==", + "requires": { + "esprima": "^4.0.1", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1", + "source-map": "~0.6.1" + } + }, + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" + }, + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + }, + "extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" + }, + "fast-deep-equal": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz", + "integrity": "sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA==" + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=" + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "requires": { + "locate-path": "^3.0.0" + } + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" + }, + "form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + } + }, + "fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" + }, + "getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "requires": { + "assert-plus": "^1.0.0" + } + }, + "graceful-fs": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.3.tgz", + "integrity": "sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ==" + }, + "grapheme-splitter": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", + "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==" + }, + "har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=" + }, + "har-validator": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz", + "integrity": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==", + "requires": { + "ajv": "^6.5.5", + "har-schema": "^2.0.0" + } + }, + "html-encoding-sniffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz", + "integrity": "sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw==", + "requires": { + "whatwg-encoding": "^1.0.1" + } + }, + "http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "requires": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + } + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "ip-regex": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", + "integrity": "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=" + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" + }, + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" + }, + "jsdom": { + "version": "15.2.1", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-15.2.1.tgz", + "integrity": "sha512-fAl1W0/7T2G5vURSyxBzrJ1LSdQn6Tr5UX/xD4PXDx/PDgwygedfW6El/KIj3xJ7FU61TTYnc/l/B7P49Eqt6g==", + "requires": { + "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": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", + "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" + }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "jsprim": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", + "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + } + }, + "levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", + "requires": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "lodash": { + "version": "4.17.15", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz", + "integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==" + }, + "lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=" + }, + "mime-db": { + "version": "1.43.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.43.0.tgz", + "integrity": "sha512-+5dsGEEovYbT8UY9yD7eE4XTc4UwJ1jBYlgaQQF38ENsKR3wj/8q8RFZrF9WIZpB2V1ArTVFUva8sAul1NzRzQ==" + }, + "mime-types": { + "version": "2.1.26", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.26.tgz", + "integrity": "sha512-01paPWYgLrkqAyrlDorC1uDwl2p3qZT7yl806vW7DvDoxwXi46jsjFbg+WdwotBIk6/MbEhO/dh5aZ5sNj/dWQ==", + "requires": { + "mime-db": "1.43.0" + } + }, + "nwsapi": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz", + "integrity": "sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==" + }, + "oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" + }, + "optionator": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "requires": { + "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": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "requires": { + "p-limit": "^2.0.0" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" + }, + "parse5": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-5.1.0.tgz", + "integrity": "sha512-fxNG2sQjHvlVAYmzBZS9YlDp6PTSSDwa98vkD4QgVDDCAo84z5X1t5XyJQ62ImdLXx5NdIIfihey6xpum9/gRQ==" + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" + }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" + }, + "pn": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/pn/-/pn-1.1.0.tgz", + "integrity": "sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA==" + }, + "prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=" + }, + "psl": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", + "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==" + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" + }, + "qs": { + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", + "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==" + }, + "regenerator-runtime": { + "version": "0.13.5", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz", + "integrity": "sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA==" + }, + "request": { + "version": "2.88.2", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", + "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "requires": { + "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" + }, + "dependencies": { + "tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + } + } + } + }, + "request-promise-core": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.3.tgz", + "integrity": "sha512-QIs2+ArIGQVp5ZYbWD5ZLCY29D5CfWizP8eWnm8FoGD1TX61veauETVQbrV60662V0oFBkrDOuaBI8XgtuyYAQ==", + "requires": { + "lodash": "^4.17.15" + } + }, + "request-promise-native": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.8.tgz", + "integrity": "sha512-dapwLGqkHtwL5AEbfenuzjTYg35Jd6KPytsC2/TLkVMz8rm+tNt72MGUWT1RP/aYawMpN6HqbNGBQaRcBtjQMQ==", + "requires": { + "request-promise-core": "1.1.3", + "stealthy-require": "^1.1.1", + "tough-cookie": "^2.3.3" + }, + "dependencies": { + "tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + } + } + } + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=" + }, + "require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" + }, + "safe-buffer": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.0.tgz", + "integrity": "sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg==" + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "saxes": { + "version": "3.1.11", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-3.1.11.tgz", + "integrity": "sha512-Ydydq3zC+WYDJK1+gRxRapLIED9PWeSuuS41wqyoRmzvhhh9nc+QQrVMKJYzJFULazeGhzSV0QleN2wD3boh2g==", + "requires": { + "xmlchars": "^2.1.1" + } + }, + "set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "optional": true + }, + "sshpk": { + "version": "1.16.1", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", + "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", + "requires": { + "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": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", + "integrity": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=" + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "requires": { + "ansi-regex": "^4.1.0" + } + }, + "symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" + }, + "tough-cookie": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-3.0.1.tgz", + "integrity": "sha512-yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg==", + "requires": { + "ip-regex": "^2.1.0", + "psl": "^1.1.28", + "punycode": "^2.1.1" + } + }, + "tr46": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", + "integrity": "sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=", + "requires": { + "punycode": "^2.1.0" + } + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" + }, + "type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "requires": { + "prelude-ls": "~1.1.2" + } + }, + "universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" + }, + "uri-js": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", + "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==", + "requires": { + "punycode": "^2.1.0" + } + }, + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" + }, + "verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "requires": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "w3c-hr-time": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", + "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", + "requires": { + "browser-process-hrtime": "^1.0.0" + } + }, + "w3c-xmlserializer": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-1.1.2.tgz", + "integrity": "sha512-p10l/ayESzrBMYWRID6xbuCKh2Fp77+sA0doRuGn4tTIMrrZVeqfpKjXHY+oDh3K4nLdPgNwMTVP6Vp4pvqbNg==", + "requires": { + "domexception": "^1.0.1", + "webidl-conversions": "^4.0.2", + "xml-name-validator": "^3.0.0" + } + }, + "webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", + "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==" + }, + "whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", + "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", + "requires": { + "iconv-lite": "0.4.24" + } + }, + "whatwg-mimetype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", + "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==" + }, + "whatwg-url": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", + "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", + "requires": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + }, + "which-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=" + }, + "word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==" + }, + "wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "requires": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + } + }, + "ws": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.2.3.tgz", + "integrity": "sha512-HTDl9G9hbkNDk98naoR/cHDws7+EyYMOdL1BmjsZXRUjf7d+MficC4B7HLUPlSiho0vg+CWKrGIt/VJBd1xunQ==" + }, + "xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", + "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==" + }, + "xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" + }, + "y18n": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz", + "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==" + }, + "yargs": { + "version": "14.2.3", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-14.2.3.tgz", + "integrity": "sha512-ZbotRWhF+lkjijC/VhmOT9wSgyBQ7+zr13+YLkhfsSiTriYsMzkTUFP18pFhWwBeMa5gUc1MzbhrO6/VB7c9Xg==", + "requires": { + "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" + } + }, + "yargs-parser": { + "version": "15.0.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-15.0.1.tgz", + "integrity": "sha512-0OAMV2mAZQrs3FkNpDQcBk1x5HXb8X4twADss4S0Iuk+2dGnLOE/fRHrsYm542GduMveyA77OF4wrNJuanRCWw==", + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + } + } +} diff --git a/spec/fixtures/js/single-declared-dependency/package.json b/spec/fixtures/js/single-declared-dependency/package.json new file mode 100644 index 0000000..1f7fd68 --- /dev/null +++ b/spec/fixtures/js/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/integration/js/npm_spec.rb b/spec/integration/js/npm_spec.rb index 1c272bf..9cc1565 100644 --- a/spec/integration/js/npm_spec.rb +++ b/spec/integration/js/npm_spec.rb @@ -2,4 +2,466 @@ require 'spec_helper' RSpec.describe "npm" do include_examples "each report version", "js", "npm" + + context 'when scanning a project with no dependencies' do + subject { runner.scan } + + before do + runner.add_file('package.json') do + JSON.generate(name: "example", version: "1.0.0", license: "ISC") + end + runner.add_file('package-lock.json') do + JSON.generate(name: "example", version: "1.0.0", lockfileVersion: 1) + end + end + + specify { expect(subject).to match_schema(version: '2.0') } + specify { expect(subject.dependency_names).to match_array(['example']) } + end + + context 'when scanning a project with a single dependency and a `package-lock.json` file' do + subject { runner.scan } + + before do + runner.mount(dir: fixture_file('js/single-declared-dependency')) + 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", "0.2.3", ["AFL-2.1", "BSD-4-Clause"]], + ["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 + + context 'when scanning a project without a `package-lock.json` file' do + subject { runner.scan } + + before do + runner.add_file('package.json', fixture_file_content('js/single-declared-dependency/package.json')) + 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", "0.2.3", ["AFL-2.1", "BSD-4-Clause"]], + ["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.last) + end + end + end + + context "when scanning a project with an older engine" do + subject { runner.scan } + + before do + runner.add_file('package.json') do + JSON.generate( + name: "example", + version: "1.0.0", + license: "ISC", + engines: { node: ">=10.0.0 <11.0.0" }, + dependencies: { '2md' => '0.0.4' } + ) + end + end + + specify { expect(subject).to match_schema(version: '2.0') } + + [ + ["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", "0.2.3", ["AFL-2.1", "BSD-4-Clause"]], + ["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| + specify { expect(subject.licenses_for(item[0])).to match_array(item[2]) } + end + end end -- cgit v1.2.3