From 0e78d212fd1f8a11f2142bea22c158f971da189b Mon Sep 17 00:00:00 2001 From: Jason Solis Date: Mon, 2 Nov 2015 15:52:21 -0500 Subject: [PATCH 01/11] fix reading proxy url from env var --- lib/check.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/check.js b/lib/check.js index 3edea02..31d5f18 100644 --- a/lib/check.js +++ b/lib/check.js @@ -56,7 +56,7 @@ module.exports = function (options, callback) { options = {}; } - options.proxy = options.proxy || Conf.proxy; + options.proxy = options.proxy || Conf.proxy || process.env.https_proxy || process.env.HTTPS_PROXY; if (options.proxy) { Conf.api.agent = new ProxyAgent(options.proxy); delete options.proxy; From 131216f700be10b9ef34a0aeef02d1c06e31cb75 Mon Sep 17 00:00:00 2001 From: Adam Baldwin Date: Sat, 27 Feb 2016 20:18:31 -0800 Subject: [PATCH 02/11] send version string so we can version output in the future - few dep bumps --- lib/check.js | 10 +++++++++- package.json | 8 ++++---- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/lib/check.js b/lib/check.js index 32325cb..53afcfc 100644 --- a/lib/check.js +++ b/lib/check.js @@ -9,7 +9,15 @@ var Path = require('path'); var Wreck = require('wreck'); var pathIsAbsolute = require('path-is-absolute'); -var Conf = require('rc')('nsp', { api: { baseUrl: 'https://api.nodesecurity.io', json: true } }, []); +var Conf = require('rc')('nsp', { + api: { + baseUrl: 'https://api.nodesecurity.io', + json: true, + headers: { + 'X-NSP-VERSION': require('../package.json').version + } + } +}, []); var internals = {}; internals.findLines = function (shrinkwrap, module, version) { diff --git a/package.json b/package.json index a18c24d..66173ef 100644 --- a/package.json +++ b/package.json @@ -10,13 +10,13 @@ "chalk": "^1.1.1", "cli-table": "^0.3.1", "https-proxy-agent": "^1.0.0", - "joi": "^6.9.1", - "nodesecurity-npm-utils": "^3.2.0", + "joi": "^8.0.3", + "nodesecurity-npm-utils": "^4.0.1", "path-is-absolute": "^1.0.0", - "rc": "^1.1.2", + "rc": "^1.1.6", "semver": "^5.0.3", "subcommand": "^2.0.3", - "wreck": "^6.3.0" + "wreck": "^7.0.0" }, "devDependencies": { "code": "^1.5.0", From 048a58cb2c13570467739df02302f3920405f53f Mon Sep 17 00:00:00 2001 From: Michael Garvin Date: Tue, 29 Mar 2016 09:28:28 -0700 Subject: [PATCH 03/11] get linting working again --- bin/nsp | 4 ++-- lib/check.js | 4 ++-- lib/utils/usage.js | 6 +++--- package.json | 4 ++-- test/unit.js | 12 ++++++------ 5 files changed, 15 insertions(+), 15 deletions(-) diff --git a/bin/nsp b/bin/nsp index c918988..dd71b96 100755 --- a/bin/nsp +++ b/bin/nsp @@ -18,7 +18,7 @@ 'use strict'; -var subcommand = require('subcommand'); +var Subcommand = require('subcommand'); var usage = require('../lib/utils/usage.js')('root.txt'); var config = { @@ -34,5 +34,5 @@ var config = { } }; -var route = subcommand(config); +var route = Subcommand(config); route(process.argv.slice(2)); diff --git a/lib/check.js b/lib/check.js index 32325cb..f3ba7d0 100644 --- a/lib/check.js +++ b/lib/check.js @@ -7,7 +7,7 @@ var ProxyAgent = require('https-proxy-agent'); var Semver = require('semver'); var Path = require('path'); var Wreck = require('wreck'); -var pathIsAbsolute = require('path-is-absolute'); +var PathIsAbsolute = require('path-is-absolute'); var Conf = require('rc')('nsp', { api: { baseUrl: 'https://api.nodesecurity.io', json: true } }, []); @@ -115,7 +115,7 @@ module.exports = function (options, callback) { } try { if (advisoriesPath) { - if (!pathIsAbsolute(advisoriesPath)) { + if (!PathIsAbsolute(advisoriesPath)) { advisoriesPath = Path.resolve(process.cwd(), advisoriesPath); } diff --git a/lib/utils/usage.js b/lib/utils/usage.js index 27b8753..44bebaa 100644 --- a/lib/utils/usage.js +++ b/lib/utils/usage.js @@ -1,11 +1,11 @@ 'use strict'; -var fs = require('fs'); -var path = require('path'); +var Fs = require('fs'); +var Path = require('path'); var usage = function (location) { - console.error(fs.readFileSync(path.join(__dirname, '../../', 'usage', location)).toString()); + console.error(Fs.readFileSync(Path.join(__dirname, '../../', 'usage', location)).toString()); }; module.exports = function (location) { diff --git a/package.json b/package.json index 38cb3d1..4b09a9c 100644 --- a/package.json +++ b/package.json @@ -20,8 +20,8 @@ }, "devDependencies": { "code": "^1.5.0", - "eslint": "^1.8.0", - "eslint-config-nodesecurity": "^1.1.0", + "eslint": "^2.5.3", + "eslint-config-nodesecurity": "^1.3.1", "eslint-plugin-hapi": "^2.0.0", "git-validate": "^2.1.0", "lab": "^6.1.0", diff --git a/test/unit.js b/test/unit.js index aee432d..a613595 100644 --- a/test/unit.js +++ b/test/unit.js @@ -16,7 +16,7 @@ var workingOptions = { shrinkwrap: Path.resolve(__dirname, './data/npm-shrinkwrap.json') }; -var findings = require('./data/findings.json'); +var Findings = require('./data/findings.json'); var exceptions = ['https://nodesecurity.io/advisories/39', 'https://nodesecurity.io/advisories/9000']; @@ -98,12 +98,12 @@ describe('check', function () { Nock('https://api.nodesecurity.io') .post('/check') - .reply(200, findings); + .reply(200, Findings); Check(workingOptions, function (err, results) { expect(err).to.not.exist(); - expect(results).to.deep.include(findings); + expect(results).to.deep.include(Findings); done(); }); }); @@ -112,12 +112,12 @@ describe('check', function () { Nock('https://api.nodesecurity.io') .post('/check') - .reply(200, findings); + .reply(200, Findings); Check({ package: require(workingOptions.package), shrinkwrap: require(workingOptions.shrinkwrap) }, function (err, results) { expect(err).to.not.exist(); - expect(results).to.deep.include(findings); + expect(results).to.deep.include(Findings); done(); }); }); @@ -150,7 +150,7 @@ describe('check', function () { shrinkwrap: require(workingOptions.shrinkwrap), exceptions: exceptions })) - .reply(200, findings); + .reply(200, Findings); Check(options, function (err, results) { From 4da39384187c0b85c85b10619b5397252a8b51a3 Mon Sep 17 00:00:00 2001 From: Michael Garvin Date: Tue, 29 Mar 2016 09:35:13 -0700 Subject: [PATCH 04/11] update shrinkwrap --- npm-shrinkwrap.json | 1489 +++++++++++++++++++++++++++---------------- package.json | 2 +- 2 files changed, 943 insertions(+), 548 deletions(-) diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json index 1e0d1c0..e4b35b0 100644 --- a/npm-shrinkwrap.json +++ b/npm-shrinkwrap.json @@ -2,606 +2,1001 @@ "name": "nsp", "version": "2.2.2", "dependencies": { - "chalk": { - "version": "1.1.1", + "abbrev": { + "version": "1.0.7" + }, + "acorn": { + "version": "3.0.4" + }, + "acorn-jsx": { + "version": "2.0.1", "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "dependencies": { - "color-convert": { - "version": "1.0.0" - } - } - }, - "escape-string-regexp": { - "version": "1.0.5" - }, - "has-ansi": { - "version": "2.0.0", - "dependencies": { - "ansi-regex": { - "version": "2.0.0" - } - } - }, - "strip-ansi": { - "version": "3.0.1", - "dependencies": { - "ansi-regex": { - "version": "2.0.0" - } - } - }, - "supports-color": { - "version": "2.0.0" + "acorn": { + "version": "2.7.0" + } + } + }, + "agent-base": { + "version": "2.0.1", + "dependencies": { + "semver": { + "version": "5.0.3" } } }, + "align-text": { + "version": "0.1.4" + }, + "amdefine": { + "version": "1.0.0" + }, + "ansi": { + "version": "0.3.1" + }, + "ansi-escapes": { + "version": "1.3.0" + }, + "ansi-regex": { + "version": "2.0.0" + }, + "ansi-styles": { + "version": "2.2.1" + }, + "are-we-there-yet": { + "version": "1.1.2" + }, + "argparse": { + "version": "1.0.7" + }, + "array-union": { + "version": "1.0.1" + }, + "array-uniq": { + "version": "1.0.2" + }, + "arrify": { + "version": "1.0.1" + }, + "asn1": { + "version": "0.2.3" + }, + "assert-plus": { + "version": "0.2.0" + }, + "assertion-error": { + "version": "1.0.1" + }, + "async": { + "version": "1.5.2" + }, + "aws-sign2": { + "version": "0.6.0" + }, + "aws4": { + "version": "1.3.2" + }, + "balanced-match": { + "version": "0.3.0" + }, + "bl": { + "version": "1.0.3" + }, + "bluebird": { + "version": "3.3.4" + }, + "boom": { + "version": "2.10.1" + }, + "bossy": { + "version": "1.0.3" + }, + "brace-expansion": { + "version": "1.1.3" + }, + "builtin-modules": { + "version": "1.1.1" + }, + "caller-path": { + "version": "0.1.0" + }, + "callsites": { + "version": "0.2.0" + }, + "camelcase": { + "version": "1.2.1" + }, + "caseless": { + "version": "0.11.0" + }, + "center-align": { + "version": "0.1.3" + }, + "chai": { + "version": "3.5.0" + }, + "chalk": { + "version": "1.1.3" + }, + "chownr": { + "version": "1.0.1" + }, + "cli-cursor": { + "version": "1.0.2" + }, "cli-table": { - "version": "0.3.1", + "version": "0.3.1" + }, + "cli-width": { + "version": "2.1.0" + }, + "cliclopts": { + "version": "1.1.1" + }, + "cliui": { + "version": "2.1.0", + "dependencies": { + "wordwrap": { + "version": "0.0.2" + } + } + }, + "code-point-at": { + "version": "1.0.0" + }, + "colors": { + "version": "1.0.3" + }, + "combined-stream": { + "version": "1.0.5" + }, + "commander": { + "version": "2.9.0" + }, + "concat-map": { + "version": "0.0.1" + }, + "concat-stream": { + "version": "1.5.1" + }, + "core-util-is": { + "version": "1.0.2" + }, + "cryptiles": { + "version": "2.0.5" + }, + "d": { + "version": "0.1.1" + }, + "dashdash": { + "version": "1.13.0", + "dependencies": { + "assert-plus": { + "version": "1.0.0" + } + } + }, + "debug": { + "version": "2.2.0" + }, + "decamelize": { + "version": "1.2.0" + }, + "deep-eql": { + "version": "0.1.3", + "dependencies": { + "type-detect": { + "version": "0.1.1" + } + } + }, + "deep-equal": { + "version": "1.0.1" + }, + "deep-extend": { + "version": "0.4.1" + }, + "deep-is": { + "version": "0.1.3" + }, + "del": { + "version": "2.2.0" + }, + "delayed-stream": { + "version": "1.0.0" + }, + "delegates": { + "version": "1.0.0" + }, + "diff": { + "version": "2.2.2" + }, + "doctrine": { + "version": "1.2.0", "dependencies": { - "colors": { - "version": "1.0.3" + "esutils": { + "version": "1.1.6" } } }, + "ecc-jsbn": { + "version": "0.1.1" + }, + "es5-ext": { + "version": "0.10.11" + }, + "es6-iterator": { + "version": "2.0.0" + }, + "es6-map": { + "version": "0.1.3" + }, + "es6-set": { + "version": "0.1.4" + }, + "es6-symbol": { + "version": "3.0.2" + }, + "es6-weak-map": { + "version": "2.0.1" + }, + "escape-string-regexp": { + "version": "1.0.5" + }, + "escope": { + "version": "3.6.0" + }, + "espree": { + "version": "3.1.3" + }, + "esprima": { + "version": "2.7.2" + }, + "esrecurse": { + "version": "4.1.0", + "dependencies": { + "estraverse": { + "version": "4.1.1" + } + } + }, + "estraverse": { + "version": "4.2.0" + }, + "estraverse-fb": { + "version": "1.3.1" + }, + "esutils": { + "version": "2.0.2" + }, + "event-emitter": { + "version": "0.3.4" + }, + "exit": { + "version": "0.1.2" + }, + "exit-hook": { + "version": "1.1.1" + }, + "extend": { + "version": "3.0.0" + }, + "extsprintf": { + "version": "1.0.2" + }, + "fast-levenshtein": { + "version": "1.1.3" + }, + "figures": { + "version": "1.5.0" + }, + "file-entry-cache": { + "version": "1.2.4" + }, + "flat-cache": { + "version": "1.0.10" + }, + "forever-agent": { + "version": "0.6.1" + }, + "form-data": { + "version": "1.0.0-rc4" + }, + "gauge": { + "version": "1.2.7" + }, + "generate-function": { + "version": "2.0.0" + }, + "generate-object-property": { + "version": "1.2.0" + }, + "get-stdin": { + "version": "3.0.2" + }, + "glob": { + "version": "7.0.3" + }, + "globals": { + "version": "9.2.0" + }, + "globby": { + "version": "4.0.0", + "dependencies": { + "glob": { + "version": "6.0.4" + } + } + }, + "graceful-fs": { + "version": "4.1.3" + }, + "graceful-readlink": { + "version": "1.0.1" + }, + "handlebars": { + "version": "4.0.5" + }, + "hapi-capitalize-modules": { + "version": "1.1.4" + }, + "hapi-for-you": { + "version": "1.0.0" + }, + "hapi-scope-start": { + "version": "2.1.1" + }, + "har-validator": { + "version": "2.0.6" + }, + "has-ansi": { + "version": "2.0.0" + }, + "has-unicode": { + "version": "2.0.0" + }, + "hawk": { + "version": "3.1.3" + }, + "hoek": { + "version": "2.16.3" + }, + "hosted-git-info": { + "version": "2.1.4" + }, + "http-signature": { + "version": "1.1.1" + }, "https-proxy-agent": { - "version": "1.0.0", + "version": "1.0.0" + }, + "ignore": { + "version": "3.0.13" + }, + "imurmurhash": { + "version": "0.1.4" + }, + "inflight": { + "version": "1.0.4" + }, + "inherits": { + "version": "2.0.1" + }, + "ini": { + "version": "1.3.4" + }, + "inquirer": { + "version": "0.12.0" + }, + "is-buffer": { + "version": "1.1.3" + }, + "is-builtin-module": { + "version": "1.0.0" + }, + "is-fullwidth-code-point": { + "version": "1.0.0" + }, + "is-my-json-valid": { + "version": "2.13.1" + }, + "is-path-cwd": { + "version": "1.0.0" + }, + "is-path-in-cwd": { + "version": "1.0.0" + }, + "is-path-inside": { + "version": "1.0.0" + }, + "is-property": { + "version": "1.0.2" + }, + "is-resolvable": { + "version": "1.0.0" + }, + "is-typedarray": { + "version": "1.0.0" + }, + "isarray": { + "version": "1.0.0" + }, + "isemail": { + "version": "1.2.0" + }, + "isstream": { + "version": "0.1.2" + }, + "items": { + "version": "1.1.1" + }, + "jodid25519": { + "version": "1.0.2" + }, + "joi": { + "version": "6.10.1" + }, + "js-yaml": { + "version": "3.5.5" + }, + "jsbn": { + "version": "0.1.0" + }, + "jslint": { + "version": "0.9.6", "dependencies": { - "agent-base": { - "version": "2.0.1", - "dependencies": { - "semver": { - "version": "5.0.3" - } - } + "glob": { + "version": "4.5.3" + }, + "isarray": { + "version": "0.0.1" }, - "debug": { - "version": "2.2.0", - "dependencies": { - "ms": { - "version": "0.7.1" - } - } + "minimatch": { + "version": "2.0.10" }, - "extend": { - "version": "3.0.0" + "readable-stream": { + "version": "1.0.33" } } }, - "joi": { - "version": "6.10.1", + "json-schema": { + "version": "0.2.2" + }, + "json-stable-stringify": { + "version": "1.0.1" + }, + "json-stringify-safe": { + "version": "5.0.1" + }, + "jsonify": { + "version": "0.0.0" + }, + "jsonpointer": { + "version": "2.0.0" + }, + "jsprim": { + "version": "1.2.2" + }, + "kind-of": { + "version": "3.0.2" + }, + "lazy-cache": { + "version": "1.0.3" + }, + "levn": { + "version": "0.3.0" + }, + "lodash": { + "version": "4.6.1" + }, + "lodash._arraycopy": { + "version": "3.0.0" + }, + "lodash._arrayeach": { + "version": "3.0.0" + }, + "lodash._arraymap": { + "version": "3.0.0" + }, + "lodash._baseassign": { + "version": "3.2.0" + }, + "lodash._baseclone": { + "version": "3.3.0" + }, + "lodash._basecopy": { + "version": "3.0.1" + }, + "lodash._basedifference": { + "version": "3.0.3" + }, + "lodash._baseflatten": { + "version": "3.1.4" + }, + "lodash._basefor": { + "version": "3.0.3" + }, + "lodash._baseindexof": { + "version": "3.1.0" + }, + "lodash._bindcallback": { + "version": "3.0.1" + }, + "lodash._cacheindexof": { + "version": "3.0.2" + }, + "lodash._createassigner": { + "version": "3.1.1" + }, + "lodash._createcache": { + "version": "3.1.2" + }, + "lodash._getnative": { + "version": "3.9.1" + }, + "lodash._isiterateecall": { + "version": "3.0.9" + }, + "lodash._pickbyarray": { + "version": "3.0.2" + }, + "lodash._pickbycallback": { + "version": "3.0.0" + }, + "lodash.clonedeep": { + "version": "3.0.2" + }, + "lodash.isarguments": { + "version": "3.0.8" + }, + "lodash.isarray": { + "version": "3.0.4" + }, + "lodash.isplainobject": { + "version": "3.2.0" + }, + "lodash.istypedarray": { + "version": "3.0.5" + }, + "lodash.keys": { + "version": "3.1.2" + }, + "lodash.keysin": { + "version": "3.0.8" + }, + "lodash.merge": { + "version": "3.3.2" + }, + "lodash.omit": { + "version": "3.1.0" + }, + "lodash.pad": { + "version": "4.1.0" + }, + "lodash.padend": { + "version": "4.2.0" + }, + "lodash.padstart": { + "version": "4.2.0" + }, + "lodash.repeat": { + "version": "4.0.0" + }, + "lodash.restparam": { + "version": "3.6.1" + }, + "lodash.toplainobject": { + "version": "3.0.0" + }, + "lodash.tostring": { + "version": "4.1.2" + }, + "longest": { + "version": "1.0.1" + }, + "lru-cache": { + "version": "4.0.1" + }, + "mime-db": { + "version": "1.22.0" + }, + "mime-types": { + "version": "2.1.10" + }, + "minimatch": { + "version": "3.0.0" + }, + "minimist": { + "version": "0.0.8" + }, + "mkdirp": { + "version": "0.5.1" + }, + "moment": { + "version": "2.12.0" + }, + "ms": { + "version": "0.7.1" + }, + "mute-stream": { + "version": "0.0.5" + }, + "no-arrowception": { + "version": "1.0.0" + }, + "no-shadow-relaxed": { + "version": "1.0.1", "dependencies": { - "hoek": { - "version": "2.16.3" + "ansi-regex": { + "version": "1.1.1" }, - "topo": { - "version": "1.1.0" + "cli-width": { + "version": "1.1.1" }, - "isemail": { - "version": "1.2.0" + "doctrine": { + "version": "0.6.4" + }, + "eslint": { + "version": "0.24.1" + }, + "espree": { + "version": "2.2.5" + }, + "esutils": { + "version": "1.1.6" + }, + "fast-levenshtein": { + "version": "1.0.7" + }, + "globals": { + "version": "8.18.0" + }, + "inquirer": { + "version": "0.8.5" + }, + "isarray": { + "version": "0.0.1" + }, + "levn": { + "version": "0.2.5" + }, + "lodash": { + "version": "3.10.1" + }, + "minimatch": { + "version": "2.0.10" + }, + "mute-stream": { + "version": "0.0.4" + }, + "object-assign": { + "version": "2.1.1" }, - "moment": { - "version": "2.12.0" + "optionator": { + "version": "0.5.0" + }, + "readline2": { + "version": "0.1.1" + }, + "strip-ansi": { + "version": "2.0.1" + }, + "user-home": { + "version": "1.1.1" + }, + "wordwrap": { + "version": "0.0.3" } } }, + "node-uuid": { + "version": "1.4.7" + }, "nodesecurity-npm-utils": { - "version": "3.2.0", + "version": "3.2.0" + }, + "nopt": { + "version": "3.0.6" + }, + "normalize-package-data": { + "version": "2.3.5" + }, + "npm-package-arg": { + "version": "4.1.0" + }, + "npm-registry-client": { + "version": "7.1.0" + }, + "npmlog": { + "version": "2.0.3" + }, + "number-is-nan": { + "version": "1.0.0" + }, + "oauth-sign": { + "version": "0.8.1" + }, + "object-assign": { + "version": "4.0.1" + }, + "once": { + "version": "1.3.3" + }, + "onetime": { + "version": "1.1.0" + }, + "optimist": { + "version": "0.6.1", "dependencies": { - "silent-npm-registry-client": { - "version": "2.0.0", - "dependencies": { - "npm-registry-client": { - "version": "7.1.0", - "dependencies": { - "chownr": { - "version": "1.0.1" - }, - "concat-stream": { - "version": "1.5.1", - "dependencies": { - "inherits": { - "version": "2.0.1" - }, - "typedarray": { - "version": "0.0.6" - }, - "readable-stream": { - "version": "2.0.5", - "dependencies": { - "core-util-is": { - "version": "1.0.2" - }, - "isarray": { - "version": "0.0.1" - }, - "process-nextick-args": { - "version": "1.0.6" - }, - "string_decoder": { - "version": "0.10.31" - }, - "util-deprecate": { - "version": "1.0.2" - } - } - } - } - }, - "graceful-fs": { - "version": "4.1.3" - }, - "mkdirp": { - "version": "0.5.1", - "dependencies": { - "minimist": { - "version": "0.0.8" - } - } - }, - "normalize-package-data": { - "version": "2.3.5", - "dependencies": { - "hosted-git-info": { - "version": "2.1.4" - }, - "is-builtin-module": { - "version": "1.0.0", - "dependencies": { - "builtin-modules": { - "version": "1.1.1" - } - } - }, - "validate-npm-package-license": { - "version": "3.0.1", - "dependencies": { - "spdx-correct": { - "version": "1.0.2", - "dependencies": { - "spdx-license-ids": { - "version": "1.2.0" - } - } - }, - "spdx-expression-parse": { - "version": "1.0.2", - "dependencies": { - "spdx-exceptions": { - "version": "1.0.4" - }, - "spdx-license-ids": { - "version": "1.2.0" - } - } - } - } - } - } - }, - "npm-package-arg": { - "version": "4.1.0", - "dependencies": { - "hosted-git-info": { - "version": "2.1.4" - } - } - }, - "once": { - "version": "1.3.3", - "dependencies": { - "wrappy": { - "version": "1.0.1" - } - } - }, - "request": { - "version": "2.69.0", - "dependencies": { - "aws-sign2": { - "version": "0.6.0" - }, - "aws4": { - "version": "1.3.2", - "dependencies": { - "lru-cache": { - "version": "4.0.0", - "dependencies": { - "pseudomap": { - "version": "1.0.2" - }, - "yallist": { - "version": "2.0.0" - } - } - } - } - }, - "bl": { - "version": "1.0.3", - "dependencies": { - "readable-stream": { - "version": "2.0.5", - "dependencies": { - "core-util-is": { - "version": "1.0.2" - }, - "inherits": { - "version": "2.0.1" - }, - "isarray": { - "version": "0.0.1" - }, - "process-nextick-args": { - "version": "1.0.6" - }, - "string_decoder": { - "version": "0.10.31" - }, - "util-deprecate": { - "version": "1.0.2" - } - } - } - } - }, - "caseless": { - "version": "0.11.0" - }, - "combined-stream": { - "version": "1.0.5", - "dependencies": { - "delayed-stream": { - "version": "1.0.0" - } - } - }, - "extend": { - "version": "3.0.0" - }, - "forever-agent": { - "version": "0.6.1" - }, - "form-data": { - "version": "1.0.0-rc3", - "dependencies": { - "async": { - "version": "1.5.2" - } - } - }, - "har-validator": { - "version": "2.0.6", - "dependencies": { - "commander": { - "version": "2.9.0", - "dependencies": { - "graceful-readlink": { - "version": "1.0.1" - } - } - }, - "is-my-json-valid": { - "version": "2.13.1", - "dependencies": { - "generate-function": { - "version": "2.0.0" - }, - "generate-object-property": { - "version": "1.2.0", - "dependencies": { - "is-property": { - "version": "1.0.2" - } - } - }, - "jsonpointer": { - "version": "2.0.0" - } - } - }, - "pinkie-promise": { - "version": "2.0.0", - "dependencies": { - "pinkie": { - "version": "2.0.4" - } - } - } - } - }, - "hawk": { - "version": "3.1.3", - "dependencies": { - "hoek": { - "version": "2.16.3" - }, - "boom": { - "version": "2.10.1" - }, - "cryptiles": { - "version": "2.0.5" - }, - "sntp": { - "version": "1.0.9" - } - } - }, - "http-signature": { - "version": "1.1.1", - "dependencies": { - "assert-plus": { - "version": "0.2.0" - }, - "jsprim": { - "version": "1.2.2", - "dependencies": { - "extsprintf": { - "version": "1.0.2" - }, - "json-schema": { - "version": "0.2.2" - }, - "verror": { - "version": "1.3.6" - } - } - }, - "sshpk": { - "version": "1.7.4", - "dependencies": { - "asn1": { - "version": "0.2.3" - }, - "dashdash": { - "version": "1.13.0", - "dependencies": { - "assert-plus": { - "version": "1.0.0" - } - } - }, - "jsbn": { - "version": "0.1.0" - }, - "tweetnacl": { - "version": "0.14.1" - }, - "jodid25519": { - "version": "1.0.2" - }, - "ecc-jsbn": { - "version": "0.1.1" - } - } - } - } - }, - "is-typedarray": { - "version": "1.0.0" - }, - "isstream": { - "version": "0.1.2" - }, - "json-stringify-safe": { - "version": "5.0.1" - }, - "mime-types": { - "version": "2.1.10", - "dependencies": { - "mime-db": { - "version": "1.22.0" - } - } - }, - "node-uuid": { - "version": "1.4.7" - }, - "oauth-sign": { - "version": "0.8.1" - }, - "qs": { - "version": "6.0.2" - }, - "stringstream": { - "version": "0.0.5" - }, - "tough-cookie": { - "version": "2.2.1" - }, - "tunnel-agent": { - "version": "0.4.2" - } - } - }, - "retry": { - "version": "0.8.0" - }, - "rimraf": { - "version": "2.5.2", - "dependencies": { - "glob": { - "version": "7.0.3", - "dependencies": { - "inflight": { - "version": "1.0.4", - "dependencies": { - "wrappy": { - "version": "1.0.1" - } - } - }, - "inherits": { - "version": "2.0.1" - }, - "minimatch": { - "version": "3.0.0", - "dependencies": { - "brace-expansion": { - "version": "1.1.3", - "dependencies": { - "balanced-match": { - "version": "0.3.0" - }, - "concat-map": { - "version": "0.0.1" - } - } - } - } - } - } - } - } - }, - "slide": { - "version": "1.1.6" - }, - "npmlog": { - "version": "2.0.2", - "dependencies": { - "ansi": { - "version": "0.3.1" - }, - "are-we-there-yet": { - "version": "1.0.6", - "dependencies": { - "delegates": { - "version": "1.0.0" - }, - "readable-stream": { - "version": "2.0.5", - "dependencies": { - "core-util-is": { - "version": "1.0.2" - }, - "inherits": { - "version": "2.0.1" - }, - "isarray": { - "version": "0.0.1" - }, - "process-nextick-args": { - "version": "1.0.6" - }, - "string_decoder": { - "version": "0.10.31" - }, - "util-deprecate": { - "version": "1.0.2" - } - } - } - } - }, - "gauge": { - "version": "1.2.7", - "dependencies": { - "has-unicode": { - "version": "2.0.0" - }, - "lodash.pad": { - "version": "4.1.0", - "dependencies": { - "lodash.repeat": { - "version": "4.0.0" - }, - "lodash.tostring": { - "version": "4.1.2" - } - } - }, - "lodash.padend": { - "version": "4.2.0", - "dependencies": { - "lodash.repeat": { - "version": "4.0.0" - }, - "lodash.tostring": { - "version": "4.1.2" - } - } - }, - "lodash.padstart": { - "version": "4.2.0", - "dependencies": { - "lodash.repeat": { - "version": "4.0.0" - }, - "lodash.tostring": { - "version": "4.1.2" - } - } - } - } - } - } - } - } - }, - "xtend": { - "version": "4.0.1" - } - } + "wordwrap": { + "version": "0.0.3" } } }, + "optionator": { + "version": "0.8.1" + }, + "os-homedir": { + "version": "1.0.1" + }, "path-is-absolute": { "version": "1.0.0" }, + "path-is-inside": { + "version": "1.0.1" + }, + "pify": { + "version": "2.3.0" + }, + "pinkie": { + "version": "2.0.4" + }, + "pinkie-promise": { + "version": "2.0.0" + }, + "pluralize": { + "version": "1.2.1" + }, + "prelude-ls": { + "version": "1.1.2" + }, + "process-nextick-args": { + "version": "1.0.6" + }, + "progress": { + "version": "1.1.8" + }, + "propagate": { + "version": "0.3.1" + }, + "pseudomap": { + "version": "1.0.2" + }, + "qs": { + "version": "6.0.2" + }, "rc": { "version": "1.1.6", "dependencies": { - "deep-extend": { - "version": "0.4.1" - }, - "ini": { - "version": "1.3.4" - }, "minimist": { "version": "1.2.0" - }, - "strip-json-comments": { - "version": "1.0.4" } } }, + "read-json-sync": { + "version": "1.1.1" + }, + "readable-stream": { + "version": "2.0.6" + }, + "readline2": { + "version": "1.0.1" + }, + "repeat-string": { + "version": "1.5.4" + }, + "request": { + "version": "2.69.0" + }, + "require-uncached": { + "version": "1.0.2" + }, + "resolve": { + "version": "1.1.7" + }, + "resolve-from": { + "version": "1.0.1" + }, + "restore-cursor": { + "version": "1.0.1" + }, + "retry": { + "version": "0.8.0" + }, + "right-align": { + "version": "0.1.3" + }, + "rimraf": { + "version": "2.5.2" + }, + "run-async": { + "version": "0.1.0" + }, + "rx": { + "version": "2.5.3" + }, + "rx-lite": { + "version": "3.1.2" + }, "semver": { "version": "5.1.0" }, + "shelljs": { + "version": "0.6.0" + }, + "silent-npm-registry-client": { + "version": "2.0.0" + }, + "slice-ansi": { + "version": "0.0.4" + }, + "slide": { + "version": "1.1.6" + }, + "sntp": { + "version": "1.0.9" + }, + "source-map": { + "version": "0.4.4" + }, + "source-map-support": { + "version": "0.3.3", + "dependencies": { + "source-map": { + "version": "0.1.32" + } + } + }, + "spdx-correct": { + "version": "1.0.2" + }, + "spdx-exceptions": { + "version": "1.0.4" + }, + "spdx-expression-parse": { + "version": "1.0.2" + }, + "spdx-license-ids": { + "version": "1.2.0" + }, + "sprintf-js": { + "version": "1.0.3" + }, + "sshpk": { + "version": "1.7.4" + }, + "string_decoder": { + "version": "0.10.31" + }, + "string-width": { + "version": "1.0.1" + }, + "stringstream": { + "version": "0.0.5" + }, + "strip-ansi": { + "version": "3.0.1" + }, + "strip-json-comments": { + "version": "1.0.4" + }, "subcommand": { "version": "2.0.3", "dependencies": { - "cliclopts": { - "version": "1.1.1" - }, - "debug": { - "version": "2.2.0", - "dependencies": { - "ms": { - "version": "0.7.1" - } - } - }, "minimist": { "version": "1.2.0" - }, - "xtend": { - "version": "4.0.1" } } }, - "wreck": { - "version": "6.3.0", + "supports-color": { + "version": "2.0.0" + }, + "table": { + "version": "3.7.8" + }, + "text-table": { + "version": "0.2.0" + }, + "through": { + "version": "2.3.8" + }, + "to-double-quotes": { + "version": "1.0.2" + }, + "to-single-quotes": { + "version": "1.0.4" + }, + "topo": { + "version": "1.1.0" + }, + "tough-cookie": { + "version": "2.2.2" + }, + "tryit": { + "version": "1.0.2" + }, + "tunnel-agent": { + "version": "0.4.2" + }, + "tv4": { + "version": "1.2.7" + }, + "tweetnacl": { + "version": "0.14.3" + }, + "type-check": { + "version": "0.3.2" + }, + "type-detect": { + "version": "1.0.0" + }, + "typedarray": { + "version": "0.0.6" + }, + "uglify-js": { + "version": "2.6.2", "dependencies": { - "hoek": { - "version": "2.16.3" + "async": { + "version": "0.2.10" }, - "boom": { - "version": "2.10.1" + "source-map": { + "version": "0.5.3" } } + }, + "uglify-to-browserify": { + "version": "1.0.2" + }, + "user-home": { + "version": "2.0.0" + }, + "util-deprecate": { + "version": "1.0.2" + }, + "validate-npm-package-license": { + "version": "3.0.1" + }, + "verror": { + "version": "1.3.6" + }, + "window-size": { + "version": "0.1.0" + }, + "wordwrap": { + "version": "1.0.0" + }, + "wrappy": { + "version": "1.0.1" + }, + "wreck": { + "version": "6.3.0" + }, + "write": { + "version": "0.2.1" + }, + "xml-escape": { + "version": "1.0.0" + }, + "xregexp": { + "version": "3.1.0" + }, + "xtend": { + "version": "4.0.1" + }, + "yallist": { + "version": "2.0.0" + }, + "yargs": { + "version": "3.10.0" } } -} +} \ No newline at end of file diff --git a/package.json b/package.json index 4b09a9c..5426fab 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,7 @@ "code": "^1.5.0", "eslint": "^2.5.3", "eslint-config-nodesecurity": "^1.3.1", - "eslint-plugin-hapi": "^2.0.0", + "eslint-plugin-hapi": "^1.2.2", "git-validate": "^2.1.0", "lab": "^6.1.0", "nock": "^2.15.0", From 1f9be45668a5b54c15445db80f75cff94c8dde19 Mon Sep 17 00:00:00 2001 From: Jon Lamendola Date: Tue, 29 Mar 2016 10:21:34 -0700 Subject: [PATCH 05/11] Added new unit test, fixed linting errors. --- lib/check.js | 3 ++- lib/utils/usage.js | 6 +++--- test/unit.js | 35 ++++++++++++++++++++++++++++------- 3 files changed, 33 insertions(+), 11 deletions(-) diff --git a/lib/check.js b/lib/check.js index 31d5f18..98e8a03 100644 --- a/lib/check.js +++ b/lib/check.js @@ -56,7 +56,8 @@ module.exports = function (options, callback) { options = {}; } - options.proxy = options.proxy || Conf.proxy || process.env.https_proxy || process.env.HTTPS_PROXY; + options.proxy = options.proxy || Conf.proxy; + options.proxy = options.proxy || process.env.https_proxy || process.env.HTTPS_PROXY; if (options.proxy) { Conf.api.agent = new ProxyAgent(options.proxy); delete options.proxy; diff --git a/lib/utils/usage.js b/lib/utils/usage.js index 27b8753..44bebaa 100644 --- a/lib/utils/usage.js +++ b/lib/utils/usage.js @@ -1,11 +1,11 @@ 'use strict'; -var fs = require('fs'); -var path = require('path'); +var Fs = require('fs'); +var Path = require('path'); var usage = function (location) { - console.error(fs.readFileSync(path.join(__dirname, '../../', 'usage', location)).toString()); + console.error(Fs.readFileSync(Path.join(__dirname, '../../', 'usage', location)).toString()); }; module.exports = function (location) { diff --git a/test/unit.js b/test/unit.js index 8b3501f..b2f08ea 100644 --- a/test/unit.js +++ b/test/unit.js @@ -16,7 +16,7 @@ var workingOptions = { shrinkwrap: Path.resolve(__dirname, './data/npm-shrinkwrap.json') }; -var findings = require('./data/findings.json'); +var Findings = require('./data/findings.json'); var exceptions = ['https://nodesecurity.io/advisories/39', 'https://nodesecurity.io/advisories/9000']; @@ -98,12 +98,12 @@ describe('check', function () { Nock('https://api.nodesecurity.io') .post('/check') - .reply(200, findings); + .reply(200, Findings); Check(workingOptions, function (err, results) { expect(err).to.not.exist(); - expect(results).to.deep.include(findings); + expect(results).to.deep.include(Findings); done(); }); }); @@ -112,12 +112,12 @@ describe('check', function () { Nock('https://api.nodesecurity.io') .post('/check') - .reply(200, findings); + .reply(200, Findings); Check({ package: require(workingOptions.package), shrinkwrap: require(workingOptions.shrinkwrap) }, function (err, results) { expect(err).to.not.exist(); - expect(results).to.deep.include(findings); + expect(results).to.deep.include(Findings); done(); }); }); @@ -150,7 +150,7 @@ describe('check', function () { shrinkwrap: require(workingOptions.shrinkwrap), exceptions: exceptions })) - .reply(200, findings); + .reply(200, Findings); Check(options, function (err, results) { @@ -191,7 +191,7 @@ describe('check', function () { }); }); - it('Uses proxy', function (done) { + it('Uses proxy from nsprc', function (done) { var options = { package: workingOptions.package, @@ -208,4 +208,25 @@ describe('check', function () { done(); }); }); + + it('Uses proxy from env vars', function (done) { + + process.env.https_proxy = process.env.HTTPS_PROXY = 'http://127.0.0.1:8080'; + + var options = { + package: workingOptions.package, + shrinkwrap: workingOptions.shrinkwrap + }; + + Nock('http://127.0.0.1:8080') + .post('/check') + .reply(200); + + Check(options, function (err, results) { + + done(); + }); + }); + + }); From 26b8011802d9208d77d1548511c47dc42ea90133 Mon Sep 17 00:00:00 2001 From: Michael Garvin Date: Tue, 29 Mar 2016 11:12:24 -0700 Subject: [PATCH 06/11] update to latest versions of everything we can --- npm-shrinkwrap.json | 1282 ++++++++++++++++++++++++++++++++----------- package.json | 6 +- 2 files changed, 977 insertions(+), 311 deletions(-) diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json index e4b35b0..2392232 100644 --- a/npm-shrinkwrap.json +++ b/npm-shrinkwrap.json @@ -3,1000 +3,1666 @@ "version": "2.2.2", "dependencies": { "abbrev": { - "version": "1.0.7" + "version": "1.0.7", + "from": "abbrev@1.0.7", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.0.7.tgz" }, "acorn": { - "version": "3.0.4" + "version": "3.0.4", + "from": "acorn@3.0.4", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-3.0.4.tgz" }, "acorn-jsx": { "version": "2.0.1", + "from": "acorn-jsx@2.0.1", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-2.0.1.tgz", "dependencies": { "acorn": { - "version": "2.7.0" + "version": "2.7.0", + "from": "acorn@2.7.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-2.7.0.tgz" } } }, "agent-base": { "version": "2.0.1", + "from": "agent-base@2.0.1", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-2.0.1.tgz", "dependencies": { "semver": { - "version": "5.0.3" + "version": "5.0.3", + "from": "semver@5.0.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.0.3.tgz" } } }, "align-text": { - "version": "0.1.4" + "version": "0.1.4", + "from": "align-text@0.1.4", + "resolved": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz" }, "amdefine": { - "version": "1.0.0" + "version": "1.0.0", + "from": "amdefine@1.0.0", + "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.0.tgz" }, "ansi": { - "version": "0.3.1" + "version": "0.3.1", + "from": "ansi@>=0.3.1 <0.4.0", + "resolved": "https://registry.npmjs.org/ansi/-/ansi-0.3.1.tgz" }, "ansi-escapes": { - "version": "1.3.0" + "version": "1.3.0", + "from": "ansi-escapes@1.3.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-1.3.0.tgz" }, "ansi-regex": { - "version": "2.0.0" + "version": "2.0.0", + "from": "ansi-regex@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.0.0.tgz" }, "ansi-styles": { - "version": "2.2.1" + "version": "2.2.1", + "from": "ansi-styles@>=2.2.1 <3.0.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz" }, "are-we-there-yet": { - "version": "1.1.2" + "version": "1.1.2", + "from": "are-we-there-yet@>=1.1.2 <1.2.0", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz" }, "argparse": { - "version": "1.0.7" + "version": "1.0.7", + "from": "argparse@1.0.7", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.7.tgz" }, "array-union": { - "version": "1.0.1" + "version": "1.0.1", + "from": "array-union@1.0.1", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.1.tgz" }, "array-uniq": { - "version": "1.0.2" + "version": "1.0.2", + "from": "array-uniq@1.0.2", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.2.tgz" }, "arrify": { - "version": "1.0.1" + "version": "1.0.1", + "from": "arrify@1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz" }, "asn1": { - "version": "0.2.3" + "version": "0.2.3", + "from": "asn1@>=0.2.3 <0.3.0", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz" }, "assert-plus": { - "version": "0.2.0" + "version": "0.2.0", + "from": "assert-plus@>=0.2.0 <0.3.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz" }, "assertion-error": { - "version": "1.0.1" + "version": "1.0.1", + "from": "assertion-error@>=1.0.1 <2.0.0", + "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.0.1.tgz" }, "async": { - "version": "1.5.2" + "version": "1.5.2", + "from": "async@>=1.5.2 <2.0.0", + "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz" }, "aws-sign2": { - "version": "0.6.0" + "version": "0.6.0", + "from": "aws-sign2@>=0.6.0 <0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz" }, "aws4": { - "version": "1.3.2" + "version": "1.3.2", + "from": "aws4@>=1.2.1 <2.0.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.3.2.tgz" }, "balanced-match": { - "version": "0.3.0" + "version": "0.3.0", + "from": "balanced-match@>=0.3.0 <0.4.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.3.0.tgz" }, "bl": { - "version": "1.0.3" + "version": "1.0.3", + "from": "bl@>=1.0.0 <1.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.3.tgz" }, "bluebird": { - "version": "3.3.4" + "version": "3.3.4", + "from": "bluebird@3.3.4", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.3.4.tgz" }, "boom": { - "version": "2.10.1" + "version": "2.10.1", + "from": "boom@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz" }, "bossy": { - "version": "1.0.3" + "version": "1.0.3", + "from": "bossy@1.0.3", + "resolved": "https://registry.npmjs.org/bossy/-/bossy-1.0.3.tgz" }, "brace-expansion": { - "version": "1.1.3" + "version": "1.1.3", + "from": "brace-expansion@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.3.tgz" }, "builtin-modules": { - "version": "1.1.1" + "version": "1.1.1", + "from": "builtin-modules@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz" }, "caller-path": { - "version": "0.1.0" + "version": "0.1.0", + "from": "caller-path@0.1.0", + "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-0.1.0.tgz" }, "callsites": { - "version": "0.2.0" + "version": "0.2.0", + "from": "callsites@0.2.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-0.2.0.tgz" }, "camelcase": { - "version": "1.2.1" + "version": "1.2.1", + "from": "camelcase@1.2.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz" }, "caseless": { - "version": "0.11.0" + "version": "0.11.0", + "from": "caseless@>=0.11.0 <0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz" }, "center-align": { - "version": "0.1.3" + "version": "0.1.3", + "from": "center-align@0.1.3", + "resolved": "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz" }, "chai": { - "version": "3.5.0" + "version": "3.5.0", + "from": "chai@>=1.9.2 <4.0.0", + "resolved": "https://registry.npmjs.org/chai/-/chai-3.5.0.tgz" }, "chalk": { - "version": "1.1.3" + "version": "1.1.3", + "from": "chalk@1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz" }, "chownr": { - "version": "1.0.1" + "version": "1.0.1", + "from": "chownr@>=1.0.1 <2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.0.1.tgz" }, "cli-cursor": { - "version": "1.0.2" + "version": "1.0.2", + "from": "cli-cursor@1.0.2", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-1.0.2.tgz" }, "cli-table": { - "version": "0.3.1" + "version": "0.3.1", + "from": "cli-table@0.3.1", + "resolved": "https://registry.npmjs.org/cli-table/-/cli-table-0.3.1.tgz" }, "cli-width": { - "version": "2.1.0" + "version": "2.1.0", + "from": "cli-width@2.1.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.1.0.tgz" }, "cliclopts": { - "version": "1.1.1" + "version": "1.1.1", + "from": "cliclopts@1.1.1", + "resolved": "https://registry.npmjs.org/cliclopts/-/cliclopts-1.1.1.tgz" }, "cliui": { "version": "2.1.0", + "from": "cliui@2.1.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz", "dependencies": { "wordwrap": { - "version": "0.0.2" + "version": "0.0.2", + "from": "wordwrap@0.0.2", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz" } } }, "code-point-at": { - "version": "1.0.0" + "version": "1.0.0", + "from": "code-point-at@1.0.0", + "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.0.0.tgz" }, "colors": { - "version": "1.0.3" + "version": "1.0.3", + "from": "colors@1.0.3", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz" }, "combined-stream": { - "version": "1.0.5" + "version": "1.0.5", + "from": "combined-stream@>=1.0.5 <1.1.0", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz" }, "commander": { - "version": "2.9.0" + "version": "2.9.0", + "from": "commander@>=2.9.0 <3.0.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz" }, "concat-map": { - "version": "0.0.1" + "version": "0.0.1", + "from": "concat-map@0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" }, "concat-stream": { - "version": "1.5.1" + "version": "1.5.1", + "from": "concat-stream@>=1.4.6 <2.0.0", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.5.1.tgz" }, "core-util-is": { - "version": "1.0.2" + "version": "1.0.2", + "from": "core-util-is@>=1.0.0 <1.1.0", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz" }, "cryptiles": { - "version": "2.0.5" + "version": "2.0.5", + "from": "cryptiles@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz" }, "d": { - "version": "0.1.1" + "version": "0.1.1", + "from": "d@0.1.1", + "resolved": "https://registry.npmjs.org/d/-/d-0.1.1.tgz" }, "dashdash": { "version": "1.13.0", + "from": "dashdash@>=1.10.1 <2.0.0", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.13.0.tgz", "dependencies": { "assert-plus": { - "version": "1.0.0" + "version": "1.0.0", + "from": "assert-plus@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz" } } }, "debug": { - "version": "2.2.0" + "version": "2.2.0", + "from": "debug@>=2.2.0 <3.0.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz" }, "decamelize": { - "version": "1.2.0" + "version": "1.2.0", + "from": "decamelize@1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz" }, "deep-eql": { "version": "0.1.3", + "from": "deep-eql@>=0.1.3 <0.2.0", + "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-0.1.3.tgz", "dependencies": { "type-detect": { - "version": "0.1.1" + "version": "0.1.1", + "from": "type-detect@0.1.1", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-0.1.1.tgz" } } }, "deep-equal": { - "version": "1.0.1" + "version": "1.0.1", + "from": "deep-equal@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz" }, "deep-extend": { - "version": "0.4.1" + "version": "0.4.1", + "from": "deep-extend@0.4.1", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.4.1.tgz" }, "deep-is": { - "version": "0.1.3" + "version": "0.1.3", + "from": "deep-is@0.1.3", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz" }, "del": { - "version": "2.2.0" + "version": "2.2.0", + "from": "del@2.2.0", + "resolved": "https://registry.npmjs.org/del/-/del-2.2.0.tgz" }, "delayed-stream": { - "version": "1.0.0" + "version": "1.0.0", + "from": "delayed-stream@>=1.0.0 <1.1.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz" }, "delegates": { - "version": "1.0.0" + "version": "1.0.0", + "from": "delegates@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz" }, "diff": { - "version": "2.2.2" + "version": "2.2.2", + "from": "diff@2.2.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-2.2.2.tgz" }, "doctrine": { "version": "1.2.0", + "from": "doctrine@1.2.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-1.2.0.tgz", "dependencies": { "esutils": { - "version": "1.1.6" + "version": "1.1.6", + "from": "esutils@1.1.6", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-1.1.6.tgz" } } }, "ecc-jsbn": { - "version": "0.1.1" + "version": "0.1.1", + "from": "ecc-jsbn@>=0.0.1 <1.0.0", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz" }, "es5-ext": { - "version": "0.10.11" + "version": "0.10.11", + "from": "es5-ext@0.10.11", + "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.11.tgz" }, "es6-iterator": { - "version": "2.0.0" + "version": "2.0.0", + "from": "es6-iterator@2.0.0", + "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.0.tgz" }, "es6-map": { - "version": "0.1.3" + "version": "0.1.3", + "from": "es6-map@0.1.3", + "resolved": "https://registry.npmjs.org/es6-map/-/es6-map-0.1.3.tgz" }, "es6-set": { - "version": "0.1.4" + "version": "0.1.4", + "from": "es6-set@0.1.4", + "resolved": "https://registry.npmjs.org/es6-set/-/es6-set-0.1.4.tgz" }, "es6-symbol": { - "version": "3.0.2" + "version": "3.0.2", + "from": "es6-symbol@3.0.2", + "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.0.2.tgz" }, "es6-weak-map": { - "version": "2.0.1" + "version": "2.0.1", + "from": "es6-weak-map@2.0.1", + "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.1.tgz" }, "escape-string-regexp": { - "version": "1.0.5" + "version": "1.0.5", + "from": "escape-string-regexp@>=1.0.2 <2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" }, "escope": { - "version": "3.6.0" + "version": "3.6.0", + "from": "escope@3.6.0", + "resolved": "https://registry.npmjs.org/escope/-/escope-3.6.0.tgz" + }, + "eslint-config-hapi": { + "version": "3.0.2", + "from": "eslint-config-hapi@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/eslint-config-hapi/-/eslint-config-hapi-3.0.2.tgz" + }, + "eslint-plugin-hapi": { + "version": "1.2.2", + "from": "eslint-plugin-hapi@>=1.2.2 <2.0.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-hapi/-/eslint-plugin-hapi-1.2.2.tgz", + "dependencies": { + "hapi-scope-start": { + "version": "1.1.4", + "from": "hapi-scope-start@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/hapi-scope-start/-/hapi-scope-start-1.1.4.tgz" + } + } }, "espree": { - "version": "3.1.3" + "version": "3.1.3", + "from": "espree@3.1.3", + "resolved": "https://registry.npmjs.org/espree/-/espree-3.1.3.tgz" }, "esprima": { - "version": "2.7.2" + "version": "2.7.2", + "from": "esprima@2.7.2", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-2.7.2.tgz" }, "esrecurse": { "version": "4.1.0", + "from": "esrecurse@4.1.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.1.0.tgz", "dependencies": { "estraverse": { - "version": "4.1.1" + "version": "4.1.1", + "from": "estraverse@4.1.1", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.1.1.tgz" } } }, "estraverse": { - "version": "4.2.0" + "version": "4.2.0", + "from": "estraverse@4.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz" }, "estraverse-fb": { - "version": "1.3.1" + "version": "1.3.1", + "from": "estraverse-fb@1.3.1", + "resolved": "https://registry.npmjs.org/estraverse-fb/-/estraverse-fb-1.3.1.tgz" }, "esutils": { - "version": "2.0.2" + "version": "2.0.2", + "from": "esutils@2.0.2", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz" }, "event-emitter": { - "version": "0.3.4" + "version": "0.3.4", + "from": "event-emitter@0.3.4", + "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.4.tgz" }, "exit": { - "version": "0.1.2" + "version": "0.1.2", + "from": "exit@0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz" }, "exit-hook": { - "version": "1.1.1" + "version": "1.1.1", + "from": "exit-hook@1.1.1", + "resolved": "https://registry.npmjs.org/exit-hook/-/exit-hook-1.1.1.tgz" }, "extend": { - "version": "3.0.0" + "version": "3.0.0", + "from": "extend@>=3.0.0 <3.1.0", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.0.tgz" }, "extsprintf": { - "version": "1.0.2" + "version": "1.0.2", + "from": "extsprintf@1.0.2", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.0.2.tgz" }, "fast-levenshtein": { - "version": "1.1.3" + "version": "1.1.3", + "from": "fast-levenshtein@1.1.3", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-1.1.3.tgz" }, "figures": { - "version": "1.5.0" + "version": "1.5.0", + "from": "figures@1.5.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-1.5.0.tgz" }, "file-entry-cache": { - "version": "1.2.4" + "version": "1.2.4", + "from": "file-entry-cache@1.2.4", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-1.2.4.tgz" }, "flat-cache": { - "version": "1.0.10" + "version": "1.0.10", + "from": "flat-cache@1.0.10", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-1.0.10.tgz" }, "forever-agent": { - "version": "0.6.1" + "version": "0.6.1", + "from": "forever-agent@>=0.6.1 <0.7.0", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz" }, "form-data": { - "version": "1.0.0-rc4" + "version": "1.0.0-rc4", + "from": "form-data@>=1.0.0-rc3 <1.1.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-1.0.0-rc4.tgz" }, "gauge": { - "version": "1.2.7" + "version": "1.2.7", + "from": "gauge@>=1.2.5 <1.3.0", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-1.2.7.tgz" }, "generate-function": { - "version": "2.0.0" + "version": "2.0.0", + "from": "generate-function@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/generate-function/-/generate-function-2.0.0.tgz" }, "generate-object-property": { - "version": "1.2.0" + "version": "1.2.0", + "from": "generate-object-property@>=1.1.0 <2.0.0", + "resolved": "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz" }, "get-stdin": { - "version": "3.0.2" + "version": "3.0.2", + "from": "get-stdin@3.0.2", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-3.0.2.tgz" }, "glob": { - "version": "7.0.3" + "version": "7.0.3", + "from": "glob@>=7.0.0 <8.0.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.0.3.tgz", + "dependencies": { + "path-is-absolute": { + "version": "1.0.0", + "from": "path-is-absolute@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.0.tgz" + } + } }, "globals": { - "version": "9.2.0" + "version": "9.2.0", + "from": "globals@9.2.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-9.2.0.tgz" }, "globby": { "version": "4.0.0", + "from": "globby@4.0.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-4.0.0.tgz", "dependencies": { "glob": { - "version": "6.0.4" + "version": "6.0.4", + "from": "glob@6.0.4", + "resolved": "https://registry.npmjs.org/glob/-/glob-6.0.4.tgz" } } }, "graceful-fs": { - "version": "4.1.3" + "version": "4.1.3", + "from": "graceful-fs@>=4.1.2 <5.0.0", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.3.tgz" }, "graceful-readlink": { - "version": "1.0.1" + "version": "1.0.1", + "from": "graceful-readlink@>=1.0.0", + "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz" }, "handlebars": { - "version": "4.0.5" + "version": "4.0.5", + "from": "handlebars@4.0.5", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.0.5.tgz" }, "hapi-capitalize-modules": { - "version": "1.1.4" + "version": "1.1.4", + "from": "hapi-capitalize-modules@1.1.4", + "resolved": "https://registry.npmjs.org/hapi-capitalize-modules/-/hapi-capitalize-modules-1.1.4.tgz" }, "hapi-for-you": { - "version": "1.0.0" + "version": "1.0.0", + "from": "hapi-for-you@1.0.0", + "resolved": "https://registry.npmjs.org/hapi-for-you/-/hapi-for-you-1.0.0.tgz" }, "hapi-scope-start": { - "version": "2.1.1" + "version": "2.1.1", + "from": "hapi-scope-start@2.1.1", + "resolved": "https://registry.npmjs.org/hapi-scope-start/-/hapi-scope-start-2.1.1.tgz" }, "har-validator": { - "version": "2.0.6" + "version": "2.0.6", + "from": "har-validator@>=2.0.6 <2.1.0", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-2.0.6.tgz" }, "has-ansi": { - "version": "2.0.0" + "version": "2.0.0", + "from": "has-ansi@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz" }, "has-unicode": { - "version": "2.0.0" + "version": "2.0.0", + "from": "has-unicode@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.0.tgz" }, "hawk": { - "version": "3.1.3" + "version": "3.1.3", + "from": "hawk@>=3.1.0 <3.2.0", + "resolved": "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz" }, "hoek": { - "version": "2.16.3" + "version": "2.16.3", + "from": "hoek@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz" }, "hosted-git-info": { - "version": "2.1.4" + "version": "2.1.4", + "from": "hosted-git-info@>=2.1.4 <3.0.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.1.4.tgz" }, "http-signature": { - "version": "1.1.1" + "version": "1.1.1", + "from": "http-signature@>=1.1.0 <1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz" }, "https-proxy-agent": { - "version": "1.0.0" + "version": "1.0.0", + "from": "https-proxy-agent@1.0.0", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-1.0.0.tgz" }, "ignore": { - "version": "3.0.13" + "version": "3.0.13", + "from": "ignore@3.0.13", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.0.13.tgz" }, "imurmurhash": { - "version": "0.1.4" + "version": "0.1.4", + "from": "imurmurhash@0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz" }, "inflight": { - "version": "1.0.4" + "version": "1.0.4", + "from": "inflight@>=1.0.4 <2.0.0", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.4.tgz" }, "inherits": { - "version": "2.0.1" + "version": "2.0.1", + "from": "inherits@>=2.0.1 <2.1.0", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" }, "ini": { - "version": "1.3.4" + "version": "1.3.4", + "from": "ini@1.3.4", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.4.tgz" }, "inquirer": { - "version": "0.12.0" + "version": "0.12.0", + "from": "inquirer@0.12.0", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-0.12.0.tgz" }, "is-buffer": { - "version": "1.1.3" + "version": "1.1.3", + "from": "is-buffer@1.1.3", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.3.tgz" }, "is-builtin-module": { - "version": "1.0.0" + "version": "1.0.0", + "from": "is-builtin-module@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz" }, "is-fullwidth-code-point": { - "version": "1.0.0" + "version": "1.0.0", + "from": "is-fullwidth-code-point@1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz" }, "is-my-json-valid": { - "version": "2.13.1" + "version": "2.13.1", + "from": "is-my-json-valid@>=2.12.4 <3.0.0", + "resolved": "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.13.1.tgz" }, "is-path-cwd": { - "version": "1.0.0" + "version": "1.0.0", + "from": "is-path-cwd@1.0.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-1.0.0.tgz" }, "is-path-in-cwd": { - "version": "1.0.0" + "version": "1.0.0", + "from": "is-path-in-cwd@1.0.0", + "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz" }, "is-path-inside": { - "version": "1.0.0" + "version": "1.0.0", + "from": "is-path-inside@1.0.0", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.0.tgz" }, "is-property": { - "version": "1.0.2" + "version": "1.0.2", + "from": "is-property@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz" }, "is-resolvable": { - "version": "1.0.0" + "version": "1.0.0", + "from": "is-resolvable@1.0.0", + "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.0.0.tgz" }, "is-typedarray": { - "version": "1.0.0" + "version": "1.0.0", + "from": "is-typedarray@>=1.0.0 <1.1.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz" }, "isarray": { - "version": "1.0.0" + "version": "1.0.0", + "from": "isarray@>=1.0.0 <1.1.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz" }, "isemail": { - "version": "1.2.0" + "version": "1.2.0", + "from": "isemail@1.2.0", + "resolved": "https://registry.npmjs.org/isemail/-/isemail-1.2.0.tgz" }, "isstream": { - "version": "0.1.2" + "version": "0.1.2", + "from": "isstream@>=0.1.2 <0.2.0", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz" }, "items": { - "version": "1.1.1" + "version": "1.1.1", + "from": "items@1.1.1", + "resolved": "https://registry.npmjs.org/items/-/items-1.1.1.tgz" }, "jodid25519": { - "version": "1.0.2" + "version": "1.0.2", + "from": "jodid25519@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/jodid25519/-/jodid25519-1.0.2.tgz" }, "joi": { - "version": "6.10.1" + "version": "6.10.1", + "from": "joi@6.10.1", + "resolved": "https://registry.npmjs.org/joi/-/joi-6.10.1.tgz" }, "js-yaml": { - "version": "3.5.5" + "version": "3.5.5", + "from": "js-yaml@3.5.5", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.5.5.tgz" }, "jsbn": { - "version": "0.1.0" + "version": "0.1.0", + "from": "jsbn@>=0.1.0 <0.2.0", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.0.tgz" }, "jslint": { "version": "0.9.6", + "from": "jslint@0.9.6", + "resolved": "https://registry.npmjs.org/jslint/-/jslint-0.9.6.tgz", "dependencies": { "glob": { - "version": "4.5.3" + "version": "4.5.3", + "from": "glob@4.5.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-4.5.3.tgz" }, "isarray": { - "version": "0.0.1" + "version": "0.0.1", + "from": "isarray@0.0.1" }, "minimatch": { - "version": "2.0.10" + "version": "2.0.10", + "from": "minimatch@2.0.10" }, "readable-stream": { - "version": "1.0.33" + "version": "1.0.33", + "from": "readable-stream@1.0.33", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz" } } }, "json-schema": { - "version": "0.2.2" + "version": "0.2.2", + "from": "json-schema@0.2.2", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.2.tgz" }, "json-stable-stringify": { - "version": "1.0.1" + "version": "1.0.1", + "from": "json-stable-stringify@1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz" }, "json-stringify-safe": { - "version": "5.0.1" + "version": "5.0.1", + "from": "json-stringify-safe@>=5.0.1 <5.1.0", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz" }, "jsonify": { - "version": "0.0.0" + "version": "0.0.0", + "from": "jsonify@0.0.0", + "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz" }, "jsonpointer": { - "version": "2.0.0" + "version": "2.0.0", + "from": "jsonpointer@2.0.0", + "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-2.0.0.tgz" }, "jsprim": { - "version": "1.2.2" + "version": "1.2.2", + "from": "jsprim@>=1.2.2 <2.0.0", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.2.2.tgz" }, "kind-of": { - "version": "3.0.2" + "version": "3.0.2", + "from": "kind-of@3.0.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.0.2.tgz" }, "lazy-cache": { - "version": "1.0.3" + "version": "1.0.3", + "from": "lazy-cache@1.0.3", + "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.3.tgz" }, "levn": { - "version": "0.3.0" + "version": "0.3.0", + "from": "levn@0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz" }, "lodash": { - "version": "4.6.1" + "version": "4.6.1", + "from": "lodash@4.6.1", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.6.1.tgz" }, "lodash._arraycopy": { - "version": "3.0.0" + "version": "3.0.0", + "from": "lodash._arraycopy@3.0.0", + "resolved": "https://registry.npmjs.org/lodash._arraycopy/-/lodash._arraycopy-3.0.0.tgz" }, "lodash._arrayeach": { - "version": "3.0.0" + "version": "3.0.0", + "from": "lodash._arrayeach@3.0.0", + "resolved": "https://registry.npmjs.org/lodash._arrayeach/-/lodash._arrayeach-3.0.0.tgz" }, "lodash._arraymap": { - "version": "3.0.0" + "version": "3.0.0", + "from": "lodash._arraymap@3.0.0", + "resolved": "https://registry.npmjs.org/lodash._arraymap/-/lodash._arraymap-3.0.0.tgz" }, "lodash._baseassign": { - "version": "3.2.0" + "version": "3.2.0", + "from": "lodash._baseassign@3.2.0", + "resolved": "https://registry.npmjs.org/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz" }, "lodash._baseclone": { - "version": "3.3.0" + "version": "3.3.0", + "from": "lodash._baseclone@3.3.0", + "resolved": "https://registry.npmjs.org/lodash._baseclone/-/lodash._baseclone-3.3.0.tgz" }, "lodash._basecopy": { - "version": "3.0.1" + "version": "3.0.1", + "from": "lodash._basecopy@3.0.1", + "resolved": "https://registry.npmjs.org/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz" }, "lodash._basedifference": { - "version": "3.0.3" + "version": "3.0.3", + "from": "lodash._basedifference@3.0.3", + "resolved": "https://registry.npmjs.org/lodash._basedifference/-/lodash._basedifference-3.0.3.tgz" }, "lodash._baseflatten": { - "version": "3.1.4" + "version": "3.1.4", + "from": "lodash._baseflatten@3.1.4", + "resolved": "https://registry.npmjs.org/lodash._baseflatten/-/lodash._baseflatten-3.1.4.tgz" }, "lodash._basefor": { - "version": "3.0.3" + "version": "3.0.3", + "from": "lodash._basefor@3.0.3", + "resolved": "https://registry.npmjs.org/lodash._basefor/-/lodash._basefor-3.0.3.tgz" }, "lodash._baseindexof": { - "version": "3.1.0" + "version": "3.1.0", + "from": "lodash._baseindexof@3.1.0", + "resolved": "https://registry.npmjs.org/lodash._baseindexof/-/lodash._baseindexof-3.1.0.tgz" }, "lodash._bindcallback": { - "version": "3.0.1" + "version": "3.0.1", + "from": "lodash._bindcallback@3.0.1", + "resolved": "https://registry.npmjs.org/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz" }, "lodash._cacheindexof": { - "version": "3.0.2" + "version": "3.0.2", + "from": "lodash._cacheindexof@3.0.2", + "resolved": "https://registry.npmjs.org/lodash._cacheindexof/-/lodash._cacheindexof-3.0.2.tgz" }, "lodash._createassigner": { - "version": "3.1.1" + "version": "3.1.1", + "from": "lodash._createassigner@3.1.1", + "resolved": "https://registry.npmjs.org/lodash._createassigner/-/lodash._createassigner-3.1.1.tgz" }, "lodash._createcache": { - "version": "3.1.2" + "version": "3.1.2", + "from": "lodash._createcache@3.1.2", + "resolved": "https://registry.npmjs.org/lodash._createcache/-/lodash._createcache-3.1.2.tgz" }, "lodash._getnative": { - "version": "3.9.1" + "version": "3.9.1", + "from": "lodash._getnative@3.9.1", + "resolved": "https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz" }, "lodash._isiterateecall": { - "version": "3.0.9" + "version": "3.0.9", + "from": "lodash._isiterateecall@3.0.9", + "resolved": "https://registry.npmjs.org/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz" }, "lodash._pickbyarray": { - "version": "3.0.2" + "version": "3.0.2", + "from": "lodash._pickbyarray@3.0.2", + "resolved": "https://registry.npmjs.org/lodash._pickbyarray/-/lodash._pickbyarray-3.0.2.tgz" }, "lodash._pickbycallback": { - "version": "3.0.0" + "version": "3.0.0", + "from": "lodash._pickbycallback@3.0.0", + "resolved": "https://registry.npmjs.org/lodash._pickbycallback/-/lodash._pickbycallback-3.0.0.tgz" }, "lodash.clonedeep": { - "version": "3.0.2" + "version": "3.0.2", + "from": "lodash.clonedeep@3.0.2", + "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-3.0.2.tgz" }, "lodash.isarguments": { - "version": "3.0.8" + "version": "3.0.8", + "from": "lodash.isarguments@3.0.8", + "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.0.8.tgz" }, "lodash.isarray": { - "version": "3.0.4" + "version": "3.0.4", + "from": "lodash.isarray@3.0.4", + "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz" }, "lodash.isplainobject": { - "version": "3.2.0" + "version": "3.2.0", + "from": "lodash.isplainobject@3.2.0", + "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-3.2.0.tgz" }, "lodash.istypedarray": { - "version": "3.0.5" + "version": "3.0.5", + "from": "lodash.istypedarray@3.0.5", + "resolved": "https://registry.npmjs.org/lodash.istypedarray/-/lodash.istypedarray-3.0.5.tgz" }, "lodash.keys": { - "version": "3.1.2" + "version": "3.1.2", + "from": "lodash.keys@3.1.2", + "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz" }, "lodash.keysin": { - "version": "3.0.8" + "version": "3.0.8", + "from": "lodash.keysin@3.0.8", + "resolved": "https://registry.npmjs.org/lodash.keysin/-/lodash.keysin-3.0.8.tgz" }, "lodash.merge": { - "version": "3.3.2" + "version": "3.3.2", + "from": "lodash.merge@3.3.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-3.3.2.tgz" }, "lodash.omit": { - "version": "3.1.0" + "version": "3.1.0", + "from": "lodash.omit@3.1.0", + "resolved": "https://registry.npmjs.org/lodash.omit/-/lodash.omit-3.1.0.tgz" }, "lodash.pad": { - "version": "4.1.0" + "version": "4.1.0", + "from": "lodash.pad@>=4.1.0 <5.0.0", + "resolved": "https://registry.npmjs.org/lodash.pad/-/lodash.pad-4.1.0.tgz" }, "lodash.padend": { - "version": "4.2.0" + "version": "4.2.0", + "from": "lodash.padend@>=4.1.0 <5.0.0", + "resolved": "https://registry.npmjs.org/lodash.padend/-/lodash.padend-4.2.0.tgz" }, "lodash.padstart": { - "version": "4.2.0" + "version": "4.2.0", + "from": "lodash.padstart@>=4.1.0 <5.0.0", + "resolved": "https://registry.npmjs.org/lodash.padstart/-/lodash.padstart-4.2.0.tgz" }, "lodash.repeat": { - "version": "4.0.0" + "version": "4.0.0", + "from": "lodash.repeat@>=4.0.0 <5.0.0", + "resolved": "https://registry.npmjs.org/lodash.repeat/-/lodash.repeat-4.0.0.tgz" }, "lodash.restparam": { - "version": "3.6.1" + "version": "3.6.1", + "from": "lodash.restparam@3.6.1", + "resolved": "https://registry.npmjs.org/lodash.restparam/-/lodash.restparam-3.6.1.tgz" }, "lodash.toplainobject": { - "version": "3.0.0" + "version": "3.0.0", + "from": "lodash.toplainobject@3.0.0", + "resolved": "https://registry.npmjs.org/lodash.toplainobject/-/lodash.toplainobject-3.0.0.tgz" }, "lodash.tostring": { - "version": "4.1.2" + "version": "4.1.2", + "from": "lodash.tostring@>=4.0.0 <5.0.0", + "resolved": "https://registry.npmjs.org/lodash.tostring/-/lodash.tostring-4.1.2.tgz" }, "longest": { - "version": "1.0.1" + "version": "1.0.1", + "from": "longest@1.0.1", + "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz" }, "lru-cache": { - "version": "4.0.1" + "version": "4.0.1", + "from": "lru-cache@>=4.0.0 <5.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.0.1.tgz" }, "mime-db": { - "version": "1.22.0" + "version": "1.22.0", + "from": "mime-db@>=1.22.0 <1.23.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.22.0.tgz" }, "mime-types": { - "version": "2.1.10" + "version": "2.1.10", + "from": "mime-types@>=2.1.7 <2.2.0", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.10.tgz" }, "minimatch": { - "version": "3.0.0" + "version": "3.0.0", + "from": "minimatch@>=2.0.0 <3.0.0||>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.0.tgz" }, "minimist": { - "version": "0.0.8" + "version": "0.0.8", + "from": "minimist@0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz" }, "mkdirp": { - "version": "0.5.1" + "version": "0.5.1", + "from": "mkdirp@>=0.5.0 <0.6.0", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz" }, "moment": { - "version": "2.12.0" + "version": "2.12.0", + "from": "moment@2.12.0", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.12.0.tgz" }, "ms": { - "version": "0.7.1" + "version": "0.7.1", + "from": "ms@0.7.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz" }, "mute-stream": { - "version": "0.0.5" + "version": "0.0.5", + "from": "mute-stream@0.0.5", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.5.tgz" }, "no-arrowception": { - "version": "1.0.0" + "version": "1.0.0", + "from": "no-arrowception@1.0.0", + "resolved": "https://registry.npmjs.org/no-arrowception/-/no-arrowception-1.0.0.tgz" }, "no-shadow-relaxed": { "version": "1.0.1", + "from": "no-shadow-relaxed@1.0.1", + "resolved": "https://registry.npmjs.org/no-shadow-relaxed/-/no-shadow-relaxed-1.0.1.tgz", "dependencies": { "ansi-regex": { - "version": "1.1.1" + "version": "1.1.1", + "from": "ansi-regex@1.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-1.1.1.tgz" }, "cli-width": { - "version": "1.1.1" + "version": "1.1.1", + "from": "cli-width@1.1.1", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-1.1.1.tgz" }, "doctrine": { - "version": "0.6.4" + "version": "0.6.4", + "from": "doctrine@0.6.4", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-0.6.4.tgz" }, "eslint": { - "version": "0.24.1" + "version": "0.24.1", + "from": "eslint@0.24.1", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-0.24.1.tgz" }, "espree": { - "version": "2.2.5" + "version": "2.2.5", + "from": "espree@2.2.5", + "resolved": "https://registry.npmjs.org/espree/-/espree-2.2.5.tgz" }, "esutils": { - "version": "1.1.6" + "version": "1.1.6", + "from": "esutils@1.1.6", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-1.1.6.tgz" }, "fast-levenshtein": { - "version": "1.0.7" + "version": "1.0.7", + "from": "fast-levenshtein@1.0.7", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-1.0.7.tgz" }, "globals": { - "version": "8.18.0" + "version": "8.18.0", + "from": "globals@8.18.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-8.18.0.tgz" }, "inquirer": { - "version": "0.8.5" + "version": "0.8.5", + "from": "inquirer@0.8.5", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-0.8.5.tgz" }, "isarray": { - "version": "0.0.1" + "version": "0.0.1", + "from": "isarray@0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" }, "levn": { - "version": "0.2.5" + "version": "0.2.5", + "from": "levn@0.2.5", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.2.5.tgz" }, "lodash": { - "version": "3.10.1" + "version": "3.10.1", + "from": "lodash@3.10.1", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz" }, "minimatch": { - "version": "2.0.10" + "version": "2.0.10", + "from": "minimatch@2.0.10", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz" }, "mute-stream": { - "version": "0.0.4" + "version": "0.0.4", + "from": "mute-stream@0.0.4", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.4.tgz" }, "object-assign": { - "version": "2.1.1" + "version": "2.1.1", + "from": "object-assign@2.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-2.1.1.tgz" }, "optionator": { - "version": "0.5.0" + "version": "0.5.0", + "from": "optionator@0.5.0", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.5.0.tgz" }, "readline2": { - "version": "0.1.1" + "version": "0.1.1", + "from": "readline2@0.1.1", + "resolved": "https://registry.npmjs.org/readline2/-/readline2-0.1.1.tgz" }, "strip-ansi": { - "version": "2.0.1" + "version": "2.0.1", + "from": "strip-ansi@2.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-2.0.1.tgz" }, "user-home": { - "version": "1.1.1" + "version": "1.1.1", + "from": "user-home@1.1.1", + "resolved": "https://registry.npmjs.org/user-home/-/user-home-1.1.1.tgz" }, "wordwrap": { - "version": "0.0.3" + "version": "0.0.3", + "from": "wordwrap@0.0.3", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz" } } }, "node-uuid": { - "version": "1.4.7" + "version": "1.4.7", + "from": "node-uuid@>=1.4.7 <1.5.0", + "resolved": "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.7.tgz" }, "nodesecurity-npm-utils": { - "version": "3.2.0" + "version": "4.0.1", + "from": "nodesecurity-npm-utils@4.0.1", + "resolved": "https://registry.npmjs.org/nodesecurity-npm-utils/-/nodesecurity-npm-utils-4.0.1.tgz" }, "nopt": { - "version": "3.0.6" + "version": "3.0.6", + "from": "nopt@3.0.6", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz" }, "normalize-package-data": { - "version": "2.3.5" + "version": "2.3.5", + "from": "normalize-package-data@>=1.0.1 <1.1.0||>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.3.5.tgz" }, "npm-package-arg": { - "version": "4.1.0" + "version": "4.1.0", + "from": "npm-package-arg@>=3.0.0 <4.0.0||>=4.0.0 <5.0.0", + "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-4.1.0.tgz" }, "npm-registry-client": { - "version": "7.1.0" + "version": "7.1.0", + "from": "npm-registry-client@>=7.0.9 <8.0.0", + "resolved": "https://registry.npmjs.org/npm-registry-client/-/npm-registry-client-7.1.0.tgz" }, "npmlog": { - "version": "2.0.3" + "version": "2.0.3", + "from": "npmlog@>=2.0.0 <2.1.0", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-2.0.3.tgz" }, "number-is-nan": { - "version": "1.0.0" + "version": "1.0.0", + "from": "number-is-nan@1.0.0", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.0.tgz" }, "oauth-sign": { - "version": "0.8.1" + "version": "0.8.1", + "from": "oauth-sign@>=0.8.0 <0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.1.tgz" }, "object-assign": { - "version": "4.0.1" + "version": "4.0.1", + "from": "object-assign@4.0.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.0.1.tgz" }, "once": { - "version": "1.3.3" + "version": "1.3.3", + "from": "once@>=1.3.0 <2.0.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.3.3.tgz" }, "onetime": { - "version": "1.1.0" + "version": "1.1.0", + "from": "onetime@1.1.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz" }, "optimist": { "version": "0.6.1", + "from": "optimist@0.6.1", + "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz", "dependencies": { "wordwrap": { - "version": "0.0.3" + "version": "0.0.3", + "from": "wordwrap@0.0.3", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz" } } }, "optionator": { - "version": "0.8.1" + "version": "0.8.1", + "from": "optionator@0.8.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.1.tgz" }, "os-homedir": { - "version": "1.0.1" + "version": "1.0.1", + "from": "os-homedir@1.0.1", + "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.1.tgz" }, "path-is-absolute": { - "version": "1.0.0" + "version": "1.0.0", + "from": "path-is-absolute@1.0.0", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.0.tgz" }, "path-is-inside": { - "version": "1.0.1" + "version": "1.0.1", + "from": "path-is-inside@1.0.1", + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.1.tgz" }, "pify": { - "version": "2.3.0" + "version": "2.3.0", + "from": "pify@2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz" }, "pinkie": { - "version": "2.0.4" + "version": "2.0.4", + "from": "pinkie@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz" }, "pinkie-promise": { - "version": "2.0.0" + "version": "2.0.0", + "from": "pinkie-promise@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.0.tgz" }, "pluralize": { - "version": "1.2.1" + "version": "1.2.1", + "from": "pluralize@1.2.1", + "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-1.2.1.tgz" }, "prelude-ls": { - "version": "1.1.2" + "version": "1.1.2", + "from": "prelude-ls@1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz" }, "process-nextick-args": { - "version": "1.0.6" + "version": "1.0.6", + "from": "process-nextick-args@>=1.0.6 <1.1.0", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.6.tgz" }, "progress": { - "version": "1.1.8" + "version": "1.1.8", + "from": "progress@1.1.8", + "resolved": "https://registry.npmjs.org/progress/-/progress-1.1.8.tgz" }, "propagate": { - "version": "0.3.1" + "version": "0.3.1", + "from": "propagate@>=0.3.0 <0.4.0", + "resolved": "https://registry.npmjs.org/propagate/-/propagate-0.3.1.tgz" }, "pseudomap": { - "version": "1.0.2" + "version": "1.0.2", + "from": "pseudomap@>=1.0.1 <2.0.0", + "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz" }, "qs": { - "version": "6.0.2" + "version": "6.0.2", + "from": "qs@>=6.0.2 <6.1.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.0.2.tgz" }, "rc": { "version": "1.1.6", + "from": "rc@1.1.6", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.1.6.tgz", "dependencies": { "minimist": { - "version": "1.2.0" + "version": "1.2.0", + "from": "minimist@1.2.0", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz" } } }, "read-json-sync": { - "version": "1.1.1" + "version": "1.1.1", + "from": "read-json-sync@1.1.1", + "resolved": "https://registry.npmjs.org/read-json-sync/-/read-json-sync-1.1.1.tgz" }, "readable-stream": { - "version": "2.0.6" + "version": "2.0.6", + "from": "readable-stream@>=2.0.0 <2.1.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz" }, "readline2": { - "version": "1.0.1" + "version": "1.0.1", + "from": "readline2@1.0.1", + "resolved": "https://registry.npmjs.org/readline2/-/readline2-1.0.1.tgz" }, "repeat-string": { - "version": "1.5.4" + "version": "1.5.4", + "from": "repeat-string@1.5.4", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.5.4.tgz" }, "request": { - "version": "2.69.0" + "version": "2.69.0", + "from": "request@>=2.47.0 <3.0.0", + "resolved": "https://registry.npmjs.org/request/-/request-2.69.0.tgz" }, "require-uncached": { - "version": "1.0.2" + "version": "1.0.2", + "from": "require-uncached@1.0.2", + "resolved": "https://registry.npmjs.org/require-uncached/-/require-uncached-1.0.2.tgz" }, "resolve": { - "version": "1.1.7" + "version": "1.1.7", + "from": "resolve@1.1.7", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz" }, "resolve-from": { - "version": "1.0.1" + "version": "1.0.1", + "from": "resolve-from@1.0.1", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-1.0.1.tgz" }, "restore-cursor": { - "version": "1.0.1" + "version": "1.0.1", + "from": "restore-cursor@1.0.1", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-1.0.1.tgz" }, "retry": { - "version": "0.8.0" + "version": "0.8.0", + "from": "retry@>=0.8.0 <0.9.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.8.0.tgz" }, "right-align": { - "version": "0.1.3" + "version": "0.1.3", + "from": "right-align@0.1.3", + "resolved": "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz" }, "rimraf": { - "version": "2.5.2" + "version": "2.5.2", + "from": "rimraf@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.5.2.tgz" }, "run-async": { - "version": "0.1.0" + "version": "0.1.0", + "from": "run-async@0.1.0", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-0.1.0.tgz" }, "rx": { - "version": "2.5.3" + "version": "2.5.3", + "from": "rx@2.5.3", + "resolved": "https://registry.npmjs.org/rx/-/rx-2.5.3.tgz" }, "rx-lite": { - "version": "3.1.2" + "version": "3.1.2", + "from": "rx-lite@3.1.2", + "resolved": "https://registry.npmjs.org/rx-lite/-/rx-lite-3.1.2.tgz" }, "semver": { - "version": "5.1.0" + "version": "5.1.0", + "from": "semver@5.1.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.1.0.tgz" }, "shelljs": { - "version": "0.6.0" + "version": "0.6.0", + "from": "shelljs@0.6.0", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.6.0.tgz" }, "silent-npm-registry-client": { - "version": "2.0.0" + "version": "2.0.0", + "from": "silent-npm-registry-client@2.0.0", + "resolved": "https://registry.npmjs.org/silent-npm-registry-client/-/silent-npm-registry-client-2.0.0.tgz" }, "slice-ansi": { - "version": "0.0.4" + "version": "0.0.4", + "from": "slice-ansi@0.0.4", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-0.0.4.tgz" }, "slide": { - "version": "1.1.6" + "version": "1.1.6", + "from": "slide@>=1.1.3 <2.0.0", + "resolved": "https://registry.npmjs.org/slide/-/slide-1.1.6.tgz" }, "sntp": { - "version": "1.0.9" + "version": "1.0.9", + "from": "sntp@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz" }, "source-map": { - "version": "0.4.4" + "version": "0.4.4", + "from": "source-map@0.4.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz" }, "source-map-support": { "version": "0.3.3", + "from": "source-map-support@0.3.3", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.3.3.tgz", "dependencies": { "source-map": { - "version": "0.1.32" + "version": "0.1.32", + "from": "source-map@0.1.32", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.1.32.tgz" } } }, "spdx-correct": { - "version": "1.0.2" + "version": "1.0.2", + "from": "spdx-correct@>=1.0.0 <1.1.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-1.0.2.tgz" }, "spdx-exceptions": { - "version": "1.0.4" + "version": "1.0.4", + "from": "spdx-exceptions@>=1.0.4 <2.0.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-1.0.4.tgz" }, "spdx-expression-parse": { - "version": "1.0.2" + "version": "1.0.2", + "from": "spdx-expression-parse@>=1.0.0 <1.1.0", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-1.0.2.tgz" }, "spdx-license-ids": { - "version": "1.2.0" + "version": "1.2.0", + "from": "spdx-license-ids@>=1.0.2 <2.0.0", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.0.tgz" }, "sprintf-js": { - "version": "1.0.3" + "version": "1.0.3", + "from": "sprintf-js@1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz" }, "sshpk": { - "version": "1.7.4" + "version": "1.7.4", + "from": "sshpk@>=1.7.0 <2.0.0", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.7.4.tgz" }, "string_decoder": { - "version": "0.10.31" + "version": "0.10.31", + "from": "string_decoder@>=0.10.0 <0.11.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" }, "string-width": { - "version": "1.0.1" + "version": "1.0.1", + "from": "string-width@1.0.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.1.tgz" }, "stringstream": { - "version": "0.0.5" + "version": "0.0.5", + "from": "stringstream@>=0.0.4 <0.1.0", + "resolved": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz" }, "strip-ansi": { - "version": "3.0.1" + "version": "3.0.1", + "from": "strip-ansi@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz" }, "strip-json-comments": { - "version": "1.0.4" + "version": "1.0.4", + "from": "strip-json-comments@1.0.4", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-1.0.4.tgz" }, "subcommand": { "version": "2.0.3", + "from": "subcommand@2.0.3", + "resolved": "https://registry.npmjs.org/subcommand/-/subcommand-2.0.3.tgz", "dependencies": { "minimist": { - "version": "1.2.0" + "version": "1.2.0", + "from": "minimist@1.2.0", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz" } } }, "supports-color": { - "version": "2.0.0" + "version": "2.0.0", + "from": "supports-color@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz" }, "table": { - "version": "3.7.8" + "version": "3.7.8", + "from": "table@3.7.8", + "resolved": "https://registry.npmjs.org/table/-/table-3.7.8.tgz" }, "text-table": { - "version": "0.2.0" + "version": "0.2.0", + "from": "text-table@0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz" }, "through": { - "version": "2.3.8" + "version": "2.3.8", + "from": "through@2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz" }, "to-double-quotes": { - "version": "1.0.2" + "version": "1.0.2", + "from": "to-double-quotes@1.0.2", + "resolved": "https://registry.npmjs.org/to-double-quotes/-/to-double-quotes-1.0.2.tgz" }, "to-single-quotes": { - "version": "1.0.4" + "version": "1.0.4", + "from": "to-single-quotes@1.0.4", + "resolved": "https://registry.npmjs.org/to-single-quotes/-/to-single-quotes-1.0.4.tgz" }, "topo": { - "version": "1.1.0" + "version": "1.1.0", + "from": "topo@1.1.0", + "resolved": "https://registry.npmjs.org/topo/-/topo-1.1.0.tgz" }, "tough-cookie": { - "version": "2.2.2" + "version": "2.2.2", + "from": "tough-cookie@>=2.2.0 <2.3.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.2.2.tgz" }, "tryit": { - "version": "1.0.2" + "version": "1.0.2", + "from": "tryit@1.0.2", + "resolved": "https://registry.npmjs.org/tryit/-/tryit-1.0.2.tgz" }, "tunnel-agent": { - "version": "0.4.2" + "version": "0.4.2", + "from": "tunnel-agent@>=0.4.1 <0.5.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.2.tgz" }, "tv4": { - "version": "1.2.7" + "version": "1.2.7", + "from": "tv4@1.2.7", + "resolved": "https://registry.npmjs.org/tv4/-/tv4-1.2.7.tgz" }, "tweetnacl": { - "version": "0.14.3" + "version": "0.14.3", + "from": "tweetnacl@>=0.13.0 <1.0.0", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.3.tgz" }, "type-check": { - "version": "0.3.2" + "version": "0.3.2", + "from": "type-check@0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz" }, "type-detect": { - "version": "1.0.0" + "version": "1.0.0", + "from": "type-detect@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-1.0.0.tgz" }, "typedarray": { - "version": "0.0.6" + "version": "0.0.6", + "from": "typedarray@>=0.0.5 <0.1.0", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz" }, "uglify-js": { "version": "2.6.2", + "from": "uglify-js@2.6.2", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.6.2.tgz", "dependencies": { "async": { - "version": "0.2.10" + "version": "0.2.10", + "from": "async@0.2.10", + "resolved": "https://registry.npmjs.org/async/-/async-0.2.10.tgz" }, "source-map": { - "version": "0.5.3" + "version": "0.5.3", + "from": "source-map@0.5.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.3.tgz" } } }, "uglify-to-browserify": { - "version": "1.0.2" + "version": "1.0.2", + "from": "uglify-to-browserify@1.0.2", + "resolved": "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz" }, "user-home": { - "version": "2.0.0" + "version": "2.0.0", + "from": "user-home@2.0.0", + "resolved": "https://registry.npmjs.org/user-home/-/user-home-2.0.0.tgz" }, "util-deprecate": { - "version": "1.0.2" + "version": "1.0.2", + "from": "util-deprecate@>=1.0.1 <1.1.0", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" }, "validate-npm-package-license": { - "version": "3.0.1" + "version": "3.0.1", + "from": "validate-npm-package-license@>=3.0.1 <4.0.0", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz" }, "verror": { - "version": "1.3.6" + "version": "1.3.6", + "from": "verror@1.3.6", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.3.6.tgz" }, "window-size": { - "version": "0.1.0" + "version": "0.1.0", + "from": "window-size@0.1.0", + "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz" }, "wordwrap": { - "version": "1.0.0" + "version": "1.0.0", + "from": "wordwrap@1.0.0", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz" }, "wrappy": { - "version": "1.0.1" + "version": "1.0.1", + "from": "wrappy@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz" }, "wreck": { - "version": "6.3.0" + "version": "6.3.0", + "from": "wreck@6.3.0", + "resolved": "https://registry.npmjs.org/wreck/-/wreck-6.3.0.tgz" }, "write": { - "version": "0.2.1" + "version": "0.2.1", + "from": "write@0.2.1", + "resolved": "https://registry.npmjs.org/write/-/write-0.2.1.tgz" }, "xml-escape": { - "version": "1.0.0" + "version": "1.0.0", + "from": "xml-escape@1.0.0", + "resolved": "https://registry.npmjs.org/xml-escape/-/xml-escape-1.0.0.tgz" }, "xregexp": { - "version": "3.1.0" + "version": "3.1.0", + "from": "xregexp@3.1.0", + "resolved": "https://registry.npmjs.org/xregexp/-/xregexp-3.1.0.tgz" }, "xtend": { - "version": "4.0.1" + "version": "4.0.1", + "from": "xtend@>=4.0.0 <5.0.0", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz" }, "yallist": { - "version": "2.0.0" + "version": "2.0.0", + "from": "yallist@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.0.0.tgz" }, "yargs": { - "version": "3.10.0" + "version": "3.10.0", + "from": "yargs@3.10.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz" } } -} \ No newline at end of file +} diff --git a/package.json b/package.json index 5426fab..22b552d 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ "cli-table": "^0.3.1", "https-proxy-agent": "^1.0.0", "joi": "^6.9.1", - "nodesecurity-npm-utils": "^3.2.0", + "nodesecurity-npm-utils": "^4.0.1", "path-is-absolute": "^1.0.0", "rc": "^1.1.2", "semver": "^5.0.3", @@ -24,8 +24,8 @@ "eslint-config-nodesecurity": "^1.3.1", "eslint-plugin-hapi": "^1.2.2", "git-validate": "^2.1.0", - "lab": "^6.1.0", - "nock": "^2.15.0", + "lab": "^6.2.0", + "nock": "^7.7.2", "shrinkydink": "^1.0.0" }, "keywords": [ From 1f032f9bceafa34515d277a2bb23409be9d60099 Mon Sep 17 00:00:00 2001 From: Michael Garvin Date: Tue, 29 Mar 2016 11:26:01 -0700 Subject: [PATCH 07/11] add test enforcing X-NSP-VERSION header in request --- test/unit.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/test/unit.js b/test/unit.js index b9249a2..c79e722 100644 --- a/test/unit.js +++ b/test/unit.js @@ -5,6 +5,7 @@ var Lab = require('lab'); var Nock = require('nock'); var Path = require('path'); var Check = require('../lib/check.js'); +var Pkg = require('../package.json'); var lab = exports.lab = Lab.script(); var describe = lab.describe; @@ -248,5 +249,22 @@ describe('check', function () { }); }); + it('Includes X-NSP-VERSION in headers', function (done) { + + Nock('https://api.nodesecurity.io', { + reqheaders: { + 'X-NSP-VERSION': Pkg.version + } + }) + .post('/check') + .reply(200, Findings); + + Check(workingOptions, function (err, results) { + + expect(err).to.not.exist(); + done(); + }); + }); + }); From 58ad46ddf2167fbaba48a3f59a95bd1bc20c22f8 Mon Sep 17 00:00:00 2001 From: Michael Garvin Date: Tue, 29 Mar 2016 14:06:41 -0700 Subject: [PATCH 08/11] update shrinkwrap --- npm-shrinkwrap.json | 1296 +++++++++++-------------------------------- 1 file changed, 319 insertions(+), 977 deletions(-) diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json index 2392232..a615284 100644 --- a/npm-shrinkwrap.json +++ b/npm-shrinkwrap.json @@ -3,1666 +3,1008 @@ "version": "2.2.2", "dependencies": { "abbrev": { - "version": "1.0.7", - "from": "abbrev@1.0.7", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.0.7.tgz" + "version": "1.0.7" }, "acorn": { - "version": "3.0.4", - "from": "acorn@3.0.4", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-3.0.4.tgz" + "version": "3.0.4" }, "acorn-jsx": { "version": "2.0.1", - "from": "acorn-jsx@2.0.1", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-2.0.1.tgz", "dependencies": { "acorn": { - "version": "2.7.0", - "from": "acorn@2.7.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-2.7.0.tgz" + "version": "2.7.0" } } }, "agent-base": { "version": "2.0.1", - "from": "agent-base@2.0.1", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-2.0.1.tgz", "dependencies": { "semver": { - "version": "5.0.3", - "from": "semver@5.0.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.0.3.tgz" + "version": "5.0.3" } } }, "align-text": { - "version": "0.1.4", - "from": "align-text@0.1.4", - "resolved": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz" + "version": "0.1.4" }, "amdefine": { - "version": "1.0.0", - "from": "amdefine@1.0.0", - "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.0.tgz" + "version": "1.0.0" }, "ansi": { - "version": "0.3.1", - "from": "ansi@>=0.3.1 <0.4.0", - "resolved": "https://registry.npmjs.org/ansi/-/ansi-0.3.1.tgz" + "version": "0.3.1" }, "ansi-escapes": { - "version": "1.3.0", - "from": "ansi-escapes@1.3.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-1.3.0.tgz" + "version": "1.3.0" }, "ansi-regex": { - "version": "2.0.0", - "from": "ansi-regex@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.0.0.tgz" + "version": "2.0.0" }, "ansi-styles": { - "version": "2.2.1", - "from": "ansi-styles@>=2.2.1 <3.0.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz" + "version": "2.2.1" }, "are-we-there-yet": { - "version": "1.1.2", - "from": "are-we-there-yet@>=1.1.2 <1.2.0", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz" + "version": "1.1.2" }, "argparse": { - "version": "1.0.7", - "from": "argparse@1.0.7", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.7.tgz" + "version": "1.0.7" }, "array-union": { - "version": "1.0.1", - "from": "array-union@1.0.1", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.1.tgz" + "version": "1.0.1" }, "array-uniq": { - "version": "1.0.2", - "from": "array-uniq@1.0.2", - "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.2.tgz" + "version": "1.0.2" }, "arrify": { - "version": "1.0.1", - "from": "arrify@1.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz" + "version": "1.0.1" }, "asn1": { - "version": "0.2.3", - "from": "asn1@>=0.2.3 <0.3.0", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz" + "version": "0.2.3" }, "assert-plus": { - "version": "0.2.0", - "from": "assert-plus@>=0.2.0 <0.3.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz" + "version": "0.2.0" }, "assertion-error": { - "version": "1.0.1", - "from": "assertion-error@>=1.0.1 <2.0.0", - "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.0.1.tgz" + "version": "1.0.1" }, "async": { - "version": "1.5.2", - "from": "async@>=1.5.2 <2.0.0", - "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz" + "version": "1.5.2" }, "aws-sign2": { - "version": "0.6.0", - "from": "aws-sign2@>=0.6.0 <0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz" + "version": "0.6.0" }, "aws4": { - "version": "1.3.2", - "from": "aws4@>=1.2.1 <2.0.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.3.2.tgz" + "version": "1.3.2" }, "balanced-match": { - "version": "0.3.0", - "from": "balanced-match@>=0.3.0 <0.4.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.3.0.tgz" + "version": "0.3.0" }, "bl": { - "version": "1.0.3", - "from": "bl@>=1.0.0 <1.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.3.tgz" + "version": "1.0.3" }, "bluebird": { - "version": "3.3.4", - "from": "bluebird@3.3.4", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.3.4.tgz" + "version": "3.3.4" }, "boom": { - "version": "2.10.1", - "from": "boom@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz" + "version": "2.10.1" }, "bossy": { - "version": "1.0.3", - "from": "bossy@1.0.3", - "resolved": "https://registry.npmjs.org/bossy/-/bossy-1.0.3.tgz" + "version": "1.0.3" }, "brace-expansion": { - "version": "1.1.3", - "from": "brace-expansion@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.3.tgz" + "version": "1.1.3" }, "builtin-modules": { - "version": "1.1.1", - "from": "builtin-modules@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz" + "version": "1.1.1" }, "caller-path": { - "version": "0.1.0", - "from": "caller-path@0.1.0", - "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-0.1.0.tgz" + "version": "0.1.0" }, "callsites": { - "version": "0.2.0", - "from": "callsites@0.2.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-0.2.0.tgz" + "version": "0.2.0" }, "camelcase": { - "version": "1.2.1", - "from": "camelcase@1.2.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz" + "version": "1.2.1" }, "caseless": { - "version": "0.11.0", - "from": "caseless@>=0.11.0 <0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz" + "version": "0.11.0" }, "center-align": { - "version": "0.1.3", - "from": "center-align@0.1.3", - "resolved": "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz" + "version": "0.1.3" }, "chai": { - "version": "3.5.0", - "from": "chai@>=1.9.2 <4.0.0", - "resolved": "https://registry.npmjs.org/chai/-/chai-3.5.0.tgz" + "version": "3.5.0" }, "chalk": { - "version": "1.1.3", - "from": "chalk@1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz" + "version": "1.1.3" }, "chownr": { - "version": "1.0.1", - "from": "chownr@>=1.0.1 <2.0.0", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.0.1.tgz" + "version": "1.0.1" }, "cli-cursor": { - "version": "1.0.2", - "from": "cli-cursor@1.0.2", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-1.0.2.tgz" + "version": "1.0.2" }, "cli-table": { - "version": "0.3.1", - "from": "cli-table@0.3.1", - "resolved": "https://registry.npmjs.org/cli-table/-/cli-table-0.3.1.tgz" + "version": "0.3.1" }, "cli-width": { - "version": "2.1.0", - "from": "cli-width@2.1.0", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.1.0.tgz" + "version": "2.1.0" }, "cliclopts": { - "version": "1.1.1", - "from": "cliclopts@1.1.1", - "resolved": "https://registry.npmjs.org/cliclopts/-/cliclopts-1.1.1.tgz" + "version": "1.1.1" }, "cliui": { "version": "2.1.0", - "from": "cliui@2.1.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz", "dependencies": { "wordwrap": { - "version": "0.0.2", - "from": "wordwrap@0.0.2", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz" + "version": "0.0.2" } } }, "code-point-at": { - "version": "1.0.0", - "from": "code-point-at@1.0.0", - "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.0.0.tgz" + "version": "1.0.0" }, "colors": { - "version": "1.0.3", - "from": "colors@1.0.3", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz" + "version": "1.0.3" }, "combined-stream": { - "version": "1.0.5", - "from": "combined-stream@>=1.0.5 <1.1.0", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz" + "version": "1.0.5" }, "commander": { - "version": "2.9.0", - "from": "commander@>=2.9.0 <3.0.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz" + "version": "2.9.0" }, "concat-map": { - "version": "0.0.1", - "from": "concat-map@0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" + "version": "0.0.1" }, "concat-stream": { - "version": "1.5.1", - "from": "concat-stream@>=1.4.6 <2.0.0", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.5.1.tgz" + "version": "1.5.1" }, "core-util-is": { - "version": "1.0.2", - "from": "core-util-is@>=1.0.0 <1.1.0", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz" + "version": "1.0.2" }, "cryptiles": { - "version": "2.0.5", - "from": "cryptiles@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz" + "version": "2.0.5" }, "d": { - "version": "0.1.1", - "from": "d@0.1.1", - "resolved": "https://registry.npmjs.org/d/-/d-0.1.1.tgz" + "version": "0.1.1" }, "dashdash": { "version": "1.13.0", - "from": "dashdash@>=1.10.1 <2.0.0", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.13.0.tgz", "dependencies": { "assert-plus": { - "version": "1.0.0", - "from": "assert-plus@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz" + "version": "1.0.0" } } }, "debug": { - "version": "2.2.0", - "from": "debug@>=2.2.0 <3.0.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz" + "version": "2.2.0" }, "decamelize": { - "version": "1.2.0", - "from": "decamelize@1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz" + "version": "1.2.0" }, "deep-eql": { "version": "0.1.3", - "from": "deep-eql@>=0.1.3 <0.2.0", - "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-0.1.3.tgz", "dependencies": { "type-detect": { - "version": "0.1.1", - "from": "type-detect@0.1.1", - "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-0.1.1.tgz" + "version": "0.1.1" } } }, "deep-equal": { - "version": "1.0.1", - "from": "deep-equal@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz" + "version": "1.0.1" }, "deep-extend": { - "version": "0.4.1", - "from": "deep-extend@0.4.1", - "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.4.1.tgz" + "version": "0.4.1" }, "deep-is": { - "version": "0.1.3", - "from": "deep-is@0.1.3", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz" + "version": "0.1.3" }, "del": { - "version": "2.2.0", - "from": "del@2.2.0", - "resolved": "https://registry.npmjs.org/del/-/del-2.2.0.tgz" + "version": "2.2.0" }, "delayed-stream": { - "version": "1.0.0", - "from": "delayed-stream@>=1.0.0 <1.1.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz" + "version": "1.0.0" }, "delegates": { - "version": "1.0.0", - "from": "delegates@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz" + "version": "1.0.0" }, "diff": { - "version": "2.2.2", - "from": "diff@2.2.2", - "resolved": "https://registry.npmjs.org/diff/-/diff-2.2.2.tgz" + "version": "2.2.2" }, "doctrine": { "version": "1.2.0", - "from": "doctrine@1.2.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-1.2.0.tgz", "dependencies": { "esutils": { - "version": "1.1.6", - "from": "esutils@1.1.6", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-1.1.6.tgz" + "version": "1.1.6" } } }, "ecc-jsbn": { - "version": "0.1.1", - "from": "ecc-jsbn@>=0.0.1 <1.0.0", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz" + "version": "0.1.1" }, "es5-ext": { - "version": "0.10.11", - "from": "es5-ext@0.10.11", - "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.11.tgz" + "version": "0.10.11" }, "es6-iterator": { - "version": "2.0.0", - "from": "es6-iterator@2.0.0", - "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.0.tgz" + "version": "2.0.0" }, "es6-map": { - "version": "0.1.3", - "from": "es6-map@0.1.3", - "resolved": "https://registry.npmjs.org/es6-map/-/es6-map-0.1.3.tgz" + "version": "0.1.3" }, "es6-set": { - "version": "0.1.4", - "from": "es6-set@0.1.4", - "resolved": "https://registry.npmjs.org/es6-set/-/es6-set-0.1.4.tgz" + "version": "0.1.4" }, "es6-symbol": { - "version": "3.0.2", - "from": "es6-symbol@3.0.2", - "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.0.2.tgz" + "version": "3.0.2" }, "es6-weak-map": { - "version": "2.0.1", - "from": "es6-weak-map@2.0.1", - "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.1.tgz" + "version": "2.0.1" }, "escape-string-regexp": { - "version": "1.0.5", - "from": "escape-string-regexp@>=1.0.2 <2.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" + "version": "1.0.5" }, "escope": { - "version": "3.6.0", - "from": "escope@3.6.0", - "resolved": "https://registry.npmjs.org/escope/-/escope-3.6.0.tgz" + "version": "3.6.0" }, "eslint-config-hapi": { - "version": "3.0.2", - "from": "eslint-config-hapi@>=3.0.0 <4.0.0", - "resolved": "https://registry.npmjs.org/eslint-config-hapi/-/eslint-config-hapi-3.0.2.tgz" - }, - "eslint-plugin-hapi": { - "version": "1.2.2", - "from": "eslint-plugin-hapi@>=1.2.2 <2.0.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-hapi/-/eslint-plugin-hapi-1.2.2.tgz", - "dependencies": { - "hapi-scope-start": { - "version": "1.1.4", - "from": "hapi-scope-start@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/hapi-scope-start/-/hapi-scope-start-1.1.4.tgz" - } - } + "version": "3.0.2" }, "espree": { - "version": "3.1.3", - "from": "espree@3.1.3", - "resolved": "https://registry.npmjs.org/espree/-/espree-3.1.3.tgz" + "version": "3.1.3" }, "esprima": { - "version": "2.7.2", - "from": "esprima@2.7.2", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-2.7.2.tgz" + "version": "2.7.2" }, "esrecurse": { "version": "4.1.0", - "from": "esrecurse@4.1.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.1.0.tgz", "dependencies": { "estraverse": { - "version": "4.1.1", - "from": "estraverse@4.1.1", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.1.1.tgz" + "version": "4.1.1" } } }, "estraverse": { - "version": "4.2.0", - "from": "estraverse@4.2.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz" + "version": "4.2.0" }, "estraverse-fb": { - "version": "1.3.1", - "from": "estraverse-fb@1.3.1", - "resolved": "https://registry.npmjs.org/estraverse-fb/-/estraverse-fb-1.3.1.tgz" + "version": "1.3.1" }, "esutils": { - "version": "2.0.2", - "from": "esutils@2.0.2", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz" + "version": "2.0.2" }, "event-emitter": { - "version": "0.3.4", - "from": "event-emitter@0.3.4", - "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.4.tgz" + "version": "0.3.4" }, "exit": { - "version": "0.1.2", - "from": "exit@0.1.2", - "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz" + "version": "0.1.2" }, "exit-hook": { - "version": "1.1.1", - "from": "exit-hook@1.1.1", - "resolved": "https://registry.npmjs.org/exit-hook/-/exit-hook-1.1.1.tgz" + "version": "1.1.1" }, "extend": { - "version": "3.0.0", - "from": "extend@>=3.0.0 <3.1.0", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.0.tgz" + "version": "3.0.0" }, "extsprintf": { - "version": "1.0.2", - "from": "extsprintf@1.0.2", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.0.2.tgz" + "version": "1.0.2" }, "fast-levenshtein": { - "version": "1.1.3", - "from": "fast-levenshtein@1.1.3", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-1.1.3.tgz" + "version": "1.1.3" }, "figures": { - "version": "1.5.0", - "from": "figures@1.5.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-1.5.0.tgz" + "version": "1.5.0" }, "file-entry-cache": { - "version": "1.2.4", - "from": "file-entry-cache@1.2.4", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-1.2.4.tgz" + "version": "1.2.4" }, "flat-cache": { - "version": "1.0.10", - "from": "flat-cache@1.0.10", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-1.0.10.tgz" + "version": "1.0.10" }, "forever-agent": { - "version": "0.6.1", - "from": "forever-agent@>=0.6.1 <0.7.0", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz" + "version": "0.6.1" }, "form-data": { - "version": "1.0.0-rc4", - "from": "form-data@>=1.0.0-rc3 <1.1.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-1.0.0-rc4.tgz" + "version": "1.0.0-rc4" }, "gauge": { - "version": "1.2.7", - "from": "gauge@>=1.2.5 <1.3.0", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-1.2.7.tgz" + "version": "1.2.7" }, "generate-function": { - "version": "2.0.0", - "from": "generate-function@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/generate-function/-/generate-function-2.0.0.tgz" + "version": "2.0.0" }, "generate-object-property": { - "version": "1.2.0", - "from": "generate-object-property@>=1.1.0 <2.0.0", - "resolved": "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz" + "version": "1.2.0" }, "get-stdin": { - "version": "3.0.2", - "from": "get-stdin@3.0.2", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-3.0.2.tgz" + "version": "3.0.2" }, "glob": { "version": "7.0.3", - "from": "glob@>=7.0.0 <8.0.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.0.3.tgz", "dependencies": { "path-is-absolute": { - "version": "1.0.0", - "from": "path-is-absolute@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.0.tgz" + "version": "1.0.0" } } }, "globals": { - "version": "9.2.0", - "from": "globals@9.2.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-9.2.0.tgz" + "version": "9.2.0" }, "globby": { "version": "4.0.0", - "from": "globby@4.0.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-4.0.0.tgz", "dependencies": { "glob": { - "version": "6.0.4", - "from": "glob@6.0.4", - "resolved": "https://registry.npmjs.org/glob/-/glob-6.0.4.tgz" + "version": "6.0.4" } } }, "graceful-fs": { - "version": "4.1.3", - "from": "graceful-fs@>=4.1.2 <5.0.0", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.3.tgz" + "version": "4.1.3" }, "graceful-readlink": { - "version": "1.0.1", - "from": "graceful-readlink@>=1.0.0", - "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz" + "version": "1.0.1" }, "handlebars": { - "version": "4.0.5", - "from": "handlebars@4.0.5", - "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.0.5.tgz" + "version": "4.0.5" }, "hapi-capitalize-modules": { - "version": "1.1.4", - "from": "hapi-capitalize-modules@1.1.4", - "resolved": "https://registry.npmjs.org/hapi-capitalize-modules/-/hapi-capitalize-modules-1.1.4.tgz" + "version": "1.1.4" }, "hapi-for-you": { - "version": "1.0.0", - "from": "hapi-for-you@1.0.0", - "resolved": "https://registry.npmjs.org/hapi-for-you/-/hapi-for-you-1.0.0.tgz" + "version": "1.0.0" }, "hapi-scope-start": { - "version": "2.1.1", - "from": "hapi-scope-start@2.1.1", - "resolved": "https://registry.npmjs.org/hapi-scope-start/-/hapi-scope-start-2.1.1.tgz" + "version": "2.1.1" }, "har-validator": { - "version": "2.0.6", - "from": "har-validator@>=2.0.6 <2.1.0", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-2.0.6.tgz" + "version": "2.0.6" }, "has-ansi": { - "version": "2.0.0", - "from": "has-ansi@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz" + "version": "2.0.0" }, "has-unicode": { - "version": "2.0.0", - "from": "has-unicode@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.0.tgz" + "version": "2.0.0" }, "hawk": { - "version": "3.1.3", - "from": "hawk@>=3.1.0 <3.2.0", - "resolved": "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz" + "version": "3.1.3" }, "hoek": { - "version": "2.16.3", - "from": "hoek@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz" + "version": "2.16.3" }, "hosted-git-info": { - "version": "2.1.4", - "from": "hosted-git-info@>=2.1.4 <3.0.0", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.1.4.tgz" + "version": "2.1.4" }, "http-signature": { - "version": "1.1.1", - "from": "http-signature@>=1.1.0 <1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz" + "version": "1.1.1" }, "https-proxy-agent": { - "version": "1.0.0", - "from": "https-proxy-agent@1.0.0", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-1.0.0.tgz" + "version": "1.0.0" }, "ignore": { - "version": "3.0.13", - "from": "ignore@3.0.13", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.0.13.tgz" + "version": "3.0.13" }, "imurmurhash": { - "version": "0.1.4", - "from": "imurmurhash@0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz" + "version": "0.1.4" }, "inflight": { - "version": "1.0.4", - "from": "inflight@>=1.0.4 <2.0.0", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.4.tgz" + "version": "1.0.4" }, "inherits": { - "version": "2.0.1", - "from": "inherits@>=2.0.1 <2.1.0", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" + "version": "2.0.1" }, "ini": { - "version": "1.3.4", - "from": "ini@1.3.4", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.4.tgz" + "version": "1.3.4" }, "inquirer": { - "version": "0.12.0", - "from": "inquirer@0.12.0", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-0.12.0.tgz" + "version": "0.12.0" }, "is-buffer": { - "version": "1.1.3", - "from": "is-buffer@1.1.3", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.3.tgz" + "version": "1.1.3" }, "is-builtin-module": { - "version": "1.0.0", - "from": "is-builtin-module@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz" + "version": "1.0.0" }, "is-fullwidth-code-point": { - "version": "1.0.0", - "from": "is-fullwidth-code-point@1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz" + "version": "1.0.0" }, "is-my-json-valid": { - "version": "2.13.1", - "from": "is-my-json-valid@>=2.12.4 <3.0.0", - "resolved": "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.13.1.tgz" + "version": "2.13.1" }, "is-path-cwd": { - "version": "1.0.0", - "from": "is-path-cwd@1.0.0", - "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-1.0.0.tgz" + "version": "1.0.0" }, "is-path-in-cwd": { - "version": "1.0.0", - "from": "is-path-in-cwd@1.0.0", - "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz" + "version": "1.0.0" }, "is-path-inside": { - "version": "1.0.0", - "from": "is-path-inside@1.0.0", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.0.tgz" + "version": "1.0.0" }, "is-property": { - "version": "1.0.2", - "from": "is-property@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz" + "version": "1.0.2" }, "is-resolvable": { - "version": "1.0.0", - "from": "is-resolvable@1.0.0", - "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.0.0.tgz" + "version": "1.0.0" }, "is-typedarray": { - "version": "1.0.0", - "from": "is-typedarray@>=1.0.0 <1.1.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz" + "version": "1.0.0" }, "isarray": { - "version": "1.0.0", - "from": "isarray@>=1.0.0 <1.1.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz" + "version": "1.0.0" }, "isemail": { - "version": "1.2.0", - "from": "isemail@1.2.0", - "resolved": "https://registry.npmjs.org/isemail/-/isemail-1.2.0.tgz" + "version": "1.2.0" }, "isstream": { - "version": "0.1.2", - "from": "isstream@>=0.1.2 <0.2.0", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz" + "version": "0.1.2" }, "items": { - "version": "1.1.1", - "from": "items@1.1.1", - "resolved": "https://registry.npmjs.org/items/-/items-1.1.1.tgz" + "version": "1.1.1" }, "jodid25519": { - "version": "1.0.2", - "from": "jodid25519@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/jodid25519/-/jodid25519-1.0.2.tgz" + "version": "1.0.2" }, "joi": { - "version": "6.10.1", - "from": "joi@6.10.1", - "resolved": "https://registry.npmjs.org/joi/-/joi-6.10.1.tgz" + "version": "6.10.1" }, "js-yaml": { - "version": "3.5.5", - "from": "js-yaml@3.5.5", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.5.5.tgz" + "version": "3.5.5" }, "jsbn": { - "version": "0.1.0", - "from": "jsbn@>=0.1.0 <0.2.0", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.0.tgz" + "version": "0.1.0" }, "jslint": { "version": "0.9.6", - "from": "jslint@0.9.6", - "resolved": "https://registry.npmjs.org/jslint/-/jslint-0.9.6.tgz", "dependencies": { "glob": { - "version": "4.5.3", - "from": "glob@4.5.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-4.5.3.tgz" + "version": "4.5.3" + }, + "readable-stream": { + "version": "1.0.33" }, "isarray": { - "version": "0.0.1", - "from": "isarray@0.0.1" + "version": "0.0.1" }, "minimatch": { - "version": "2.0.10", - "from": "minimatch@2.0.10" - }, - "readable-stream": { - "version": "1.0.33", - "from": "readable-stream@1.0.33", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz" + "version": "2.0.10" } } }, "json-schema": { - "version": "0.2.2", - "from": "json-schema@0.2.2", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.2.tgz" + "version": "0.2.2" }, "json-stable-stringify": { - "version": "1.0.1", - "from": "json-stable-stringify@1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz" + "version": "1.0.1" }, "json-stringify-safe": { - "version": "5.0.1", - "from": "json-stringify-safe@>=5.0.1 <5.1.0", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz" + "version": "5.0.1" }, "jsonify": { - "version": "0.0.0", - "from": "jsonify@0.0.0", - "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz" + "version": "0.0.0" }, "jsonpointer": { - "version": "2.0.0", - "from": "jsonpointer@2.0.0", - "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-2.0.0.tgz" + "version": "2.0.0" }, "jsprim": { - "version": "1.2.2", - "from": "jsprim@>=1.2.2 <2.0.0", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.2.2.tgz" + "version": "1.2.2" }, "kind-of": { - "version": "3.0.2", - "from": "kind-of@3.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.0.2.tgz" + "version": "3.0.2" }, "lazy-cache": { - "version": "1.0.3", - "from": "lazy-cache@1.0.3", - "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.3.tgz" + "version": "1.0.3" }, "levn": { - "version": "0.3.0", - "from": "levn@0.3.0", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz" + "version": "0.3.0" }, "lodash": { - "version": "4.6.1", - "from": "lodash@4.6.1", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.6.1.tgz" + "version": "4.6.1" }, "lodash._arraycopy": { - "version": "3.0.0", - "from": "lodash._arraycopy@3.0.0", - "resolved": "https://registry.npmjs.org/lodash._arraycopy/-/lodash._arraycopy-3.0.0.tgz" + "version": "3.0.0" }, "lodash._arrayeach": { - "version": "3.0.0", - "from": "lodash._arrayeach@3.0.0", - "resolved": "https://registry.npmjs.org/lodash._arrayeach/-/lodash._arrayeach-3.0.0.tgz" + "version": "3.0.0" }, "lodash._arraymap": { - "version": "3.0.0", - "from": "lodash._arraymap@3.0.0", - "resolved": "https://registry.npmjs.org/lodash._arraymap/-/lodash._arraymap-3.0.0.tgz" + "version": "3.0.0" }, "lodash._baseassign": { - "version": "3.2.0", - "from": "lodash._baseassign@3.2.0", - "resolved": "https://registry.npmjs.org/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz" + "version": "3.2.0" }, "lodash._baseclone": { - "version": "3.3.0", - "from": "lodash._baseclone@3.3.0", - "resolved": "https://registry.npmjs.org/lodash._baseclone/-/lodash._baseclone-3.3.0.tgz" + "version": "3.3.0" }, "lodash._basecopy": { - "version": "3.0.1", - "from": "lodash._basecopy@3.0.1", - "resolved": "https://registry.npmjs.org/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz" + "version": "3.0.1" }, "lodash._basedifference": { - "version": "3.0.3", - "from": "lodash._basedifference@3.0.3", - "resolved": "https://registry.npmjs.org/lodash._basedifference/-/lodash._basedifference-3.0.3.tgz" + "version": "3.0.3" }, "lodash._baseflatten": { - "version": "3.1.4", - "from": "lodash._baseflatten@3.1.4", - "resolved": "https://registry.npmjs.org/lodash._baseflatten/-/lodash._baseflatten-3.1.4.tgz" + "version": "3.1.4" }, "lodash._basefor": { - "version": "3.0.3", - "from": "lodash._basefor@3.0.3", - "resolved": "https://registry.npmjs.org/lodash._basefor/-/lodash._basefor-3.0.3.tgz" + "version": "3.0.3" }, "lodash._baseindexof": { - "version": "3.1.0", - "from": "lodash._baseindexof@3.1.0", - "resolved": "https://registry.npmjs.org/lodash._baseindexof/-/lodash._baseindexof-3.1.0.tgz" + "version": "3.1.0" }, "lodash._bindcallback": { - "version": "3.0.1", - "from": "lodash._bindcallback@3.0.1", - "resolved": "https://registry.npmjs.org/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz" + "version": "3.0.1" }, "lodash._cacheindexof": { - "version": "3.0.2", - "from": "lodash._cacheindexof@3.0.2", - "resolved": "https://registry.npmjs.org/lodash._cacheindexof/-/lodash._cacheindexof-3.0.2.tgz" + "version": "3.0.2" }, "lodash._createassigner": { - "version": "3.1.1", - "from": "lodash._createassigner@3.1.1", - "resolved": "https://registry.npmjs.org/lodash._createassigner/-/lodash._createassigner-3.1.1.tgz" + "version": "3.1.1" }, "lodash._createcache": { - "version": "3.1.2", - "from": "lodash._createcache@3.1.2", - "resolved": "https://registry.npmjs.org/lodash._createcache/-/lodash._createcache-3.1.2.tgz" + "version": "3.1.2" }, "lodash._getnative": { - "version": "3.9.1", - "from": "lodash._getnative@3.9.1", - "resolved": "https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz" + "version": "3.9.1" }, "lodash._isiterateecall": { - "version": "3.0.9", - "from": "lodash._isiterateecall@3.0.9", - "resolved": "https://registry.npmjs.org/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz" + "version": "3.0.9" }, "lodash._pickbyarray": { - "version": "3.0.2", - "from": "lodash._pickbyarray@3.0.2", - "resolved": "https://registry.npmjs.org/lodash._pickbyarray/-/lodash._pickbyarray-3.0.2.tgz" + "version": "3.0.2" }, "lodash._pickbycallback": { - "version": "3.0.0", - "from": "lodash._pickbycallback@3.0.0", - "resolved": "https://registry.npmjs.org/lodash._pickbycallback/-/lodash._pickbycallback-3.0.0.tgz" + "version": "3.0.0" }, "lodash.clonedeep": { - "version": "3.0.2", - "from": "lodash.clonedeep@3.0.2", - "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-3.0.2.tgz" + "version": "3.0.2" }, "lodash.isarguments": { - "version": "3.0.8", - "from": "lodash.isarguments@3.0.8", - "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.0.8.tgz" + "version": "3.0.8" }, "lodash.isarray": { - "version": "3.0.4", - "from": "lodash.isarray@3.0.4", - "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz" + "version": "3.0.4" }, "lodash.isplainobject": { - "version": "3.2.0", - "from": "lodash.isplainobject@3.2.0", - "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-3.2.0.tgz" + "version": "3.2.0" }, "lodash.istypedarray": { - "version": "3.0.5", - "from": "lodash.istypedarray@3.0.5", - "resolved": "https://registry.npmjs.org/lodash.istypedarray/-/lodash.istypedarray-3.0.5.tgz" + "version": "3.0.5" }, "lodash.keys": { - "version": "3.1.2", - "from": "lodash.keys@3.1.2", - "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz" + "version": "3.1.2" }, "lodash.keysin": { - "version": "3.0.8", - "from": "lodash.keysin@3.0.8", - "resolved": "https://registry.npmjs.org/lodash.keysin/-/lodash.keysin-3.0.8.tgz" + "version": "3.0.8" }, "lodash.merge": { - "version": "3.3.2", - "from": "lodash.merge@3.3.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-3.3.2.tgz" + "version": "3.3.2" }, "lodash.omit": { - "version": "3.1.0", - "from": "lodash.omit@3.1.0", - "resolved": "https://registry.npmjs.org/lodash.omit/-/lodash.omit-3.1.0.tgz" + "version": "3.1.0" }, "lodash.pad": { - "version": "4.1.0", - "from": "lodash.pad@>=4.1.0 <5.0.0", - "resolved": "https://registry.npmjs.org/lodash.pad/-/lodash.pad-4.1.0.tgz" + "version": "4.1.0" }, "lodash.padend": { - "version": "4.2.0", - "from": "lodash.padend@>=4.1.0 <5.0.0", - "resolved": "https://registry.npmjs.org/lodash.padend/-/lodash.padend-4.2.0.tgz" + "version": "4.2.0" }, "lodash.padstart": { - "version": "4.2.0", - "from": "lodash.padstart@>=4.1.0 <5.0.0", - "resolved": "https://registry.npmjs.org/lodash.padstart/-/lodash.padstart-4.2.0.tgz" + "version": "4.2.0" }, "lodash.repeat": { - "version": "4.0.0", - "from": "lodash.repeat@>=4.0.0 <5.0.0", - "resolved": "https://registry.npmjs.org/lodash.repeat/-/lodash.repeat-4.0.0.tgz" + "version": "4.0.0" }, "lodash.restparam": { - "version": "3.6.1", - "from": "lodash.restparam@3.6.1", - "resolved": "https://registry.npmjs.org/lodash.restparam/-/lodash.restparam-3.6.1.tgz" + "version": "3.6.1" }, "lodash.toplainobject": { - "version": "3.0.0", - "from": "lodash.toplainobject@3.0.0", - "resolved": "https://registry.npmjs.org/lodash.toplainobject/-/lodash.toplainobject-3.0.0.tgz" + "version": "3.0.0" }, "lodash.tostring": { - "version": "4.1.2", - "from": "lodash.tostring@>=4.0.0 <5.0.0", - "resolved": "https://registry.npmjs.org/lodash.tostring/-/lodash.tostring-4.1.2.tgz" + "version": "4.1.2" }, "longest": { - "version": "1.0.1", - "from": "longest@1.0.1", - "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz" + "version": "1.0.1" }, "lru-cache": { - "version": "4.0.1", - "from": "lru-cache@>=4.0.0 <5.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.0.1.tgz" + "version": "4.0.1" }, "mime-db": { - "version": "1.22.0", - "from": "mime-db@>=1.22.0 <1.23.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.22.0.tgz" + "version": "1.22.0" }, "mime-types": { - "version": "2.1.10", - "from": "mime-types@>=2.1.7 <2.2.0", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.10.tgz" + "version": "2.1.10" }, "minimatch": { - "version": "3.0.0", - "from": "minimatch@>=2.0.0 <3.0.0||>=3.0.0 <4.0.0", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.0.tgz" + "version": "3.0.0" }, "minimist": { - "version": "0.0.8", - "from": "minimist@0.0.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz" + "version": "0.0.8" }, "mkdirp": { - "version": "0.5.1", - "from": "mkdirp@>=0.5.0 <0.6.0", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz" + "version": "0.5.1" }, "moment": { - "version": "2.12.0", - "from": "moment@2.12.0", - "resolved": "https://registry.npmjs.org/moment/-/moment-2.12.0.tgz" + "version": "2.12.0" }, "ms": { - "version": "0.7.1", - "from": "ms@0.7.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz" + "version": "0.7.1" }, "mute-stream": { - "version": "0.0.5", - "from": "mute-stream@0.0.5", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.5.tgz" + "version": "0.0.5" }, "no-arrowception": { - "version": "1.0.0", - "from": "no-arrowception@1.0.0", - "resolved": "https://registry.npmjs.org/no-arrowception/-/no-arrowception-1.0.0.tgz" + "version": "1.0.0" }, "no-shadow-relaxed": { "version": "1.0.1", - "from": "no-shadow-relaxed@1.0.1", - "resolved": "https://registry.npmjs.org/no-shadow-relaxed/-/no-shadow-relaxed-1.0.1.tgz", "dependencies": { + "eslint": { + "version": "0.24.1" + }, "ansi-regex": { - "version": "1.1.1", - "from": "ansi-regex@1.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-1.1.1.tgz" + "version": "1.1.1" }, "cli-width": { - "version": "1.1.1", - "from": "cli-width@1.1.1", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-1.1.1.tgz" + "version": "1.1.1" }, "doctrine": { - "version": "0.6.4", - "from": "doctrine@0.6.4", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-0.6.4.tgz" - }, - "eslint": { - "version": "0.24.1", - "from": "eslint@0.24.1", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-0.24.1.tgz" + "version": "0.6.4" }, "espree": { - "version": "2.2.5", - "from": "espree@2.2.5", - "resolved": "https://registry.npmjs.org/espree/-/espree-2.2.5.tgz" + "version": "2.2.5" }, "esutils": { - "version": "1.1.6", - "from": "esutils@1.1.6", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-1.1.6.tgz" + "version": "1.1.6" }, "fast-levenshtein": { - "version": "1.0.7", - "from": "fast-levenshtein@1.0.7", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-1.0.7.tgz" + "version": "1.0.7" }, "globals": { - "version": "8.18.0", - "from": "globals@8.18.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-8.18.0.tgz" + "version": "8.18.0" }, "inquirer": { - "version": "0.8.5", - "from": "inquirer@0.8.5", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-0.8.5.tgz" + "version": "0.8.5" }, "isarray": { - "version": "0.0.1", - "from": "isarray@0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" + "version": "0.0.1" }, "levn": { - "version": "0.2.5", - "from": "levn@0.2.5", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.2.5.tgz" + "version": "0.2.5" }, "lodash": { - "version": "3.10.1", - "from": "lodash@3.10.1", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz" + "version": "3.10.1" }, "minimatch": { - "version": "2.0.10", - "from": "minimatch@2.0.10", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz" - }, - "mute-stream": { - "version": "0.0.4", - "from": "mute-stream@0.0.4", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.4.tgz" + "version": "2.0.10" }, "object-assign": { - "version": "2.1.1", - "from": "object-assign@2.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-2.1.1.tgz" + "version": "2.1.1" }, - "optionator": { - "version": "0.5.0", - "from": "optionator@0.5.0", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.5.0.tgz" + "mute-stream": { + "version": "0.0.4" }, - "readline2": { - "version": "0.1.1", - "from": "readline2@0.1.1", - "resolved": "https://registry.npmjs.org/readline2/-/readline2-0.1.1.tgz" + "optionator": { + "version": "0.5.0" }, "strip-ansi": { - "version": "2.0.1", - "from": "strip-ansi@2.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-2.0.1.tgz" + "version": "2.0.1" + }, + "readline2": { + "version": "0.1.1" }, "user-home": { - "version": "1.1.1", - "from": "user-home@1.1.1", - "resolved": "https://registry.npmjs.org/user-home/-/user-home-1.1.1.tgz" + "version": "1.1.1" }, "wordwrap": { - "version": "0.0.3", - "from": "wordwrap@0.0.3", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz" + "version": "0.0.3" } } }, "node-uuid": { - "version": "1.4.7", - "from": "node-uuid@>=1.4.7 <1.5.0", - "resolved": "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.7.tgz" + "version": "1.4.7" }, "nodesecurity-npm-utils": { - "version": "4.0.1", - "from": "nodesecurity-npm-utils@4.0.1", - "resolved": "https://registry.npmjs.org/nodesecurity-npm-utils/-/nodesecurity-npm-utils-4.0.1.tgz" + "version": "4.0.1" }, "nopt": { - "version": "3.0.6", - "from": "nopt@3.0.6", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz" + "version": "3.0.6" }, "normalize-package-data": { - "version": "2.3.5", - "from": "normalize-package-data@>=1.0.1 <1.1.0||>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.3.5.tgz" + "version": "2.3.5" }, "npm-package-arg": { - "version": "4.1.0", - "from": "npm-package-arg@>=3.0.0 <4.0.0||>=4.0.0 <5.0.0", - "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-4.1.0.tgz" + "version": "4.1.0" }, "npm-registry-client": { - "version": "7.1.0", - "from": "npm-registry-client@>=7.0.9 <8.0.0", - "resolved": "https://registry.npmjs.org/npm-registry-client/-/npm-registry-client-7.1.0.tgz" + "version": "7.1.0" }, "npmlog": { - "version": "2.0.3", - "from": "npmlog@>=2.0.0 <2.1.0", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-2.0.3.tgz" + "version": "2.0.3" }, "number-is-nan": { - "version": "1.0.0", - "from": "number-is-nan@1.0.0", - "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.0.tgz" + "version": "1.0.0" }, "oauth-sign": { - "version": "0.8.1", - "from": "oauth-sign@>=0.8.0 <0.9.0", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.1.tgz" + "version": "0.8.1" }, "object-assign": { - "version": "4.0.1", - "from": "object-assign@4.0.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.0.1.tgz" + "version": "4.0.1" }, "once": { - "version": "1.3.3", - "from": "once@>=1.3.0 <2.0.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.3.3.tgz" + "version": "1.3.3" }, "onetime": { - "version": "1.1.0", - "from": "onetime@1.1.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz" + "version": "1.1.0" }, "optimist": { "version": "0.6.1", - "from": "optimist@0.6.1", - "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz", "dependencies": { "wordwrap": { - "version": "0.0.3", - "from": "wordwrap@0.0.3", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz" + "version": "0.0.3" } } }, "optionator": { - "version": "0.8.1", - "from": "optionator@0.8.1", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.1.tgz" + "version": "0.8.1" }, "os-homedir": { - "version": "1.0.1", - "from": "os-homedir@1.0.1", - "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.1.tgz" + "version": "1.0.1" }, "path-is-absolute": { - "version": "1.0.0", - "from": "path-is-absolute@1.0.0", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.0.tgz" + "version": "1.0.0" }, "path-is-inside": { - "version": "1.0.1", - "from": "path-is-inside@1.0.1", - "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.1.tgz" + "version": "1.0.1" }, "pify": { - "version": "2.3.0", - "from": "pify@2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz" + "version": "2.3.0" }, "pinkie": { - "version": "2.0.4", - "from": "pinkie@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz" + "version": "2.0.4" }, "pinkie-promise": { - "version": "2.0.0", - "from": "pinkie-promise@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.0.tgz" + "version": "2.0.0" }, "pluralize": { - "version": "1.2.1", - "from": "pluralize@1.2.1", - "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-1.2.1.tgz" + "version": "1.2.1" }, "prelude-ls": { - "version": "1.1.2", - "from": "prelude-ls@1.1.2", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz" + "version": "1.1.2" }, "process-nextick-args": { - "version": "1.0.6", - "from": "process-nextick-args@>=1.0.6 <1.1.0", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.6.tgz" + "version": "1.0.6" }, "progress": { - "version": "1.1.8", - "from": "progress@1.1.8", - "resolved": "https://registry.npmjs.org/progress/-/progress-1.1.8.tgz" + "version": "1.1.8" }, "propagate": { - "version": "0.3.1", - "from": "propagate@>=0.3.0 <0.4.0", - "resolved": "https://registry.npmjs.org/propagate/-/propagate-0.3.1.tgz" + "version": "0.3.1" }, "pseudomap": { - "version": "1.0.2", - "from": "pseudomap@>=1.0.1 <2.0.0", - "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz" + "version": "1.0.2" }, "qs": { - "version": "6.0.2", - "from": "qs@>=6.0.2 <6.1.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.0.2.tgz" + "version": "6.0.2" }, "rc": { "version": "1.1.6", - "from": "rc@1.1.6", - "resolved": "https://registry.npmjs.org/rc/-/rc-1.1.6.tgz", "dependencies": { "minimist": { - "version": "1.2.0", - "from": "minimist@1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz" + "version": "1.2.0" } } }, "read-json-sync": { - "version": "1.1.1", - "from": "read-json-sync@1.1.1", - "resolved": "https://registry.npmjs.org/read-json-sync/-/read-json-sync-1.1.1.tgz" + "version": "1.1.1" }, "readable-stream": { - "version": "2.0.6", - "from": "readable-stream@>=2.0.0 <2.1.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz" + "version": "2.0.6" }, "readline2": { - "version": "1.0.1", - "from": "readline2@1.0.1", - "resolved": "https://registry.npmjs.org/readline2/-/readline2-1.0.1.tgz" + "version": "1.0.1" }, "repeat-string": { - "version": "1.5.4", - "from": "repeat-string@1.5.4", - "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.5.4.tgz" + "version": "1.5.4" }, "request": { - "version": "2.69.0", - "from": "request@>=2.47.0 <3.0.0", - "resolved": "https://registry.npmjs.org/request/-/request-2.69.0.tgz" + "version": "2.69.0" }, "require-uncached": { - "version": "1.0.2", - "from": "require-uncached@1.0.2", - "resolved": "https://registry.npmjs.org/require-uncached/-/require-uncached-1.0.2.tgz" + "version": "1.0.2" }, "resolve": { - "version": "1.1.7", - "from": "resolve@1.1.7", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz" + "version": "1.1.7" }, "resolve-from": { - "version": "1.0.1", - "from": "resolve-from@1.0.1", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-1.0.1.tgz" + "version": "1.0.1" }, "restore-cursor": { - "version": "1.0.1", - "from": "restore-cursor@1.0.1", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-1.0.1.tgz" + "version": "1.0.1" }, "retry": { - "version": "0.8.0", - "from": "retry@>=0.8.0 <0.9.0", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.8.0.tgz" + "version": "0.8.0" }, "right-align": { - "version": "0.1.3", - "from": "right-align@0.1.3", - "resolved": "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz" + "version": "0.1.3" }, "rimraf": { - "version": "2.5.2", - "from": "rimraf@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.5.2.tgz" + "version": "2.5.2" }, "run-async": { - "version": "0.1.0", - "from": "run-async@0.1.0", - "resolved": "https://registry.npmjs.org/run-async/-/run-async-0.1.0.tgz" + "version": "0.1.0" }, "rx": { - "version": "2.5.3", - "from": "rx@2.5.3", - "resolved": "https://registry.npmjs.org/rx/-/rx-2.5.3.tgz" + "version": "2.5.3" }, "rx-lite": { - "version": "3.1.2", - "from": "rx-lite@3.1.2", - "resolved": "https://registry.npmjs.org/rx-lite/-/rx-lite-3.1.2.tgz" + "version": "3.1.2" }, "semver": { - "version": "5.1.0", - "from": "semver@5.1.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.1.0.tgz" + "version": "5.1.0" }, "shelljs": { - "version": "0.6.0", - "from": "shelljs@0.6.0", - "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.6.0.tgz" + "version": "0.6.0" }, "silent-npm-registry-client": { - "version": "2.0.0", - "from": "silent-npm-registry-client@2.0.0", - "resolved": "https://registry.npmjs.org/silent-npm-registry-client/-/silent-npm-registry-client-2.0.0.tgz" + "version": "2.0.0" }, "slice-ansi": { - "version": "0.0.4", - "from": "slice-ansi@0.0.4", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-0.0.4.tgz" + "version": "0.0.4" }, "slide": { - "version": "1.1.6", - "from": "slide@>=1.1.3 <2.0.0", - "resolved": "https://registry.npmjs.org/slide/-/slide-1.1.6.tgz" + "version": "1.1.6" }, "sntp": { - "version": "1.0.9", - "from": "sntp@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz" + "version": "1.0.9" }, "source-map": { - "version": "0.4.4", - "from": "source-map@0.4.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz" + "version": "0.4.4" }, "source-map-support": { "version": "0.3.3", - "from": "source-map-support@0.3.3", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.3.3.tgz", "dependencies": { "source-map": { - "version": "0.1.32", - "from": "source-map@0.1.32", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.1.32.tgz" + "version": "0.1.32" } } }, "spdx-correct": { - "version": "1.0.2", - "from": "spdx-correct@>=1.0.0 <1.1.0", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-1.0.2.tgz" + "version": "1.0.2" }, "spdx-exceptions": { - "version": "1.0.4", - "from": "spdx-exceptions@>=1.0.4 <2.0.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-1.0.4.tgz" + "version": "1.0.4" }, "spdx-expression-parse": { - "version": "1.0.2", - "from": "spdx-expression-parse@>=1.0.0 <1.1.0", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-1.0.2.tgz" + "version": "1.0.2" }, "spdx-license-ids": { - "version": "1.2.0", - "from": "spdx-license-ids@>=1.0.2 <2.0.0", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.0.tgz" + "version": "1.2.0" }, "sprintf-js": { - "version": "1.0.3", - "from": "sprintf-js@1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz" + "version": "1.0.3" }, "sshpk": { - "version": "1.7.4", - "from": "sshpk@>=1.7.0 <2.0.0", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.7.4.tgz" - }, - "string_decoder": { - "version": "0.10.31", - "from": "string_decoder@>=0.10.0 <0.11.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" + "version": "1.7.4" }, "string-width": { - "version": "1.0.1", - "from": "string-width@1.0.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.1.tgz" + "version": "1.0.1" + }, + "string_decoder": { + "version": "0.10.31" }, "stringstream": { - "version": "0.0.5", - "from": "stringstream@>=0.0.4 <0.1.0", - "resolved": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz" + "version": "0.0.5" }, "strip-ansi": { - "version": "3.0.1", - "from": "strip-ansi@>=3.0.0 <4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz" + "version": "3.0.1" }, "strip-json-comments": { - "version": "1.0.4", - "from": "strip-json-comments@1.0.4", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-1.0.4.tgz" + "version": "1.0.4" }, "subcommand": { "version": "2.0.3", - "from": "subcommand@2.0.3", - "resolved": "https://registry.npmjs.org/subcommand/-/subcommand-2.0.3.tgz", "dependencies": { "minimist": { - "version": "1.2.0", - "from": "minimist@1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz" + "version": "1.2.0" } } }, "supports-color": { - "version": "2.0.0", - "from": "supports-color@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz" + "version": "2.0.0" }, "table": { - "version": "3.7.8", - "from": "table@3.7.8", - "resolved": "https://registry.npmjs.org/table/-/table-3.7.8.tgz" + "version": "3.7.8" }, "text-table": { - "version": "0.2.0", - "from": "text-table@0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz" + "version": "0.2.0" }, "through": { - "version": "2.3.8", - "from": "through@2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz" + "version": "2.3.8" }, "to-double-quotes": { - "version": "1.0.2", - "from": "to-double-quotes@1.0.2", - "resolved": "https://registry.npmjs.org/to-double-quotes/-/to-double-quotes-1.0.2.tgz" + "version": "1.0.2" }, "to-single-quotes": { - "version": "1.0.4", - "from": "to-single-quotes@1.0.4", - "resolved": "https://registry.npmjs.org/to-single-quotes/-/to-single-quotes-1.0.4.tgz" + "version": "1.0.4" }, "topo": { - "version": "1.1.0", - "from": "topo@1.1.0", - "resolved": "https://registry.npmjs.org/topo/-/topo-1.1.0.tgz" + "version": "1.1.0" }, "tough-cookie": { - "version": "2.2.2", - "from": "tough-cookie@>=2.2.0 <2.3.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.2.2.tgz" + "version": "2.2.2" }, "tryit": { - "version": "1.0.2", - "from": "tryit@1.0.2", - "resolved": "https://registry.npmjs.org/tryit/-/tryit-1.0.2.tgz" + "version": "1.0.2" }, "tunnel-agent": { - "version": "0.4.2", - "from": "tunnel-agent@>=0.4.1 <0.5.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.2.tgz" + "version": "0.4.2" }, "tv4": { - "version": "1.2.7", - "from": "tv4@1.2.7", - "resolved": "https://registry.npmjs.org/tv4/-/tv4-1.2.7.tgz" + "version": "1.2.7" }, "tweetnacl": { - "version": "0.14.3", - "from": "tweetnacl@>=0.13.0 <1.0.0", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.3.tgz" + "version": "0.14.3" }, "type-check": { - "version": "0.3.2", - "from": "type-check@0.3.2", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz" + "version": "0.3.2" }, "type-detect": { - "version": "1.0.0", - "from": "type-detect@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-1.0.0.tgz" + "version": "1.0.0" }, "typedarray": { - "version": "0.0.6", - "from": "typedarray@>=0.0.5 <0.1.0", - "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz" + "version": "0.0.6" }, "uglify-js": { "version": "2.6.2", - "from": "uglify-js@2.6.2", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.6.2.tgz", "dependencies": { "async": { - "version": "0.2.10", - "from": "async@0.2.10", - "resolved": "https://registry.npmjs.org/async/-/async-0.2.10.tgz" + "version": "0.2.10" }, "source-map": { - "version": "0.5.3", - "from": "source-map@0.5.3", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.3.tgz" + "version": "0.5.3" } } }, "uglify-to-browserify": { - "version": "1.0.2", - "from": "uglify-to-browserify@1.0.2", - "resolved": "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz" + "version": "1.0.2" }, "user-home": { - "version": "2.0.0", - "from": "user-home@2.0.0", - "resolved": "https://registry.npmjs.org/user-home/-/user-home-2.0.0.tgz" + "version": "2.0.0" }, "util-deprecate": { - "version": "1.0.2", - "from": "util-deprecate@>=1.0.1 <1.1.0", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" + "version": "1.0.2" }, "validate-npm-package-license": { - "version": "3.0.1", - "from": "validate-npm-package-license@>=3.0.1 <4.0.0", - "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz" + "version": "3.0.1" }, "verror": { - "version": "1.3.6", - "from": "verror@1.3.6", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.3.6.tgz" + "version": "1.3.6" }, "window-size": { - "version": "0.1.0", - "from": "window-size@0.1.0", - "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz" + "version": "0.1.0" }, "wordwrap": { - "version": "1.0.0", - "from": "wordwrap@1.0.0", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz" + "version": "1.0.0" }, "wrappy": { - "version": "1.0.1", - "from": "wrappy@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz" + "version": "1.0.1" }, "wreck": { - "version": "6.3.0", - "from": "wreck@6.3.0", - "resolved": "https://registry.npmjs.org/wreck/-/wreck-6.3.0.tgz" + "version": "6.3.0" }, "write": { - "version": "0.2.1", - "from": "write@0.2.1", - "resolved": "https://registry.npmjs.org/write/-/write-0.2.1.tgz" + "version": "0.2.1" }, "xml-escape": { - "version": "1.0.0", - "from": "xml-escape@1.0.0", - "resolved": "https://registry.npmjs.org/xml-escape/-/xml-escape-1.0.0.tgz" + "version": "1.0.0" }, "xregexp": { - "version": "3.1.0", - "from": "xregexp@3.1.0", - "resolved": "https://registry.npmjs.org/xregexp/-/xregexp-3.1.0.tgz" + "version": "3.1.0" }, "xtend": { - "version": "4.0.1", - "from": "xtend@>=4.0.0 <5.0.0", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz" + "version": "4.0.1" }, "yallist": { - "version": "2.0.0", - "from": "yallist@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.0.0.tgz" + "version": "2.0.0" }, "yargs": { - "version": "3.10.0", - "from": "yargs@3.10.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz" + "version": "3.10.0" } } -} +} \ No newline at end of file From 1a9c352788c234c7546b371a106f48729967acaa Mon Sep 17 00:00:00 2001 From: Nathan LaFreniere Date: Wed, 30 Mar 2016 10:03:33 -0700 Subject: [PATCH 09/11] 2.3.0 --- npm-shrinkwrap.json | 1494 ++++++++++++++++--------------------------- package.json | 2 +- 2 files changed, 544 insertions(+), 952 deletions(-) diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json index a615284..539ae92 100644 --- a/npm-shrinkwrap.json +++ b/npm-shrinkwrap.json @@ -1,1010 +1,602 @@ { "name": "nsp", - "version": "2.2.2", + "version": "2.3.0", "dependencies": { - "abbrev": { - "version": "1.0.7" - }, - "acorn": { - "version": "3.0.4" - }, - "acorn-jsx": { - "version": "2.0.1", - "dependencies": { - "acorn": { - "version": "2.7.0" - } - } - }, - "agent-base": { - "version": "2.0.1", - "dependencies": { - "semver": { - "version": "5.0.3" - } - } - }, - "align-text": { - "version": "0.1.4" - }, - "amdefine": { - "version": "1.0.0" - }, - "ansi": { - "version": "0.3.1" - }, - "ansi-escapes": { - "version": "1.3.0" - }, - "ansi-regex": { - "version": "2.0.0" - }, - "ansi-styles": { - "version": "2.2.1" - }, - "are-we-there-yet": { - "version": "1.1.2" - }, - "argparse": { - "version": "1.0.7" - }, - "array-union": { - "version": "1.0.1" - }, - "array-uniq": { - "version": "1.0.2" - }, - "arrify": { - "version": "1.0.1" - }, - "asn1": { - "version": "0.2.3" - }, - "assert-plus": { - "version": "0.2.0" - }, - "assertion-error": { - "version": "1.0.1" - }, - "async": { - "version": "1.5.2" - }, - "aws-sign2": { - "version": "0.6.0" - }, - "aws4": { - "version": "1.3.2" - }, - "balanced-match": { - "version": "0.3.0" - }, - "bl": { - "version": "1.0.3" - }, - "bluebird": { - "version": "3.3.4" - }, - "boom": { - "version": "2.10.1" - }, - "bossy": { - "version": "1.0.3" - }, - "brace-expansion": { - "version": "1.1.3" - }, - "builtin-modules": { - "version": "1.1.1" - }, - "caller-path": { - "version": "0.1.0" - }, - "callsites": { - "version": "0.2.0" - }, - "camelcase": { - "version": "1.2.1" - }, - "caseless": { - "version": "0.11.0" - }, - "center-align": { - "version": "0.1.3" - }, - "chai": { - "version": "3.5.0" - }, "chalk": { - "version": "1.1.3" - }, - "chownr": { - "version": "1.0.1" - }, - "cli-cursor": { - "version": "1.0.2" - }, - "cli-table": { - "version": "0.3.1" - }, - "cli-width": { - "version": "2.1.0" - }, - "cliclopts": { - "version": "1.1.1" - }, - "cliui": { - "version": "2.1.0", - "dependencies": { - "wordwrap": { - "version": "0.0.2" - } - } - }, - "code-point-at": { - "version": "1.0.0" - }, - "colors": { - "version": "1.0.3" - }, - "combined-stream": { - "version": "1.0.5" - }, - "commander": { - "version": "2.9.0" - }, - "concat-map": { - "version": "0.0.1" - }, - "concat-stream": { - "version": "1.5.1" - }, - "core-util-is": { - "version": "1.0.2" - }, - "cryptiles": { - "version": "2.0.5" - }, - "d": { - "version": "0.1.1" - }, - "dashdash": { - "version": "1.13.0", - "dependencies": { - "assert-plus": { - "version": "1.0.0" - } - } - }, - "debug": { - "version": "2.2.0" - }, - "decamelize": { - "version": "1.2.0" - }, - "deep-eql": { - "version": "0.1.3", + "version": "1.1.3", "dependencies": { - "type-detect": { - "version": "0.1.1" - } - } - }, - "deep-equal": { - "version": "1.0.1" - }, - "deep-extend": { - "version": "0.4.1" - }, - "deep-is": { - "version": "0.1.3" - }, - "del": { - "version": "2.2.0" - }, - "delayed-stream": { - "version": "1.0.0" - }, - "delegates": { - "version": "1.0.0" - }, - "diff": { - "version": "2.2.2" - }, - "doctrine": { - "version": "1.2.0", - "dependencies": { - "esutils": { - "version": "1.1.6" - } - } - }, - "ecc-jsbn": { - "version": "0.1.1" - }, - "es5-ext": { - "version": "0.10.11" - }, - "es6-iterator": { - "version": "2.0.0" - }, - "es6-map": { - "version": "0.1.3" - }, - "es6-set": { - "version": "0.1.4" - }, - "es6-symbol": { - "version": "3.0.2" - }, - "es6-weak-map": { - "version": "2.0.1" - }, - "escape-string-regexp": { - "version": "1.0.5" - }, - "escope": { - "version": "3.6.0" - }, - "eslint-config-hapi": { - "version": "3.0.2" - }, - "espree": { - "version": "3.1.3" - }, - "esprima": { - "version": "2.7.2" - }, - "esrecurse": { - "version": "4.1.0", - "dependencies": { - "estraverse": { - "version": "4.1.1" - } - } - }, - "estraverse": { - "version": "4.2.0" - }, - "estraverse-fb": { - "version": "1.3.1" - }, - "esutils": { - "version": "2.0.2" - }, - "event-emitter": { - "version": "0.3.4" - }, - "exit": { - "version": "0.1.2" - }, - "exit-hook": { - "version": "1.1.1" - }, - "extend": { - "version": "3.0.0" - }, - "extsprintf": { - "version": "1.0.2" - }, - "fast-levenshtein": { - "version": "1.1.3" - }, - "figures": { - "version": "1.5.0" - }, - "file-entry-cache": { - "version": "1.2.4" - }, - "flat-cache": { - "version": "1.0.10" - }, - "forever-agent": { - "version": "0.6.1" - }, - "form-data": { - "version": "1.0.0-rc4" - }, - "gauge": { - "version": "1.2.7" - }, - "generate-function": { - "version": "2.0.0" - }, - "generate-object-property": { - "version": "1.2.0" - }, - "get-stdin": { - "version": "3.0.2" - }, - "glob": { - "version": "7.0.3", - "dependencies": { - "path-is-absolute": { - "version": "1.0.0" + "ansi-styles": { + "version": "2.2.1" + }, + "escape-string-regexp": { + "version": "1.0.5" + }, + "has-ansi": { + "version": "2.0.0", + "dependencies": { + "ansi-regex": { + "version": "2.0.0" + } + } + }, + "strip-ansi": { + "version": "3.0.1", + "dependencies": { + "ansi-regex": { + "version": "2.0.0" + } + } + }, + "supports-color": { + "version": "2.0.0" } } }, - "globals": { - "version": "9.2.0" - }, - "globby": { - "version": "4.0.0", + "cli-table": { + "version": "0.3.1", "dependencies": { - "glob": { - "version": "6.0.4" + "colors": { + "version": "1.0.3" } } }, - "graceful-fs": { - "version": "4.1.3" - }, - "graceful-readlink": { - "version": "1.0.1" - }, - "handlebars": { - "version": "4.0.5" - }, - "hapi-capitalize-modules": { - "version": "1.1.4" - }, - "hapi-for-you": { - "version": "1.0.0" - }, - "hapi-scope-start": { - "version": "2.1.1" - }, - "har-validator": { - "version": "2.0.6" - }, - "has-ansi": { - "version": "2.0.0" - }, - "has-unicode": { - "version": "2.0.0" - }, - "hawk": { - "version": "3.1.3" - }, - "hoek": { - "version": "2.16.3" - }, - "hosted-git-info": { - "version": "2.1.4" - }, - "http-signature": { - "version": "1.1.1" - }, "https-proxy-agent": { - "version": "1.0.0" - }, - "ignore": { - "version": "3.0.13" - }, - "imurmurhash": { - "version": "0.1.4" - }, - "inflight": { - "version": "1.0.4" - }, - "inherits": { - "version": "2.0.1" - }, - "ini": { - "version": "1.3.4" - }, - "inquirer": { - "version": "0.12.0" - }, - "is-buffer": { - "version": "1.1.3" - }, - "is-builtin-module": { - "version": "1.0.0" - }, - "is-fullwidth-code-point": { - "version": "1.0.0" - }, - "is-my-json-valid": { - "version": "2.13.1" - }, - "is-path-cwd": { - "version": "1.0.0" - }, - "is-path-in-cwd": { - "version": "1.0.0" - }, - "is-path-inside": { - "version": "1.0.0" - }, - "is-property": { - "version": "1.0.2" - }, - "is-resolvable": { - "version": "1.0.0" - }, - "is-typedarray": { - "version": "1.0.0" - }, - "isarray": { - "version": "1.0.0" - }, - "isemail": { - "version": "1.2.0" - }, - "isstream": { - "version": "0.1.2" - }, - "items": { - "version": "1.1.1" - }, - "jodid25519": { - "version": "1.0.2" - }, - "joi": { - "version": "6.10.1" - }, - "js-yaml": { - "version": "3.5.5" - }, - "jsbn": { - "version": "0.1.0" - }, - "jslint": { - "version": "0.9.6", + "version": "1.0.0", "dependencies": { - "glob": { - "version": "4.5.3" - }, - "readable-stream": { - "version": "1.0.33" + "agent-base": { + "version": "2.0.1", + "dependencies": { + "semver": { + "version": "5.0.3" + } + } }, - "isarray": { - "version": "0.0.1" + "debug": { + "version": "2.2.0", + "dependencies": { + "ms": { + "version": "0.7.1" + } + } }, - "minimatch": { - "version": "2.0.10" + "extend": { + "version": "3.0.0" } } }, - "json-schema": { - "version": "0.2.2" - }, - "json-stable-stringify": { - "version": "1.0.1" - }, - "json-stringify-safe": { - "version": "5.0.1" - }, - "jsonify": { - "version": "0.0.0" - }, - "jsonpointer": { - "version": "2.0.0" - }, - "jsprim": { - "version": "1.2.2" - }, - "kind-of": { - "version": "3.0.2" - }, - "lazy-cache": { - "version": "1.0.3" - }, - "levn": { - "version": "0.3.0" - }, - "lodash": { - "version": "4.6.1" - }, - "lodash._arraycopy": { - "version": "3.0.0" - }, - "lodash._arrayeach": { - "version": "3.0.0" - }, - "lodash._arraymap": { - "version": "3.0.0" - }, - "lodash._baseassign": { - "version": "3.2.0" - }, - "lodash._baseclone": { - "version": "3.3.0" - }, - "lodash._basecopy": { - "version": "3.0.1" - }, - "lodash._basedifference": { - "version": "3.0.3" - }, - "lodash._baseflatten": { - "version": "3.1.4" - }, - "lodash._basefor": { - "version": "3.0.3" - }, - "lodash._baseindexof": { - "version": "3.1.0" - }, - "lodash._bindcallback": { - "version": "3.0.1" - }, - "lodash._cacheindexof": { - "version": "3.0.2" - }, - "lodash._createassigner": { - "version": "3.1.1" - }, - "lodash._createcache": { - "version": "3.1.2" - }, - "lodash._getnative": { - "version": "3.9.1" - }, - "lodash._isiterateecall": { - "version": "3.0.9" - }, - "lodash._pickbyarray": { - "version": "3.0.2" - }, - "lodash._pickbycallback": { - "version": "3.0.0" - }, - "lodash.clonedeep": { - "version": "3.0.2" - }, - "lodash.isarguments": { - "version": "3.0.8" - }, - "lodash.isarray": { - "version": "3.0.4" - }, - "lodash.isplainobject": { - "version": "3.2.0" - }, - "lodash.istypedarray": { - "version": "3.0.5" - }, - "lodash.keys": { - "version": "3.1.2" - }, - "lodash.keysin": { - "version": "3.0.8" - }, - "lodash.merge": { - "version": "3.3.2" - }, - "lodash.omit": { - "version": "3.1.0" - }, - "lodash.pad": { - "version": "4.1.0" - }, - "lodash.padend": { - "version": "4.2.0" - }, - "lodash.padstart": { - "version": "4.2.0" - }, - "lodash.repeat": { - "version": "4.0.0" - }, - "lodash.restparam": { - "version": "3.6.1" - }, - "lodash.toplainobject": { - "version": "3.0.0" - }, - "lodash.tostring": { - "version": "4.1.2" - }, - "longest": { - "version": "1.0.1" - }, - "lru-cache": { - "version": "4.0.1" - }, - "mime-db": { - "version": "1.22.0" - }, - "mime-types": { - "version": "2.1.10" - }, - "minimatch": { - "version": "3.0.0" - }, - "minimist": { - "version": "0.0.8" - }, - "mkdirp": { - "version": "0.5.1" - }, - "moment": { - "version": "2.12.0" - }, - "ms": { - "version": "0.7.1" - }, - "mute-stream": { - "version": "0.0.5" - }, - "no-arrowception": { - "version": "1.0.0" - }, - "no-shadow-relaxed": { - "version": "1.0.1", + "joi": { + "version": "6.10.1", "dependencies": { - "eslint": { - "version": "0.24.1" - }, - "ansi-regex": { - "version": "1.1.1" - }, - "cli-width": { - "version": "1.1.1" - }, - "doctrine": { - "version": "0.6.4" - }, - "espree": { - "version": "2.2.5" - }, - "esutils": { - "version": "1.1.6" - }, - "fast-levenshtein": { - "version": "1.0.7" - }, - "globals": { - "version": "8.18.0" - }, - "inquirer": { - "version": "0.8.5" - }, - "isarray": { - "version": "0.0.1" - }, - "levn": { - "version": "0.2.5" - }, - "lodash": { - "version": "3.10.1" - }, - "minimatch": { - "version": "2.0.10" + "hoek": { + "version": "2.16.3" }, - "object-assign": { - "version": "2.1.1" + "topo": { + "version": "1.1.0" }, - "mute-stream": { - "version": "0.0.4" - }, - "optionator": { - "version": "0.5.0" - }, - "strip-ansi": { - "version": "2.0.1" - }, - "readline2": { - "version": "0.1.1" - }, - "user-home": { - "version": "1.1.1" + "isemail": { + "version": "1.2.0" }, - "wordwrap": { - "version": "0.0.3" + "moment": { + "version": "2.12.0" } } }, - "node-uuid": { - "version": "1.4.7" - }, "nodesecurity-npm-utils": { - "version": "4.0.1" - }, - "nopt": { - "version": "3.0.6" - }, - "normalize-package-data": { - "version": "2.3.5" - }, - "npm-package-arg": { - "version": "4.1.0" - }, - "npm-registry-client": { - "version": "7.1.0" - }, - "npmlog": { - "version": "2.0.3" - }, - "number-is-nan": { - "version": "1.0.0" - }, - "oauth-sign": { - "version": "0.8.1" - }, - "object-assign": { - "version": "4.0.1" - }, - "once": { - "version": "1.3.3" - }, - "onetime": { - "version": "1.1.0" - }, - "optimist": { - "version": "0.6.1", + "version": "4.0.1", "dependencies": { - "wordwrap": { - "version": "0.0.3" + "silent-npm-registry-client": { + "version": "2.0.0", + "dependencies": { + "npm-registry-client": { + "version": "7.1.0", + "dependencies": { + "chownr": { + "version": "1.0.1" + }, + "concat-stream": { + "version": "1.5.1", + "dependencies": { + "inherits": { + "version": "2.0.1" + }, + "typedarray": { + "version": "0.0.6" + }, + "readable-stream": { + "version": "2.0.6", + "dependencies": { + "core-util-is": { + "version": "1.0.2" + }, + "isarray": { + "version": "1.0.0" + }, + "process-nextick-args": { + "version": "1.0.6" + }, + "string_decoder": { + "version": "0.10.31" + }, + "util-deprecate": { + "version": "1.0.2" + } + } + } + } + }, + "graceful-fs": { + "version": "4.1.3" + }, + "mkdirp": { + "version": "0.5.1", + "dependencies": { + "minimist": { + "version": "0.0.8" + } + } + }, + "normalize-package-data": { + "version": "2.3.5", + "dependencies": { + "hosted-git-info": { + "version": "2.1.4" + }, + "is-builtin-module": { + "version": "1.0.0", + "dependencies": { + "builtin-modules": { + "version": "1.1.1" + } + } + }, + "validate-npm-package-license": { + "version": "3.0.1", + "dependencies": { + "spdx-correct": { + "version": "1.0.2", + "dependencies": { + "spdx-license-ids": { + "version": "1.2.0" + } + } + }, + "spdx-expression-parse": { + "version": "1.0.2", + "dependencies": { + "spdx-exceptions": { + "version": "1.0.4" + }, + "spdx-license-ids": { + "version": "1.2.0" + } + } + } + } + } + } + }, + "npm-package-arg": { + "version": "4.1.0", + "dependencies": { + "hosted-git-info": { + "version": "2.1.4" + } + } + }, + "once": { + "version": "1.3.3", + "dependencies": { + "wrappy": { + "version": "1.0.1" + } + } + }, + "request": { + "version": "2.69.0", + "dependencies": { + "aws-sign2": { + "version": "0.6.0" + }, + "aws4": { + "version": "1.3.2", + "dependencies": { + "lru-cache": { + "version": "4.0.1", + "dependencies": { + "pseudomap": { + "version": "1.0.2" + }, + "yallist": { + "version": "2.0.0" + } + } + } + } + }, + "bl": { + "version": "1.0.3", + "dependencies": { + "readable-stream": { + "version": "2.0.6", + "dependencies": { + "core-util-is": { + "version": "1.0.2" + }, + "inherits": { + "version": "2.0.1" + }, + "isarray": { + "version": "1.0.0" + }, + "process-nextick-args": { + "version": "1.0.6" + }, + "string_decoder": { + "version": "0.10.31" + }, + "util-deprecate": { + "version": "1.0.2" + } + } + } + } + }, + "caseless": { + "version": "0.11.0" + }, + "combined-stream": { + "version": "1.0.5", + "dependencies": { + "delayed-stream": { + "version": "1.0.0" + } + } + }, + "extend": { + "version": "3.0.0" + }, + "forever-agent": { + "version": "0.6.1" + }, + "form-data": { + "version": "1.0.0-rc4", + "dependencies": { + "async": { + "version": "1.5.2" + } + } + }, + "har-validator": { + "version": "2.0.6", + "dependencies": { + "commander": { + "version": "2.9.0", + "dependencies": { + "graceful-readlink": { + "version": "1.0.1" + } + } + }, + "is-my-json-valid": { + "version": "2.13.1", + "dependencies": { + "generate-function": { + "version": "2.0.0" + }, + "generate-object-property": { + "version": "1.2.0", + "dependencies": { + "is-property": { + "version": "1.0.2" + } + } + }, + "jsonpointer": { + "version": "2.0.0" + } + } + }, + "pinkie-promise": { + "version": "2.0.0", + "dependencies": { + "pinkie": { + "version": "2.0.4" + } + } + } + } + }, + "hawk": { + "version": "3.1.3", + "dependencies": { + "hoek": { + "version": "2.16.3" + }, + "boom": { + "version": "2.10.1" + }, + "cryptiles": { + "version": "2.0.5" + }, + "sntp": { + "version": "1.0.9" + } + } + }, + "http-signature": { + "version": "1.1.1", + "dependencies": { + "assert-plus": { + "version": "0.2.0" + }, + "jsprim": { + "version": "1.2.2", + "dependencies": { + "extsprintf": { + "version": "1.0.2" + }, + "json-schema": { + "version": "0.2.2" + }, + "verror": { + "version": "1.3.6" + } + } + }, + "sshpk": { + "version": "1.7.4", + "dependencies": { + "asn1": { + "version": "0.2.3" + }, + "dashdash": { + "version": "1.13.0", + "dependencies": { + "assert-plus": { + "version": "1.0.0" + } + } + }, + "jsbn": { + "version": "0.1.0" + }, + "tweetnacl": { + "version": "0.14.3" + }, + "jodid25519": { + "version": "1.0.2" + }, + "ecc-jsbn": { + "version": "0.1.1" + } + } + } + } + }, + "is-typedarray": { + "version": "1.0.0" + }, + "isstream": { + "version": "0.1.2" + }, + "json-stringify-safe": { + "version": "5.0.1" + }, + "mime-types": { + "version": "2.1.10", + "dependencies": { + "mime-db": { + "version": "1.22.0" + } + } + }, + "node-uuid": { + "version": "1.4.7" + }, + "oauth-sign": { + "version": "0.8.1" + }, + "qs": { + "version": "6.0.2" + }, + "stringstream": { + "version": "0.0.5" + }, + "tough-cookie": { + "version": "2.2.2" + }, + "tunnel-agent": { + "version": "0.4.2" + } + } + }, + "retry": { + "version": "0.8.0" + }, + "rimraf": { + "version": "2.5.2", + "dependencies": { + "glob": { + "version": "7.0.3", + "dependencies": { + "inflight": { + "version": "1.0.4", + "dependencies": { + "wrappy": { + "version": "1.0.1" + } + } + }, + "inherits": { + "version": "2.0.1" + }, + "minimatch": { + "version": "3.0.0", + "dependencies": { + "brace-expansion": { + "version": "1.1.3", + "dependencies": { + "balanced-match": { + "version": "0.3.0" + }, + "concat-map": { + "version": "0.0.1" + } + } + } + } + } + } + } + } + }, + "slide": { + "version": "1.1.6" + }, + "npmlog": { + "version": "2.0.3", + "dependencies": { + "ansi": { + "version": "0.3.1" + }, + "are-we-there-yet": { + "version": "1.1.2", + "dependencies": { + "delegates": { + "version": "1.0.0" + }, + "readable-stream": { + "version": "2.0.6", + "dependencies": { + "core-util-is": { + "version": "1.0.2" + }, + "inherits": { + "version": "2.0.1" + }, + "isarray": { + "version": "1.0.0" + }, + "process-nextick-args": { + "version": "1.0.6" + }, + "string_decoder": { + "version": "0.10.31" + }, + "util-deprecate": { + "version": "1.0.2" + } + } + } + } + }, + "gauge": { + "version": "1.2.7", + "dependencies": { + "has-unicode": { + "version": "2.0.0" + }, + "lodash.pad": { + "version": "4.1.0", + "dependencies": { + "lodash.repeat": { + "version": "4.0.0" + }, + "lodash.tostring": { + "version": "4.1.2" + } + } + }, + "lodash.padend": { + "version": "4.2.0", + "dependencies": { + "lodash.repeat": { + "version": "4.0.0" + }, + "lodash.tostring": { + "version": "4.1.2" + } + } + }, + "lodash.padstart": { + "version": "4.2.0", + "dependencies": { + "lodash.repeat": { + "version": "4.0.0" + }, + "lodash.tostring": { + "version": "4.1.2" + } + } + } + } + } + } + } + } + }, + "xtend": { + "version": "4.0.1" + } + } } } }, - "optionator": { - "version": "0.8.1" - }, - "os-homedir": { - "version": "1.0.1" - }, "path-is-absolute": { "version": "1.0.0" }, - "path-is-inside": { - "version": "1.0.1" - }, - "pify": { - "version": "2.3.0" - }, - "pinkie": { - "version": "2.0.4" - }, - "pinkie-promise": { - "version": "2.0.0" - }, - "pluralize": { - "version": "1.2.1" - }, - "prelude-ls": { - "version": "1.1.2" - }, - "process-nextick-args": { - "version": "1.0.6" - }, - "progress": { - "version": "1.1.8" - }, - "propagate": { - "version": "0.3.1" - }, - "pseudomap": { - "version": "1.0.2" - }, - "qs": { - "version": "6.0.2" - }, "rc": { "version": "1.1.6", "dependencies": { + "deep-extend": { + "version": "0.4.1" + }, + "ini": { + "version": "1.3.4" + }, "minimist": { "version": "1.2.0" + }, + "strip-json-comments": { + "version": "1.0.4" } } }, - "read-json-sync": { - "version": "1.1.1" - }, - "readable-stream": { - "version": "2.0.6" - }, - "readline2": { - "version": "1.0.1" - }, - "repeat-string": { - "version": "1.5.4" - }, - "request": { - "version": "2.69.0" - }, - "require-uncached": { - "version": "1.0.2" - }, - "resolve": { - "version": "1.1.7" - }, - "resolve-from": { - "version": "1.0.1" - }, - "restore-cursor": { - "version": "1.0.1" - }, - "retry": { - "version": "0.8.0" - }, - "right-align": { - "version": "0.1.3" - }, - "rimraf": { - "version": "2.5.2" - }, - "run-async": { - "version": "0.1.0" - }, - "rx": { - "version": "2.5.3" - }, - "rx-lite": { - "version": "3.1.2" - }, "semver": { "version": "5.1.0" }, - "shelljs": { - "version": "0.6.0" - }, - "silent-npm-registry-client": { - "version": "2.0.0" - }, - "slice-ansi": { - "version": "0.0.4" - }, - "slide": { - "version": "1.1.6" - }, - "sntp": { - "version": "1.0.9" - }, - "source-map": { - "version": "0.4.4" - }, - "source-map-support": { - "version": "0.3.3", - "dependencies": { - "source-map": { - "version": "0.1.32" - } - } - }, - "spdx-correct": { - "version": "1.0.2" - }, - "spdx-exceptions": { - "version": "1.0.4" - }, - "spdx-expression-parse": { - "version": "1.0.2" - }, - "spdx-license-ids": { - "version": "1.2.0" - }, - "sprintf-js": { - "version": "1.0.3" - }, - "sshpk": { - "version": "1.7.4" - }, - "string-width": { - "version": "1.0.1" - }, - "string_decoder": { - "version": "0.10.31" - }, - "stringstream": { - "version": "0.0.5" - }, - "strip-ansi": { - "version": "3.0.1" - }, - "strip-json-comments": { - "version": "1.0.4" - }, "subcommand": { "version": "2.0.3", "dependencies": { + "cliclopts": { + "version": "1.1.1" + }, + "debug": { + "version": "2.2.0", + "dependencies": { + "ms": { + "version": "0.7.1" + } + } + }, "minimist": { "version": "1.2.0" + }, + "xtend": { + "version": "4.0.1" } } }, - "supports-color": { - "version": "2.0.0" - }, - "table": { - "version": "3.7.8" - }, - "text-table": { - "version": "0.2.0" - }, - "through": { - "version": "2.3.8" - }, - "to-double-quotes": { - "version": "1.0.2" - }, - "to-single-quotes": { - "version": "1.0.4" - }, - "topo": { - "version": "1.1.0" - }, - "tough-cookie": { - "version": "2.2.2" - }, - "tryit": { - "version": "1.0.2" - }, - "tunnel-agent": { - "version": "0.4.2" - }, - "tv4": { - "version": "1.2.7" - }, - "tweetnacl": { - "version": "0.14.3" - }, - "type-check": { - "version": "0.3.2" - }, - "type-detect": { - "version": "1.0.0" - }, - "typedarray": { - "version": "0.0.6" - }, - "uglify-js": { - "version": "2.6.2", + "wreck": { + "version": "6.3.0", "dependencies": { - "async": { - "version": "0.2.10" + "hoek": { + "version": "2.16.3" }, - "source-map": { - "version": "0.5.3" + "boom": { + "version": "2.10.1" } } - }, - "uglify-to-browserify": { - "version": "1.0.2" - }, - "user-home": { - "version": "2.0.0" - }, - "util-deprecate": { - "version": "1.0.2" - }, - "validate-npm-package-license": { - "version": "3.0.1" - }, - "verror": { - "version": "1.3.6" - }, - "window-size": { - "version": "0.1.0" - }, - "wordwrap": { - "version": "1.0.0" - }, - "wrappy": { - "version": "1.0.1" - }, - "wreck": { - "version": "6.3.0" - }, - "write": { - "version": "0.2.1" - }, - "xml-escape": { - "version": "1.0.0" - }, - "xregexp": { - "version": "3.1.0" - }, - "xtend": { - "version": "4.0.1" - }, - "yallist": { - "version": "2.0.0" - }, - "yargs": { - "version": "3.10.0" } } -} \ No newline at end of file +} diff --git a/package.json b/package.json index 22b552d..d7f204e 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "nsp", "description": "The Node Security (nodesecurity.io) command line interface", - "version": "2.2.2", + "version": "2.3.0", "author": "^lift security", "bin": { "nsp": "bin/nsp" From c6e26c2631fc24c30d610af90ca03fadd160600f Mon Sep 17 00:00:00 2001 From: Michael Garvin Date: Wed, 30 Mar 2016 13:24:53 -0700 Subject: [PATCH 10/11] add contributing.md --- contributing.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 contributing.md diff --git a/contributing.md b/contributing.md new file mode 100644 index 0000000..918f69c --- /dev/null +++ b/contributing.md @@ -0,0 +1,19 @@ +# Contributing + +When making a pull request for this repo, please make sure of a few things + +- tests and linting should pass for you locally. We have CI tests that also enforce this. +- rebuild the shrinkwrap file if you're changing any dependencies. + +## Rebuilding the shrinkwrap + +Because of the differences beween npm versions 2 and 3, you will want to use npm 2. A shrinkwrap built under npm 2 will also work under npm 3. A shrinkwrap built under npm 3 will *not* work under npm 2. + +The simplest way to build a new shrinkwrap is to start with an empty node_modules. Once you've done that and have made sure you're using npm 2: + +```sh +$ npm install +$ npm run shrinkwrap +``` + +Note that it is `npm run shrinkwrap` not `npm shrinkwrap`. This is because we have a shrinkwrap script that not only runs the shrinkwrap itself but also runs `shrinkydink`, a post-processor that cleans out some unneeded info we don't want. From ec81e36993a0fdb8d2e24318ed3a3932475fe268 Mon Sep 17 00:00:00 2001 From: Aaron McCall Date: Mon, 18 Apr 2016 11:38:23 -0600 Subject: [PATCH 11/11] formatters: buffer.toString for debug output --- lib/formatters/default.js | 2 +- lib/formatters/json.js | 2 +- lib/formatters/summary.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/formatters/default.js b/lib/formatters/default.js index 7f9d46d..4bf7a6f 100644 --- a/lib/formatters/default.js +++ b/lib/formatters/default.js @@ -9,7 +9,7 @@ module.exports = function (err, data) { if (err) { if (data) { - returnString += Chalk.red('(+) ') + 'Debug output: ' + JSON.stringify(data) + '\n'; + returnString += Chalk.red('(+) ') + 'Debug output: ' + JSON.stringify(Buffer.isBuffer(data) ? data.toString() : data) + '\n'; } return returnString + Chalk.yellow('(+) ') + err; diff --git a/lib/formatters/json.js b/lib/formatters/json.js index fd52b99..7920f18 100644 --- a/lib/formatters/json.js +++ b/lib/formatters/json.js @@ -3,7 +3,7 @@ module.exports = function (err, data) { if (err) { - return 'Debug output: ' + JSON.stringify(data) + '\n' + JSON.stringify(err); + return 'Debug output: ' + JSON.stringify(Buffer.isBuffer(data) ? data.toString() : data) + '\n' + JSON.stringify(err); } return JSON.stringify(data, null, 2); diff --git a/lib/formatters/summary.js b/lib/formatters/summary.js index a6a68c5..b835a0d 100644 --- a/lib/formatters/summary.js +++ b/lib/formatters/summary.js @@ -9,7 +9,7 @@ module.exports = function (err, data) { if (err) { if (data) { - returnString += Chalk.red('(+) ') + 'Debug output: ' + JSON.stringify(data) + '\n'; + returnString += Chalk.red('(+) ') + 'Debug output: ' + JSON.stringify(Buffer.isBuffer(data) ? data.toString() : data) + '\n'; } return returnString + Chalk.yellow('(+) ') + err;