From commits-return-37058-archive-asf-public=cust-asf.ponee.io@couchdb.apache.org Thu May 2 14:53:26 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id 9D686180671 for ; Thu, 2 May 2019 16:53:24 +0200 (CEST) Received: (qmail 95553 invoked by uid 500); 2 May 2019 14:53:24 -0000 Mailing-List: contact commits-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@couchdb.apache.org Delivered-To: mailing list commits@couchdb.apache.org Received: (qmail 95544 invoked by uid 99); 2 May 2019 14:53:23 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 May 2019 14:53:23 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id B76A8871D3; Thu, 2 May 2019 14:53:23 +0000 (UTC) Date: Thu, 02 May 2019 14:53:23 +0000 To: "commits@couchdb.apache.org" Subject: [couchdb-nano] branch master updated: Prepare8.1.0 (#160) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <155680880366.600.6658922137078832979@gitbox.apache.org> From: glynnbird@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: couchdb-nano X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: dc47448609f145def915afde4db036ee51201740 X-Git-Newrev: 8b9b9eb76cded391483496de93a7a65af8807454 X-Git-Rev: 8b9b9eb76cded391483496de93a7a65af8807454 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. glynnbird pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/couchdb-nano.git The following commit(s) were added to refs/heads/master by this push: new 8b9b9eb Prepare8.1.0 (#160) 8b9b9eb is described below commit 8b9b9eb76cded391483496de93a7a65af8807454 Author: Glynn Bird AuthorDate: Thu May 2 15:53:18 2019 +0100 Prepare8.1.0 (#160) * prepare for v8.1.0 - dependency version bump * avoid deploying tests and scripts * new, improved package-lock.json * new linting standards applied * new linting standards applied for nano.js --- .npmignore | 2 + examples/bulk_transform.js | 2 +- examples/lazy_creation_of_views.js | 8 +- examples/lazy_db_creation_and_replication.js | 2 +- lib/nano.js | 118 +-- package-lock.json | 1317 ++++++++++++-------------- package.json | 16 +- tests/helpers/harness.js | 2 +- tests/helpers/integration.js | 10 +- tests/helpers/unit.js | 6 +- tests/integration/attachment/destroy.js | 2 +- tests/integration/attachment/pipe.js | 2 +- tests/integration/attachment/update.js | 2 +- tests/integration/database/changes.js | 4 +- tests/integration/database/compact.js | 2 +- tests/integration/database/follow.js | 4 +- tests/integration/database/replicator.js | 19 +- tests/integration/design/atomic.js | 6 +- tests/integration/design/compact.js | 2 +- tests/integration/design/query.js | 6 +- tests/integration/design/search.js | 2 +- tests/integration/design/show.js | 2 +- tests/integration/document/bulk.js | 4 +- tests/integration/document/copy.js | 6 +- tests/integration/document/destroy.js | 2 +- tests/integration/document/fetch.js | 6 +- tests/integration/document/fetch_revs.js | 6 +- tests/integration/document/find.js | 4 +- tests/integration/document/get.js | 2 +- tests/integration/document/insert.js | 2 +- tests/integration/document/list.js | 12 +- tests/integration/document/update.js | 4 +- tests/integration/multipart/get.js | 2 +- tests/integration/multipart/insert.js | 4 +- tests/integration/shared/cookie.js | 4 +- tests/integration/shared/error.js | 2 +- tests/integration/shared/headers.js | 2 +- tests/intercept/design/search.js | 2 +- tests/unit/attachment/destroy.js | 4 +- tests/unit/attachment/get.js | 4 +- tests/unit/attachment/insert.js | 4 +- tests/unit/database/changes.js | 4 +- tests/unit/database/follow.js | 2 +- tests/unit/database/replicate.js | 2 +- tests/unit/database/replicator.js | 2 +- tests/unit/database/updates.js | 4 +- tests/unit/design/view.js | 2 +- tests/unit/document/bulk.js | 8 +- tests/unit/document/copy.js | 2 +- tests/unit/multipart/get.js | 6 +- tests/unit/multipart/insert.js | 8 +- tests/unit/shared/follow-updates.js | 4 +- tests/unit/shared/jar.js | 2 +- 53 files changed, 791 insertions(+), 867 deletions(-) diff --git a/.npmignore b/.npmignore new file mode 100644 index 0000000..75d43a3 --- /dev/null +++ b/.npmignore @@ -0,0 +1,2 @@ +tests +scripts diff --git a/examples/bulk_transform.js b/examples/bulk_transform.js index 18558ed..a9d9ceb 100644 --- a/examples/bulk_transform.js +++ b/examples/bulk_transform.js @@ -24,7 +24,7 @@ function updateRow (row, cb) { function list (offset) { var ended = false offset = offset || 0 - db.list({include_docs: true, limit: 10, skip: offset}, + db.list({ include_docs: true, limit: 10, skip: offset }, function (err, data) { var total, offset, rows if (err) { console.log('fuuuu: ' + err.message); rows = []; return } diff --git a/examples/lazy_creation_of_views.js b/examples/lazy_creation_of_views.js index 1765aa5..7e7fbe6 100644 --- a/examples/lazy_creation_of_views.js +++ b/examples/lazy_creation_of_views.js @@ -43,7 +43,7 @@ module.exports = function () { if (!retries) { retries = 0 } - users.insert({emailAddress: emailAddress, secret: secret, name: name}, secret, + users.insert({ emailAddress: emailAddress, secret: secret, name: name }, secret, function (e, b, h) { if (e && e.message === 'no_db_file' && retries < 1) { return createUsersDatabase(emailAddress, secret, name, retries) @@ -65,7 +65,7 @@ module.exports = function () { function userFind (view, id, opts, tried, callback) { if (typeof tried === 'function') { callback = tried - tried = {tried: 0, max_retries: 2} + tried = { tried: 0, max_retries: 2 } } users.view('users', view, opts, function (e, b, h) { if (e) { @@ -76,7 +76,7 @@ module.exports = function () { } if (tried.tried < tried.max_retries) { if (e.message === 'missing' || e.message === 'deleted') { // create design document - var designDoc = {views: {}} + var designDoc = { views: {} } designDoc.views[view] = currentView return users.insert(designDoc, '_design/users', function () { tried.tried += 1 @@ -101,7 +101,7 @@ module.exports = function () { } function userFirst (view, id, callback) { - return userFind(view, id, {startkey: ('"' + id + '"'), limit: 1}, callback) + return userFind(view, id, { startkey: ('"' + id + '"'), limit: 1 }, callback) } return { diff --git a/examples/lazy_db_creation_and_replication.js b/examples/lazy_db_creation_and_replication.js index 58cb2b3..7b7d5c2 100644 --- a/examples/lazy_db_creation_and_replication.js +++ b/examples/lazy_db_creation_and_replication.js @@ -61,4 +61,4 @@ function replicateWithRetry (masterUri, replicaUri, retries, callback) { }) } -module.exports = {insert: insertWithRetry, replicate: replicateWithRetry} +module.exports = { insert: insertWithRetry, replicate: replicateWithRetry } diff --git a/lib/nano.js b/lib/nano.js index 1d5801b..8522a30 100644 --- a/lib/nano.js +++ b/lib/nano.js @@ -40,10 +40,10 @@ module.exports = exports = function dbScope (cfg) { let serverScope = {} if (typeof cfg === 'string') { - cfg = {url: cfg} + cfg = { url: cfg } } - assert.equal(typeof cfg, 'object', + assert.strictEqual(typeof cfg, 'object', 'You must specify the endpoint url when invoking this module') assert.ok(/^https?:/.test(cfg.url), 'url is not valid') @@ -88,7 +88,7 @@ module.exports = exports = function dbScope (cfg) { statusCode: response.statusCode }, response.headers) if (err) { - log({err: 'socket', body: body, headers: responseHeaders}) + log({ err: 'socket', body: body, headers: responseHeaders }) const returnError = errs.merge(err, { message: 'error happened in your connection', scope: 'socket', @@ -113,7 +113,7 @@ module.exports = exports = function dbScope (cfg) { } if (responseHeaders.statusCode >= 200 && responseHeaders.statusCode < 400) { - log({err: null, body: parsed, headers: responseHeaders}) + log({ err: null, body: parsed, headers: responseHeaders }) if (resolve) { resolve(parsed) } @@ -123,11 +123,11 @@ module.exports = exports = function dbScope (cfg) { return } - log({err: 'couch', body: parsed, headers: responseHeaders}) + log({ err: 'couch', body: parsed, headers: responseHeaders }) // cloudant stacktrace if (typeof parsed === 'string') { - parsed = {message: parsed} + parsed = { message: parsed } } if (!parsed.message && (parsed.reason || parsed.error)) { @@ -165,15 +165,15 @@ module.exports = exports = function dbScope (cfg) { function relax (opts, callback) { if (typeof opts === 'function') { callback = opts - opts = {path: ''} + opts = { path: '' } } if (typeof opts === 'string') { - opts = {path: opts} + opts = { path: opts } } if (!opts) { - opts = {path: ''} + opts = { path: '' } callback = null } @@ -314,12 +314,12 @@ module.exports = exports = function dbScope (cfg) { // http://docs.couchdb.org/en/latest/api/server/authn.html#post--_session function session (callback) { - return relax({db: '_session'}, callback) + return relax({ db: '_session' }, callback) } // http://docs.couchdb.org/en/latest/api/server/common.html#get--_db_updates function updates (qs0, callback0) { - const {opts, callback} = getCallback(qs0, callback0) + const { opts, callback } = getCallback(qs0, callback0) return relax({ db: '_db_updates', qs: opts @@ -332,28 +332,28 @@ module.exports = exports = function dbScope (cfg) { // http://docs.couchdb.org/en/latest/api/database/common.html#put--db function createDb (dbName, qs0, callback0) { - const {opts, callback} = getCallback(qs0, callback0) - return relax({db: dbName, method: 'PUT', qs: opts}, callback) + const { opts, callback } = getCallback(qs0, callback0) + return relax({ db: dbName, method: 'PUT', qs: opts }, callback) } // http://docs.couchdb.org/en/latest/api/database/common.html#delete--db function destroyDb (dbName, callback) { - return relax({db: dbName, method: 'DELETE'}, callback) + return relax({ db: dbName, method: 'DELETE' }, callback) } // http://docs.couchdb.org/en/latest/api/database/common.html#get--db function getDb (dbName, callback) { - return relax({db: dbName}, callback) + return relax({ db: dbName }, callback) } // http://docs.couchdb.org/en/latest/api/server/common.html#get--_all_dbs function listDbs (callback) { - return relax({db: '_all_dbs'}, callback) + return relax({ db: '_all_dbs' }, callback) } // http://docs.couchdb.org/en/latest/api/server/common.html#get--_all_dbs function listDbsAsStream () { - return relax({db: '_all_dbs', stream: true}) + return relax({ db: '_all_dbs', stream: true }) } // http://docs.couchdb.org/en/latest/api/database/compact.html#post--db-_compact @@ -372,16 +372,16 @@ module.exports = exports = function dbScope (cfg) { // http://docs.couchdb.org/en/latest/api/database/changes.html#get--db-_changes function changesDb (dbName, qs0, callback0) { - const {opts, callback} = getCallback(qs0, callback0) - return relax({db: dbName, path: '_changes', qs: opts}, callback) + const { opts, callback } = getCallback(qs0, callback0) + return relax({ db: dbName, path: '_changes', qs: opts }, callback) } function changesDbAsStream (dbName, opts) { - return relax({db: dbName, path: '_changes', stream: true, qs: opts}) + return relax({ db: dbName, path: '_changes', stream: true, qs: opts }) } function followDb (dbName, qs0, callback0) { - const {opts, callback} = getCallback(qs0, callback0) + const { opts, callback } = getCallback(qs0, callback0) opts.db = urlResolveFix(cfg.url, encodeURIComponent(dbName)) opts.httpAgent = httpAgent if (typeof callback === 'function') { @@ -406,13 +406,13 @@ module.exports = exports = function dbScope (cfg) { // http://docs.couchdb.org/en/latest/api/server/common.html#post--_replicate function replicateDb (source, target, opts0, callback0) { - const {opts, callback} = getCallback(opts0, callback0) + const { opts, callback } = getCallback(opts0, callback0) // _replicate opts.source = _serializeAsUrl(source) opts.target = _serializeAsUrl(target) - return relax({db: '_replicate', body: opts, method: 'POST'}, callback) + return relax({ db: '_replicate', body: opts, method: 'POST' }, callback) } // http://docs.couchdb.org/en/latest/api/server/common.html#uuids @@ -421,34 +421,34 @@ module.exports = exports = function dbScope (cfg) { callback = count count = 1 } - return relax({method: 'GET', path: '_uuids', qs: {count: count}}, callback) + return relax({ method: 'GET', path: '_uuids', qs: { count: count } }, callback) } // http://guide.couchdb.org/draft/replication.html function enableReplication (source, target, opts0, callback0) { - const {opts, callback} = getCallback(opts0, callback0) + const { opts, callback } = getCallback(opts0, callback0) // _replicator opts.source = _serializeAsUrl(source) opts.target = _serializeAsUrl(target) - return relax({db: '_replicator', body: opts, method: 'POST'}, callback) + return relax({ db: '_replicator', body: opts, method: 'POST' }, callback) } // http://guide.couchdb.org/draft/replication.html function queryReplication (id, opts0, callback0) { - const {opts, callback} = getCallback(opts0, callback0) - return relax({db: '_replicator', method: 'GET', path: id, qs: opts}, callback) + const { opts, callback } = getCallback(opts0, callback0) + return relax({ db: '_replicator', method: 'GET', path: id, qs: opts }, callback) } // http://guide.couchdb.org/draft/replication.html function disableReplication (id, rev, opts0, callback0) { - const {opts, callback} = getCallback(opts0, callback0) + const { opts, callback } = getCallback(opts0, callback0) const req = { db: '_replicator', method: 'DELETE', path: id, - qs: Object.assign(opts, {rev: rev}) + qs: Object.assign(opts, { rev: rev }) } return relax(req, callback) } @@ -460,12 +460,12 @@ module.exports = exports = function dbScope (cfg) { // http://docs.couchdb.org/en/latest/api/document/common.html#put--db-docid // http://docs.couchdb.org/en/latest/api/database/common.html#post--db function insertDoc (doc, qs0, callback0) { - const req = {db: dbName, body: doc, method: 'POST'} + const req = { db: dbName, body: doc, method: 'POST' } - let {opts, callback} = getCallback(qs0, callback0) + let { opts, callback } = getCallback(qs0, callback0) if (typeof opts === 'string') { - opts = {docName: opts} + opts = { docName: opts } } if (opts) { @@ -494,19 +494,19 @@ module.exports = exports = function dbScope (cfg) { db: dbName, doc: docName, method: 'DELETE', - qs: {rev: rev} + qs: { rev: rev } }, callback) } } // http://docs.couchdb.org/en/latest/api/document/common.html#get--db-docid function getDoc (docName, qs0, callback0) { - const {opts, callback} = getCallback(qs0, callback0) + const { opts, callback } = getCallback(qs0, callback0) if (!docName) { if (callback) { callback(new Error('Invalid doc id'), null) } } else { - return relax({db: dbName, doc: docName, qs: opts}, callback) + return relax({ db: dbName, doc: docName, qs: opts }, callback) } } @@ -541,13 +541,13 @@ module.exports = exports = function dbScope (cfg) { // http://docs.couchdb.org/en/latest/api/document/common.html#copy--db-docid function copyDoc (docSrc, docDest, opts0, callback0) { - const {opts, callback} = getCallback(opts0, callback0) + const { opts, callback } = getCallback(opts0, callback0) const qs = { db: dbName, doc: docSrc, method: 'COPY', - headers: {'Destination': docDest} + headers: { 'Destination': docDest } } if (opts.overwrite) { @@ -581,18 +581,18 @@ module.exports = exports = function dbScope (cfg) { // http://docs.couchdb.org/en/latest/api/database/bulk-api.html#get--db-_all_docs function listDoc (qs0, callback0) { - const {opts, callback} = getCallback(qs0, callback0) - return relax({db: dbName, path: '_all_docs', qs: opts}, callback) + const { opts, callback } = getCallback(qs0, callback0) + return relax({ db: dbName, path: '_all_docs', qs: opts }, callback) } // http://docs.couchdb.org/en/latest/api/database/bulk-api.html#get--db-_all_docs function listDocAsStream (opts) { - return relax({db: dbName, path: '_all_docs', qs: opts, stream: true}) + return relax({ db: dbName, path: '_all_docs', qs: opts, stream: true }) } // http://docs.couchdb.org/en/latest/api/database/bulk-api.html#post--db-_all_docs function fetchDocs (docNames, qs0, callback0) { - const {opts, callback} = getCallback(qs0, callback0) + const { opts, callback } = getCallback(qs0, callback0) opts['include_docs'] = true return relax({ @@ -605,7 +605,7 @@ module.exports = exports = function dbScope (cfg) { } function fetchRevs (docNames, qs0, callback0) { - const {opts, callback} = getCallback(qs0, callback0) + const { opts, callback } = getCallback(qs0, callback0) return relax({ db: dbName, path: '_all_docs', @@ -616,7 +616,7 @@ module.exports = exports = function dbScope (cfg) { } function view (ddoc, viewName, meta, qs0, callback0) { - const {opts, callback} = getCallback(qs0, callback0) + const { opts, callback } = getCallback(qs0, callback0) if (typeof meta.stream !== 'boolean') { meta.stream = false @@ -637,7 +637,7 @@ module.exports = exports = function dbScope (cfg) { stream: meta.stream }, callback) } else if (qs1 && qs1.keys) { - const body = {keys: qs1.keys} + const body = { keys: qs1.keys } delete qs1.keys return relax({ db: dbName, @@ -648,7 +648,7 @@ module.exports = exports = function dbScope (cfg) { stream: meta.stream }, callback) } else if (qs1 && qs1.queries) { - const body = {queries: qs1.queries} + const body = { queries: qs1.queries } delete qs1.queries return relax({ db: dbName, @@ -676,27 +676,27 @@ module.exports = exports = function dbScope (cfg) { // http://docs.couchdb.org/en/latest/api/ddoc/views.html#post--db-_design-ddoc-_view-view function viewDocs (ddoc, viewName, qs, callback) { - return view(ddoc, viewName, {type: 'view'}, qs, callback) + return view(ddoc, viewName, { type: 'view' }, qs, callback) } // http://docs.couchdb.org/en/latest/api/ddoc/views.html#post--db-_design-ddoc-_view-view function viewDocsAsStream (ddoc, viewName, qs) { - return view(ddoc, viewName, {type: 'view', stream: true}, qs) + return view(ddoc, viewName, { type: 'view', stream: true }, qs) } // cloudant function viewSearch (ddoc, viewName, qs, callback) { - return view(ddoc, viewName, {type: 'search'}, qs, callback) + return view(ddoc, viewName, { type: 'search' }, qs, callback) } // cloudant function viewSearchAsStream (ddoc, viewName, qs) { - return view(ddoc, viewName, {type: 'search', stream: true}, qs) + return view(ddoc, viewName, { type: 'search', stream: true }, qs) } // http://docs.couchdb.org/en/latest/api/ddoc/render.html#get--db-_design-ddoc-_show-func function showDoc (ddoc, viewName, docName, qs, callback) { - return view(ddoc, viewName + '/' + docName, {type: 'show'}, qs, callback) + return view(ddoc, viewName + '/' + docName, { type: 'show' }, qs, callback) } // http://docs.couchdb.org/en/latest/api/ddoc/render.html#put--db-_design-ddoc-_update-func-docid @@ -720,7 +720,7 @@ module.exports = exports = function dbScope (cfg) { // http://docs.couchdb.org/en/latest/api/database/bulk-api.html#post--db-_bulksDoc function bulksDoc (docs, qs0, callback0) { - const {opts, callback} = getCallback(qs0, callback0) + const { opts, callback } = getCallback(qs0, callback0) return relax({ db: dbName, path: '_bulk_docs', @@ -733,14 +733,14 @@ module.exports = exports = function dbScope (cfg) { // http://docs.couchdb.org/en/latest/api/document/common.html#creating-multiple-attachments function insertMultipart (doc, attachments, qs, callback) { if (typeof qs === 'string') { - qs = {docName: qs} + qs = { docName: qs } } qs = qs || {} const docName = qs.docName delete qs.docName - doc = Object.assign({_attachments: {}}, doc) + doc = Object.assign({ _attachments: {} }, doc) const multipart = [] @@ -752,7 +752,7 @@ module.exports = exports = function dbScope (cfg) { /* jscs:disable requireCamelCaseOrUpperCaseIdentifiers */ 'content_type': att.content_type } - multipart.push({body: att.data}) + multipart.push({ body: att.data }) }) multipart.unshift({ @@ -771,7 +771,7 @@ module.exports = exports = function dbScope (cfg) { } function getMultipart (docName, qs0, callback0) { - const {opts, callback} = getCallback(qs0, callback0) + const { opts, callback } = getCallback(qs0, callback0) opts.attachments = true return relax({ @@ -784,7 +784,7 @@ module.exports = exports = function dbScope (cfg) { } function insertAtt (docName, attName, att, contentType, qs0, callback0) { - const {opts, callback} = getCallback(qs0, callback0) + const { opts, callback } = getCallback(qs0, callback0) return relax({ db: dbName, att: attName, @@ -812,7 +812,7 @@ module.exports = exports = function dbScope (cfg) { } function getAtt (docName, attName, qs0, callback0) { - const {opts, callback} = getCallback(qs0, callback0) + const { opts, callback } = getCallback(qs0, callback0) return relax({ db: dbName, att: attName, @@ -905,7 +905,7 @@ module.exports = exports = function dbScope (cfg) { listAsStream: listDocAsStream, fetch: fetchDocs, fetchRevs: fetchRevs, - config: {url: cfg.url, db: dbName}, + config: { url: cfg.url, db: dbName }, multipart: { insert: insertMultipart, get: getMultipart diff --git a/package-lock.json b/package-lock.json index 5fbf826..5267567 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "nano", - "version": "8.0.1", + "version": "8.1.0", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -45,27 +45,16 @@ "dev": true }, "acorn": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.1.tgz", - "integrity": "sha512-d+nbxBUGKg7Arpsvbnlq61mc12ek3EY8EQldM3GPAhWJ1UVxC6TDGbIvUMNU6obBX3i1+ptCIzV4vq0gFPEGVQ==", + "version": "6.1.1", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/acorn/-/acorn-6.1.1.tgz", + "integrity": "sha1-fSWuBbuK0fm2mRCOEJTs14hK3B8=", "dev": true }, "acorn-jsx": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz", - "integrity": "sha1-r9+UiPsezvyDSPb7IvRk4ypYs2s=", - "dev": true, - "requires": { - "acorn": "^3.0.4" - }, - "dependencies": { - "acorn": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz", - "integrity": "sha1-ReN/s56No/JbruP/U2niu18iAXo=", - "dev": true - } - } + "version": "5.0.1", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/acorn-jsx/-/acorn-jsx-5.0.1.tgz", + "integrity": "sha1-MqBk/ZJUKSFqCbFBECv90YX65A4=", + "dev": true }, "ajv": { "version": "5.5.2", @@ -79,9 +68,9 @@ } }, "ajv-keywords": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-2.1.1.tgz", - "integrity": "sha1-YXmX/F9gV2iUxDX5QNgZ4TW4B2I=", + "version": "3.4.0", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/ajv-keywords/-/ajv-keywords-3.4.0.tgz", + "integrity": "sha1-S4Mee1MUFafMUYzUBOc/YZPGNJ0=", "dev": true }, "amdefine": { @@ -92,20 +81,20 @@ "optional": true }, "ansi-escapes": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.1.0.tgz", - "integrity": "sha512-UgAb8H9D41AQnu/PbWlCofQVcnV4Gs2bBJi9eZPxfU/hgglFh3SMDMENRIqdr7H6XFnXdoknctFByVsCOotTVw==", + "version": "3.2.0", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/ansi-escapes/-/ansi-escapes-3.2.0.tgz", + "integrity": "sha1-h4C5j/nb9WOBUtHx/lwde0RCl2s=", "dev": true }, "ansi-regex": { "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/ansi-regex/-/ansi-regex-2.1.1.tgz", "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", "dev": true }, "ansi-styles": { "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/ansi-styles/-/ansi-styles-2.2.1.tgz", "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", "dev": true }, @@ -120,7 +109,7 @@ }, "array-includes": { "version": "3.0.3", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.0.3.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/array-includes/-/array-includes-3.0.3.tgz", "integrity": "sha1-GEtI9i2S10UrsxsyMWXH+L0CJm0=", "dev": true, "requires": { @@ -128,27 +117,6 @@ "es-abstract": "^1.7.0" } }, - "array-union": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", - "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", - "dev": true, - "requires": { - "array-uniq": "^1.0.1" - } - }, - "array-uniq": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", - "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=", - "dev": true - }, - "arrify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", - "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=", - "dev": true - }, "asn1": { "version": "0.2.4", "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", @@ -164,17 +132,17 @@ }, "assertion-error": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz", - "integrity": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/assertion-error/-/assertion-error-1.1.0.tgz", + "integrity": "sha1-5gtrDo8wG9l+U3UhW9pAbIURjAs=", "dev": true }, "async": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/async/-/async-2.6.1.tgz", - "integrity": "sha512-fNEiL2+AZt6AlAw/29Cr0UDe4sRAHCpEHh54WMz+Bb7QfNcFw4h3loofyJpLeQs4Yx7yuqu/2dLgM5hKOs6HlQ==", + "version": "2.6.2", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/async/-/async-2.6.2.tgz", + "integrity": "sha1-GDMOp+bjE4h/XS8qkEusb+TdU4E=", "dev": true, "requires": { - "lodash": "^4.17.10" + "lodash": "^4.17.11" } }, "asynckit": { @@ -194,7 +162,7 @@ }, "babel-code-frame": { "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/babel-code-frame/-/babel-code-frame-6.26.0.tgz", "integrity": "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=", "dev": true, "requires": { @@ -205,7 +173,7 @@ "dependencies": { "chalk": { "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/chalk/-/chalk-1.1.3.tgz", "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", "dev": true, "requires": { @@ -218,7 +186,7 @@ }, "strip-ansi": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/strip-ansi/-/strip-ansi-3.0.1.tgz", "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", "dev": true, "requires": { @@ -227,7 +195,7 @@ }, "supports-color": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/supports-color/-/supports-color-2.0.0.tgz", "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", "dev": true } @@ -260,24 +228,12 @@ }, "browser-request": { "version": "0.3.3", - "resolved": "https://registry.npmjs.org/browser-request/-/browser-request-0.3.3.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/browser-request/-/browser-request-0.3.3.tgz", "integrity": "sha1-ns5bWsqJopkyJC4Yv5M975h2zBc=" }, - "buffer-from": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", - "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==", - "dev": true - }, - "builtin-modules": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz", - "integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=", - "dev": true - }, "caller-path": { "version": "0.1.0", - "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-0.1.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/caller-path/-/caller-path-0.1.0.tgz", "integrity": "sha1-lAhe9jWB7NPaqSREqP6U6CV3dR8=", "dev": true, "requires": { @@ -286,7 +242,7 @@ }, "callsites": { "version": "0.2.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-0.2.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/callsites/-/callsites-0.2.0.tgz", "integrity": "sha1-r6uWJikQp/M8GaV3WCXGnzTjUMo=", "dev": true }, @@ -296,23 +252,23 @@ "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" }, "chai": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chai/-/chai-4.1.2.tgz", - "integrity": "sha1-D2RYS6ZC8PKs4oBiefTwbKI61zw=", + "version": "4.2.0", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/chai/-/chai-4.2.0.tgz", + "integrity": "sha1-dgqnLPION5XoSxKHfODoNzeqKeU=", "dev": true, "requires": { - "assertion-error": "^1.0.1", - "check-error": "^1.0.1", - "deep-eql": "^3.0.0", + "assertion-error": "^1.1.0", + "check-error": "^1.0.2", + "deep-eql": "^3.0.1", "get-func-name": "^2.0.0", - "pathval": "^1.0.0", - "type-detect": "^4.0.0" + "pathval": "^1.1.0", + "type-detect": "^4.0.5" } }, "chalk": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz", - "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==", + "version": "2.4.2", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha1-zUJUFnelQzPPVBpJEIwUMrRMlCQ=", "dev": true, "requires": { "ansi-styles": "^3.2.1", @@ -322,8 +278,8 @@ "dependencies": { "ansi-styles": { "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=", "dev": true, "requires": { "color-convert": "^1.9.0" @@ -331,14 +287,14 @@ }, "has-flag": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/has-flag/-/has-flag-3.0.0.tgz", "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", "dev": true }, "supports-color": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz", - "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==", + "version": "5.5.0", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha1-4uaaRKyHcveKHsCzW2id9lMO/I8=", "dev": true, "requires": { "has-flag": "^3.0.0" @@ -348,25 +304,25 @@ }, "chardet": { "version": "0.4.2", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.4.2.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/chardet/-/chardet-0.4.2.tgz", "integrity": "sha1-tUc7M9yXxCTl2Y3IfVXU2KKci/I=", "dev": true }, "check-error": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/check-error/-/check-error-1.0.2.tgz", "integrity": "sha1-V00xLt2Iu13YkS6Sht1sCu1KrII=", "dev": true }, "circular-json": { "version": "0.3.3", - "resolved": "https://registry.npmjs.org/circular-json/-/circular-json-0.3.3.tgz", - "integrity": "sha512-UZK3NBx2Mca+b5LsG7bY183pHWt5Y1xts4P3Pz7ENTwGVnJOUWbRb3ocjvX7hx9tq/yTAdclXm9sZ38gNuem4A==", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/circular-json/-/circular-json-0.3.3.tgz", + "integrity": "sha1-gVyZ6oT2gJUp0vRXkb34JxE1LWY=", "dev": true }, "cli-cursor": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/cli-cursor/-/cli-cursor-2.1.0.tgz", "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=", "dev": true, "requires": { @@ -375,33 +331,18 @@ }, "cli-width": { "version": "2.2.0", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/cli-width/-/cli-width-2.2.0.tgz", "integrity": "sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=", "dev": true }, "cloudant-follow": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/cloudant-follow/-/cloudant-follow-0.18.0.tgz", - "integrity": "sha512-jsplCsI0EpJvTrlgeuuYFrmrKGxm8TlSkyKzOLZa6fc6p+FNT8UDPAwYeh0yaT8IdI+sxT5DTdCD2G45HWpSaw==", + "version": "0.18.1", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/cloudant-follow/-/cloudant-follow-0.18.1.tgz", + "integrity": "sha1-f0pUgUq85iwJmYf6G7ATHUVbx58=", "requires": { "browser-request": "~0.3.0", "debug": "^4.0.1", "request": "^2.88.0" - }, - "dependencies": { - "debug": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.0.tgz", - "integrity": "sha512-heNPJUJIqC+xB6ayLAMHaIrmN9HKa7aQO8MGqKpvCA+uJYVcvR6l5kgdrhRuwPFHU7P5/A1w0BjByPHwpfTDKg==", - "requires": { - "ms": "^2.1.1" - } - }, - "ms": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", - "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" - } } }, "co": { @@ -410,18 +351,18 @@ "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=" }, "color-convert": { - "version": "1.9.2", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.2.tgz", - "integrity": "sha512-3NUJZdhMhcdPn8vJ9v2UQJoH0qqoGUkYTgFEPZaPjEtwmmKUfNV46zZmgB2M5M4DCEQHMaCfWHCxiBflLm04Tg==", + "version": "1.9.3", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha1-u3GFBpDh8TZWfeYp0tVHHe2kweg=", "dev": true, "requires": { - "color-name": "1.1.1" + "color-name": "1.1.3" } }, "color-name": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.1.tgz", - "integrity": "sha1-SxQVMEz1ACjqgWQ2Q72C6gWANok=", + "version": "1.1.3", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", "dev": true }, "combined-stream": { @@ -445,21 +386,9 @@ "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", "dev": true }, - "concat-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", - "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^2.2.2", - "typedarray": "^0.0.6" - } - }, "contains-path": { "version": "0.1.0", - "resolved": "https://registry.npmjs.org/contains-path/-/contains-path-0.1.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/contains-path/-/contains-path-0.1.0.tgz", "integrity": "sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo=", "dev": true }, @@ -469,12 +398,14 @@ "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" }, "cross-spawn": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", - "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=", + "version": "6.0.5", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha1-Sl7Hxk364iw6FBJNus3uhG2Ay8Q=", "dev": true, "requires": { - "lru-cache": "^4.0.1", + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", "shebang-command": "^1.2.0", "which": "^1.2.9" } @@ -488,23 +419,23 @@ } }, "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "version": "4.1.1", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/debug/-/debug-4.1.1.tgz", + "integrity": "sha1-O3ImAlUQnGtYnO4FDx1RYTlmR5E=", "requires": { - "ms": "2.0.0" + "ms": "^2.1.1" } }, "debug-log": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/debug-log/-/debug-log-1.0.1.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/debug-log/-/debug-log-1.0.1.tgz", "integrity": "sha1-IwdjLUwEOCuN+KMvcLiVBG1SdF8=", "dev": true }, "deep-eql": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-3.0.1.tgz", - "integrity": "sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw==", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/deep-eql/-/deep-eql-3.0.1.tgz", + "integrity": "sha1-38lARACtHI/gI+faHfHBR8S0RN8=", "dev": true, "requires": { "type-detect": "^4.0.0" @@ -512,7 +443,7 @@ }, "deep-equal": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/deep-equal/-/deep-equal-1.0.1.tgz", "integrity": "sha1-9dJgKStmDghO/0zbyfCK0yR0SLU=", "dev": true }, @@ -523,25 +454,24 @@ "dev": true }, "define-properties": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.2.tgz", - "integrity": "sha1-g6c/L+pWmJj7c3GTyPhzyvbUXJQ=", + "version": "1.1.3", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha1-z4jabL7ib+bbcJT2HYcMvYTO6fE=", "dev": true, "requires": { - "foreach": "^2.0.5", - "object-keys": "^1.0.8" + "object-keys": "^1.0.12" } }, "defined": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/defined/-/defined-1.0.0.tgz", "integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=", "dev": true }, "deglob": { "version": "2.1.1", - "resolved": "https://registry.npmjs.org/deglob/-/deglob-2.1.1.tgz", - "integrity": "sha512-2kjwuGGonL7gWE1XU4Fv79+vVzpoQCl0V+boMwWtOQJV2AGDabCwez++nB1Nli/8BabAfZQ/UuHPlp6AymKdWw==", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/deglob/-/deglob-2.1.1.tgz", + "integrity": "sha1-0mjhaHJ3mYYujqwHBC4WWVfB874=", "dev": true, "requires": { "find-root": "^1.0.0", @@ -553,9 +483,9 @@ }, "dependencies": { "glob": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", - "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", + "version": "7.1.3", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/glob/-/glob-7.1.3.tgz", + "integrity": "sha1-OWCDLT8VdBCDQtr9OmezMsCWnfE=", "dev": true, "requires": { "fs.realpath": "^1.0.0", @@ -565,24 +495,15 @@ "once": "^1.3.0", "path-is-absolute": "^1.0.0" } + }, + "ignore": { + "version": "3.3.10", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/ignore/-/ignore-3.3.10.tgz", + "integrity": "sha1-Cpf7h2mG6AgcYxFg+PnziRV/AEM=", + "dev": true } } }, - "del": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/del/-/del-2.2.2.tgz", - "integrity": "sha1-wSyYHQZ4RshLyvhiz/kw2Qf/0ag=", - "dev": true, - "requires": { - "globby": "^5.0.0", - "is-path-cwd": "^1.0.0", - "is-path-in-cwd": "^1.0.0", - "object-assign": "^4.0.1", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0", - "rimraf": "^2.2.8" - } - }, "delayed-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", @@ -590,8 +511,8 @@ }, "doctrine": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha1-XNAfwQFiG0LEzX9dGmYkNxbT850=", "dev": true, "requires": { "esutils": "^2.0.2" @@ -609,8 +530,8 @@ }, "error-ex": { "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha1-tKxAZIEH/c3PriQvQovqihTU8b8=", "dev": true, "requires": { "is-arrayish": "^0.2.1" @@ -622,32 +543,33 @@ "integrity": "sha1-eYCZstvTfKK8dJ5TinwTB9C1BJk=" }, "es-abstract": { - "version": "1.12.0", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.12.0.tgz", - "integrity": "sha512-C8Fx/0jFmV5IPoMOFPA9P9G5NtqW+4cOPit3MIuvR2t7Ag2K15EJTpxnHAYTzL+aYQJIESYeXZmDBfOBE1HcpA==", + "version": "1.13.0", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/es-abstract/-/es-abstract-1.13.0.tgz", + "integrity": "sha1-rIYUX91QmdjdSVWMy6Lq+biOJOk=", "dev": true, "requires": { - "es-to-primitive": "^1.1.1", + "es-to-primitive": "^1.2.0", "function-bind": "^1.1.1", - "has": "^1.0.1", - "is-callable": "^1.1.3", - "is-regex": "^1.0.4" + "has": "^1.0.3", + "is-callable": "^1.1.4", + "is-regex": "^1.0.4", + "object-keys": "^1.0.12" } }, "es-to-primitive": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.1.1.tgz", - "integrity": "sha1-RTVSSKiJeQNLZ5Lhm7gfK3l13Q0=", + "version": "1.2.0", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/es-to-primitive/-/es-to-primitive-1.2.0.tgz", + "integrity": "sha1-7fckeAM0VujdqO8J4ArZZQcH83c=", "dev": true, "requires": { - "is-callable": "^1.1.1", + "is-callable": "^1.1.4", "is-date-object": "^1.0.1", - "is-symbol": "^1.0.1" + "is-symbol": "^1.0.2" } }, "escape-string-regexp": { "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", "dev": true }, @@ -665,63 +587,82 @@ } }, "eslint": { - "version": "4.18.2", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-4.18.2.tgz", - "integrity": "sha512-qy4i3wODqKMYfz9LUI8N2qYDkHkoieTbiHpMrYUI/WbjhXJQr7lI4VngixTgaG+yHX+NBCv7nW4hA0ShbvaNKw==", + "version": "5.4.0", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/eslint/-/eslint-5.4.0.tgz", + "integrity": "sha1-0GjsAwBrueBrQp3IX35GwbafrGI=", "dev": true, "requires": { - "ajv": "^5.3.0", - "babel-code-frame": "^6.22.0", + "ajv": "^6.5.0", + "babel-code-frame": "^6.26.0", "chalk": "^2.1.0", - "concat-stream": "^1.6.0", - "cross-spawn": "^5.1.0", + "cross-spawn": "^6.0.5", "debug": "^3.1.0", "doctrine": "^2.1.0", - "eslint-scope": "^3.7.1", + "eslint-scope": "^4.0.0", + "eslint-utils": "^1.3.1", "eslint-visitor-keys": "^1.0.0", - "espree": "^3.5.2", - "esquery": "^1.0.0", + "espree": "^4.0.0", + "esquery": "^1.0.1", "esutils": "^2.0.2", "file-entry-cache": "^2.0.0", "functional-red-black-tree": "^1.0.1", "glob": "^7.1.2", - "globals": "^11.0.1", - "ignore": "^3.3.3", + "globals": "^11.7.0", + "ignore": "^4.0.2", "imurmurhash": "^0.1.4", - "inquirer": "^3.0.6", - "is-resolvable": "^1.0.0", - "js-yaml": "^3.9.1", + "inquirer": "^5.2.0", + "is-resolvable": "^1.1.0", + "js-yaml": "^3.11.0", "json-stable-stringify-without-jsonify": "^1.0.1", "levn": "^0.3.0", - "lodash": "^4.17.4", - "minimatch": "^3.0.2", + "lodash": "^4.17.5", + "minimatch": "^3.0.4", "mkdirp": "^0.5.1", "natural-compare": "^1.4.0", "optionator": "^0.8.2", "path-is-inside": "^1.0.2", "pluralize": "^7.0.0", "progress": "^2.0.0", + "regexpp": "^2.0.0", "require-uncached": "^1.0.3", - "semver": "^5.3.0", + "semver": "^5.5.0", "strip-ansi": "^4.0.0", - "strip-json-comments": "~2.0.1", - "table": "4.0.2", - "text-table": "~0.2.0" + "strip-json-comments": "^2.0.1", + "table": "^4.0.3", + "text-table": "^0.2.0" }, "dependencies": { + "ajv": { + "version": "6.10.0", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/ajv/-/ajv-6.10.0.tgz", + "integrity": "sha1-kNDVRDnaWHzX6EO/twRfUL0ivfE=", + "dev": true, + "requires": { + "fast-deep-equal": "^2.0.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, "debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "version": "3.2.6", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/debug/-/debug-3.2.6.tgz", + "integrity": "sha1-6D0X3hbYp++3cX7b5fsQE17uYps=", "dev": true, "requires": { - "ms": "2.0.0" + "ms": "^2.1.1" } }, + "fast-deep-equal": { + "version": "2.0.1", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz", + "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=", + "dev": true + }, "glob": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", - "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", + "version": "7.1.3", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/glob/-/glob-7.1.3.tgz", + "integrity": "sha1-OWCDLT8VdBCDQtr9OmezMsCWnfE=", "dev": true, "requires": { "fs.realpath": "^1.0.0", @@ -731,133 +672,208 @@ "once": "^1.3.0", "path-is-absolute": "^1.0.0" } + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha1-afaofZUTq4u4/mO9sJecRI5oRmA=", + "dev": true } } }, "eslint-config-standard": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-11.0.0.tgz", - "integrity": "sha512-oDdENzpViEe5fwuRCWla7AXQd++/oyIp8zP+iP9jiUPG6NBj3SHgdgtl/kTn00AjeN+1HNvavTKmYbMo+xMOlw==", + "version": "12.0.0", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/eslint-config-standard/-/eslint-config-standard-12.0.0.tgz", + "integrity": "sha1-Y4tMZdsL1aQTGflruh8V3a0hB9k=", "dev": true }, "eslint-config-standard-jsx": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/eslint-config-standard-jsx/-/eslint-config-standard-jsx-5.0.0.tgz", - "integrity": "sha512-rLToPAEqLMPBfWnYTu6xRhm2OWziS2n40QFqJ8jAM8NSVzeVKTa3nclhsU4DpPJQRY60F34Oo1wi/71PN/eITg==", + "version": "6.0.2", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/eslint-config-standard-jsx/-/eslint-config-standard-jsx-6.0.2.tgz", + "integrity": "sha1-kMmqFqwsT4lwwT/H78YIus0C2nA=", "dev": true }, "eslint-import-resolver-node": { "version": "0.3.2", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.2.tgz", - "integrity": "sha512-sfmTqJfPSizWu4aymbPr4Iidp5yKm8yDkHp+Ir3YiTHiiDfxh69mOUsmiqW6RZ9zRXFaF64GtYmN7e+8GHBv6Q==", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.2.tgz", + "integrity": "sha1-WPFfuDm40FdsqYBBNHaqskcttmo=", "dev": true, "requires": { "debug": "^2.6.9", "resolve": "^1.5.0" }, "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/debug/-/debug-2.6.9.tgz", + "integrity": "sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8=", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, "resolve": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.8.1.tgz", - "integrity": "sha512-AicPrAC7Qu1JxPCZ9ZgCZlY35QgFnNqc+0LtbRNxnVw4TXvjQ72wnuL9JQcEBgXkI9JM8MsT9kaQoHcpCRJOYA==", + "version": "1.10.1", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/resolve/-/resolve-1.10.1.tgz", + "integrity": "sha1-ZkhCrJYHlbvnWCIc3M2mH7ZLXxg=", "dev": true, "requires": { - "path-parse": "^1.0.5" + "path-parse": "^1.0.6" } } } }, "eslint-module-utils": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.2.0.tgz", - "integrity": "sha1-snA2LNiLGkitMIl2zn+lTphBF0Y=", + "version": "2.4.0", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/eslint-module-utils/-/eslint-module-utils-2.4.0.tgz", + "integrity": "sha1-i5NJnpsA6rgMy2YU5p8DZ46E4Jo=", "dev": true, "requires": { "debug": "^2.6.8", - "pkg-dir": "^1.0.0" + "pkg-dir": "^2.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/debug/-/debug-2.6.9.tgz", + "integrity": "sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8=", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "eslint-plugin-es": { + "version": "1.4.0", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/eslint-plugin-es/-/eslint-plugin-es-1.4.0.tgz", + "integrity": "sha1-R19luyDJk/wQ6Mj+d9HWAGgHLaY=", + "dev": true, + "requires": { + "eslint-utils": "^1.3.0", + "regexpp": "^2.0.1" } }, "eslint-plugin-import": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.9.0.tgz", - "integrity": "sha1-JgAu+/ylmJtyiKwEdQi9JPIXsWk=", + "version": "2.14.0", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/eslint-plugin-import/-/eslint-plugin-import-2.14.0.tgz", + "integrity": "sha1-axdibS4+atUs/OiAeoRdFeIhEag=", "dev": true, "requires": { - "builtin-modules": "^1.1.1", "contains-path": "^0.1.0", "debug": "^2.6.8", "doctrine": "1.5.0", "eslint-import-resolver-node": "^0.3.1", - "eslint-module-utils": "^2.1.1", + "eslint-module-utils": "^2.2.0", "has": "^1.0.1", "lodash": "^4.17.4", "minimatch": "^3.0.3", - "read-pkg-up": "^2.0.0" + "read-pkg-up": "^2.0.0", + "resolve": "^1.6.0" }, "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/debug/-/debug-2.6.9.tgz", + "integrity": "sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8=", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, "doctrine": { "version": "1.5.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/doctrine/-/doctrine-1.5.0.tgz", "integrity": "sha1-N53Ocw9hZvds76TmcHoVmwLFpvo=", "dev": true, "requires": { "esutils": "^2.0.2", "isarray": "^1.0.0" } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "resolve": { + "version": "1.10.1", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/resolve/-/resolve-1.10.1.tgz", + "integrity": "sha1-ZkhCrJYHlbvnWCIc3M2mH7ZLXxg=", + "dev": true, + "requires": { + "path-parse": "^1.0.6" + } } } }, "eslint-plugin-node": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-node/-/eslint-plugin-node-6.0.1.tgz", - "integrity": "sha512-Q/Cc2sW1OAISDS+Ji6lZS2KV4b7ueA/WydVWd1BECTQwVvfQy5JAi3glhINoKzoMnfnuRgNP+ZWKrGAbp3QDxw==", + "version": "7.0.1", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/eslint-plugin-node/-/eslint-plugin-node-7.0.1.tgz", + "integrity": "sha1-puBU5QGZsu3YVRi4m057MjyfNts=", "dev": true, "requires": { - "ignore": "^3.3.6", + "eslint-plugin-es": "^1.3.1", + "eslint-utils": "^1.3.1", + "ignore": "^4.0.2", "minimatch": "^3.0.4", - "resolve": "^1.3.3", - "semver": "^5.4.1" + "resolve": "^1.8.1", + "semver": "^5.5.0" }, "dependencies": { "resolve": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.8.1.tgz", - "integrity": "sha512-AicPrAC7Qu1JxPCZ9ZgCZlY35QgFnNqc+0LtbRNxnVw4TXvjQ72wnuL9JQcEBgXkI9JM8MsT9kaQoHcpCRJOYA==", + "version": "1.10.1", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/resolve/-/resolve-1.10.1.tgz", + "integrity": "sha1-ZkhCrJYHlbvnWCIc3M2mH7ZLXxg=", "dev": true, "requires": { - "path-parse": "^1.0.5" + "path-parse": "^1.0.6" } } } }, "eslint-plugin-promise": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-3.7.0.tgz", - "integrity": "sha512-2WO+ZFh7vxUKRfR0cOIMrWgYKdR6S1AlOezw6pC52B6oYpd5WFghN+QHxvrRdZMtbo8h3dfUZ2o1rWb0UPbKtg==", + "version": "4.0.1", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/eslint-plugin-promise/-/eslint-plugin-promise-4.0.1.tgz", + "integrity": "sha1-LQdLZT81oj0bqJ2Ol2qYURfRxqI=", "dev": true }, "eslint-plugin-react": { - "version": "7.7.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.7.0.tgz", - "integrity": "sha512-KC7Snr4YsWZD5flu6A5c0AcIZidzW3Exbqp7OT67OaD2AppJtlBr/GuPrW/vaQM/yfZotEvKAdrxrO+v8vwYJA==", + "version": "7.11.1", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/eslint-plugin-react/-/eslint-plugin-react-7.11.1.tgz", + "integrity": "sha1-wBp69vF1GUV9YRaqlPxtLMrVRDw=", "dev": true, "requires": { - "doctrine": "^2.0.2", - "has": "^1.0.1", + "array-includes": "^3.0.3", + "doctrine": "^2.1.0", + "has": "^1.0.3", "jsx-ast-utils": "^2.0.1", - "prop-types": "^15.6.0" + "prop-types": "^15.6.2" } }, "eslint-plugin-standard": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-standard/-/eslint-plugin-standard-3.0.1.tgz", - "integrity": "sha1-NNDJFbRe3G8BA5PH7vOCOwhWXPI=", + "version": "4.0.0", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/eslint-plugin-standard/-/eslint-plugin-standard-4.0.0.tgz", + "integrity": "sha1-+EW0UQnJnNkOd3lpQKNEVGyPa1w=", "dev": true }, "eslint-scope": { - "version": "3.7.3", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-3.7.3.tgz", - "integrity": "sha512-W+B0SvF4gamyCTmUc+uITPY0989iXVfKvhwtmJocTaYoc/3khEHmEmvfY/Gn9HA9VV75jrQECsHizkNw1b68FA==", + "version": "4.0.3", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/eslint-scope/-/eslint-scope-4.0.3.tgz", + "integrity": "sha1-ygODMxD2iJoyZHgaqC5j65z+eEg=", "dev": true, "requires": { "esrecurse": "^4.1.0", @@ -866,26 +882,33 @@ "dependencies": { "estraverse": { "version": "4.2.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/estraverse/-/estraverse-4.2.0.tgz", "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=", "dev": true } } }, + "eslint-utils": { + "version": "1.3.1", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/eslint-utils/-/eslint-utils-1.3.1.tgz", + "integrity": "sha1-moUbqJ7nxGA0b5fPiTnHKYgn5RI=", + "dev": true + }, "eslint-visitor-keys": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz", - "integrity": "sha512-qzm/XxIbxm/FHyH341ZrbnMUpe+5Bocte9xkmFMzPMjRaZMcXww+MpBptFvtU+79L362nqiLhekCxCxDPaUMBQ==", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz", + "integrity": "sha1-PzGA+y4pEBdxastMnW1bXDSmqB0=", "dev": true }, "espree": { - "version": "3.5.4", - "resolved": "https://registry.npmjs.org/espree/-/espree-3.5.4.tgz", - "integrity": "sha512-yAcIQxtmMiB/jL32dzEp2enBeidsB7xWPLNiw3IIkpVds1P+h7qF9YwJq1yUNzp2OKXgAprs4F61ih66UsoD1A==", + "version": "4.1.0", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/espree/-/espree-4.1.0.tgz", + "integrity": "sha1-co1UUeD9FWwEOEp62J7VH/VOsl8=", "dev": true, "requires": { - "acorn": "^5.5.0", - "acorn-jsx": "^3.0.0" + "acorn": "^6.0.2", + "acorn-jsx": "^5.0.0", + "eslint-visitor-keys": "^1.0.0" } }, "esprima": { @@ -896,8 +919,8 @@ }, "esquery": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.0.1.tgz", - "integrity": "sha512-SmiyZ5zIWH9VM+SRUReLS5Q8a7GxtRdxEBVZpm98rJM7Sb+A9DVCndXfkeFUd3byderg+EbDkfnevfCwynWaNA==", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/esquery/-/esquery-1.0.1.tgz", + "integrity": "sha1-QGxRZYsfWZGl+bYrHcJbAOPlxwg=", "dev": true, "requires": { "estraverse": "^4.0.0" @@ -905,7 +928,7 @@ "dependencies": { "estraverse": { "version": "4.2.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/estraverse/-/estraverse-4.2.0.tgz", "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=", "dev": true } @@ -913,8 +936,8 @@ }, "esrecurse": { "version": "4.2.1", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz", - "integrity": "sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/esrecurse/-/esrecurse-4.2.1.tgz", + "integrity": "sha1-AHo7n9vCs7uH5IeeoZyS/b05Qs8=", "dev": true, "requires": { "estraverse": "^4.1.0" @@ -922,7 +945,7 @@ "dependencies": { "estraverse": { "version": "4.2.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/estraverse/-/estraverse-4.2.0.tgz", "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=", "dev": true } @@ -947,8 +970,8 @@ }, "external-editor": { "version": "2.2.0", - "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-2.2.0.tgz", - "integrity": "sha512-bSn6gvGxKt+b7+6TKEv1ZycHleA7aHhRHyAqJyp5pbUFuYYNIzpZnQDk7AsYckyWdEnTeAnay0aCy2aV6iTk9A==", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/external-editor/-/external-editor-2.2.0.tgz", + "integrity": "sha1-BFURz9jRM/OEZnPRBHwVTiFK09U=", "dev": true, "requires": { "chardet": "^0.4.0", @@ -979,7 +1002,7 @@ }, "figures": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/figures/-/figures-2.0.0.tgz", "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=", "dev": true, "requires": { @@ -988,7 +1011,7 @@ }, "file-entry-cache": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-2.0.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/file-entry-cache/-/file-entry-cache-2.0.0.tgz", "integrity": "sha1-w5KZDD5oR4PYOLjISkXYoEhFg2E=", "dev": true, "requires": { @@ -998,47 +1021,40 @@ }, "find-root": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", - "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/find-root/-/find-root-1.1.0.tgz", + "integrity": "sha1-q8/Iunb3CMQql7PWhbfpRQv7nOQ=", "dev": true }, "find-up": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", - "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", + "version": "2.1.0", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", "dev": true, "requires": { - "path-exists": "^2.0.0", - "pinkie-promise": "^2.0.0" + "locate-path": "^2.0.0" } }, "flat-cache": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-1.3.0.tgz", - "integrity": "sha1-0wMLMrOBVPTjt+nHCfSQ9++XxIE=", + "version": "1.3.4", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/flat-cache/-/flat-cache-1.3.4.tgz", + "integrity": "sha1-LC73dSXMKSkAff/6HdMUqpyd7m8=", "dev": true, "requires": { "circular-json": "^0.3.1", - "del": "^2.0.2", "graceful-fs": "^4.1.2", + "rimraf": "~2.6.2", "write": "^0.2.1" } }, "for-each": { "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha1-abRH6IoKXTLD5whPPxcQA0shN24=", "dev": true, "requires": { "is-callable": "^1.1.3" } }, - "foreach": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz", - "integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k=", - "dev": true - }, "forever-agent": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", @@ -1056,32 +1072,32 @@ }, "fs.realpath": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/fs.realpath/-/fs.realpath-1.0.0.tgz", "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", "dev": true }, "function-bind": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha1-pWiZ0+o8m6uHS7l3O3xe3pL0iV0=", "dev": true }, "functional-red-black-tree": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", "dev": true }, "get-func-name": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/get-func-name/-/get-func-name-2.0.0.tgz", "integrity": "sha1-6td0q+5y4gQJQzoGY2YCPdaIekE=", "dev": true }, "get-stdin": { "version": "6.0.0", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-6.0.0.tgz", - "integrity": "sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g==", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/get-stdin/-/get-stdin-6.0.0.tgz", + "integrity": "sha1-ngm/cSs2CrkiXoEgSPcf3pyJZXs=", "dev": true }, "getpass": { @@ -1106,45 +1122,15 @@ } }, "globals": { - "version": "11.7.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.7.0.tgz", - "integrity": "sha512-K8BNSPySfeShBQXsahYB/AbbWruVOTyVpgoIDnl8odPpeSfP2J5QO2oLFFdl2j7GfDCtZj2bMKar2T49itTPCg==", + "version": "11.12.0", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/globals/-/globals-11.12.0.tgz", + "integrity": "sha1-q4eVM4hooLq9hSV1gBjCp+uVxC4=", "dev": true }, - "globby": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-5.0.0.tgz", - "integrity": "sha1-69hGZ8oNuzMLmbz8aOrCvFQ3Dg0=", - "dev": true, - "requires": { - "array-union": "^1.0.1", - "arrify": "^1.0.0", - "glob": "^7.0.3", - "object-assign": "^4.0.1", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" - }, - "dependencies": { - "glob": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", - "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - } - } - }, "graceful-fs": { - "version": "4.1.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", - "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=", + "version": "4.1.15", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/graceful-fs/-/graceful-fs-4.1.15.tgz", + "integrity": "sha1-/7cD4QZuig7qpMi4C6klPu77+wA=", "dev": true }, "handlebars": { @@ -1183,8 +1169,8 @@ }, "has": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/has/-/has-1.0.3.tgz", + "integrity": "sha1-ci18v8H2qoJB8W3YFOAR4fQeh5Y=", "dev": true, "requires": { "function-bind": "^1.1.1" @@ -1192,7 +1178,7 @@ }, "has-ansi": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/has-ansi/-/has-ansi-2.0.0.tgz", "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", "dev": true, "requires": { @@ -1205,10 +1191,16 @@ "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=", "dev": true }, + "has-symbols": { + "version": "1.0.0", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/has-symbols/-/has-symbols-1.0.0.tgz", + "integrity": "sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q=", + "dev": true + }, "hosted-git-info": { "version": "2.7.1", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.7.1.tgz", - "integrity": "sha512-7T/BxH19zbcCTa8XkMlbK5lTo1WtgkFi3GvdWEyNuc4Vex7/9Dqbnpsf4JMydcfj9HCg4zUWFTL3Za6lapg5/w==", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/hosted-git-info/-/hosted-git-info-2.7.1.tgz", + "integrity": "sha1-l/I2l3vW4SVAiTD/bePuxigewEc=", "dev": true }, "http-signature": { @@ -1222,23 +1214,23 @@ } }, "iconv-lite": { - "version": "0.4.23", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.23.tgz", - "integrity": "sha512-neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA==", + "version": "0.4.24", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha1-ICK0sl+93CHS9SSXSkdKr+czkIs=", "dev": true, "requires": { "safer-buffer": ">= 2.1.2 < 3" } }, "ignore": { - "version": "3.3.10", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz", - "integrity": "sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==", + "version": "4.0.6", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha1-dQ49tYYgh7RzfrrIIH/9HvJ7Jfw=", "dev": true }, "imurmurhash": { "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/imurmurhash/-/imurmurhash-0.1.4.tgz", "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", "dev": true }, @@ -1259,22 +1251,21 @@ "dev": true }, "inquirer": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-3.3.0.tgz", - "integrity": "sha512-h+xtnyk4EwKvFWHrUYsWErEVR+igKtLdchu+o0Z1RL7VU/jVMFbYir2bp6bAj8efFNxWqHX0dIss6fJQ+/+qeQ==", + "version": "5.2.0", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/inquirer/-/inquirer-5.2.0.tgz", + "integrity": "sha1-2zUMK3Paynf/EkOWLp8i8JloVyY=", "dev": true, "requires": { "ansi-escapes": "^3.0.0", "chalk": "^2.0.0", "cli-cursor": "^2.1.0", "cli-width": "^2.0.0", - "external-editor": "^2.0.4", + "external-editor": "^2.1.0", "figures": "^2.0.0", "lodash": "^4.3.0", "mute-stream": "0.0.7", "run-async": "^2.2.0", - "rx-lite": "^4.0.8", - "rx-lite-aggregates": "^4.0.8", + "rxjs": "^5.5.2", "string-width": "^2.1.0", "strip-ansi": "^4.0.0", "through": "^2.3.6" @@ -1282,70 +1273,37 @@ }, "is-arrayish": { "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/is-arrayish/-/is-arrayish-0.2.1.tgz", "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", "dev": true }, - "is-builtin-module": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz", - "integrity": "sha1-VAVy0096wxGfj3bDDLwbHgN6/74=", - "dev": true, - "requires": { - "builtin-modules": "^1.0.0" - } - }, "is-callable": { "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.4.tgz", - "integrity": "sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA==", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/is-callable/-/is-callable-1.1.4.tgz", + "integrity": "sha1-HhrfIZ4e62hNaR+dagX/DTCiTXU=", "dev": true }, "is-date-object": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/is-date-object/-/is-date-object-1.0.1.tgz", "integrity": "sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY=", "dev": true }, "is-fullwidth-code-point": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", "dev": true }, - "is-path-cwd": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-1.0.0.tgz", - "integrity": "sha1-0iXsIxMuie3Tj9p2dHLmLmXxEG0=", - "dev": true - }, - "is-path-in-cwd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz", - "integrity": "sha512-FjV1RTW48E7CWM7eE/J2NJvAEEVektecDBVBE5Hh3nM1Jd0kvhHtX68Pr3xsDf857xt3Y4AkwVULK1Vku62aaQ==", - "dev": true, - "requires": { - "is-path-inside": "^1.0.0" - } - }, - "is-path-inside": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz", - "integrity": "sha1-jvW33lBDej/cprToZe96pVy0gDY=", - "dev": true, - "requires": { - "path-is-inside": "^1.0.1" - } - }, "is-promise": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/is-promise/-/is-promise-2.1.0.tgz", "integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=", "dev": true }, "is-regex": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/is-regex/-/is-regex-1.0.4.tgz", "integrity": "sha1-VRdIm1RwkbCTDglWVM7SXul+lJE=", "dev": true, "requires": { @@ -1354,15 +1312,18 @@ }, "is-resolvable": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz", - "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/is-resolvable/-/is-resolvable-1.1.0.tgz", + "integrity": "sha1-+xj4fOH+uSUWnJpAfBkxijIG7Yg=", "dev": true }, "is-symbol": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.1.tgz", - "integrity": "sha1-PMWfAAJRlLarLjjbrmaJJWtmBXI=", - "dev": true + "version": "1.0.2", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/is-symbol/-/is-symbol-1.0.2.tgz", + "integrity": "sha1-oFX2rlcZLK7jKeeoYBGLSXqVDzg=", + "dev": true, + "requires": { + "has-symbols": "^1.0.0" + } }, "is-typedarray": { "version": "1.0.0", @@ -1371,7 +1332,7 @@ }, "isarray": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/isarray/-/isarray-1.0.0.tgz", "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", "dev": true }, @@ -1418,7 +1379,7 @@ }, "js-tokens": { "version": "3.0.2", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/js-tokens/-/js-tokens-3.0.2.tgz", "integrity": "sha1-mGbfOVECEw449/mWvOtlRDIJwls=", "dev": true }, @@ -1448,8 +1409,8 @@ }, "json-parse-better-errors": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", - "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha1-u4Z8+zRQ5pEHwTHRxRS6s9yLyqk=", "dev": true }, "json-schema": { @@ -1464,7 +1425,7 @@ }, "json-stable-stringify-without-jsonify": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", "dev": true }, @@ -1485,9 +1446,9 @@ } }, "jsx-ast-utils": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-2.0.1.tgz", - "integrity": "sha1-6AGxs5mF4g//yHtA43SAgOLcrH8=", + "version": "2.1.0", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/jsx-ast-utils/-/jsx-ast-utils-2.1.0.tgz", + "integrity": "sha1-DuTiyXH7lgHGe1ZBtxvoD67PCzY=", "dev": true, "requires": { "array-includes": "^3.0.3" @@ -1505,7 +1466,7 @@ }, "load-json-file": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/load-json-file/-/load-json-file-2.0.0.tgz", "integrity": "sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=", "dev": true, "requires": { @@ -1517,47 +1478,29 @@ }, "locate-path": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/locate-path/-/locate-path-2.0.0.tgz", "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", "dev": true, "requires": { "p-locate": "^2.0.0", "path-exists": "^3.0.0" - }, - "dependencies": { - "path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", - "dev": true - } } }, "lodash": { "version": "4.17.11", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz", - "integrity": "sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/lodash/-/lodash-4.17.11.tgz", + "integrity": "sha1-s56mIp72B+zYniyN8SU2iRysm40=", "dev": true }, "loose-envify": { "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha1-ce5R+nvkyuwaY4OffmgtgTLTDK8=", "dev": true, "requires": { "js-tokens": "^3.0.0 || ^4.0.0" } }, - "lru-cache": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.3.tgz", - "integrity": "sha512-fFEhvcgzuIoJVUF8fYr5KR0YqxD238zgObTps31YdADwPPAp82a4M8TrckkWyx7ekNlf9aBcVn81cFwwXngrJA==", - "dev": true, - "requires": { - "pseudomap": "^1.0.2", - "yallist": "^2.1.2" - } - }, "mime-db": { "version": "1.35.0", "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.35.0.tgz", @@ -1573,8 +1516,8 @@ }, "mimic-fn": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", - "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/mimic-fn/-/mimic-fn-1.2.0.tgz", + "integrity": "sha1-ggyGo5M0ZA6ZUWkovQP8qIBX0CI=", "dev": true }, "minimatch": { @@ -1610,19 +1553,19 @@ } }, "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + "version": "2.1.1", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/ms/-/ms-2.1.1.tgz", + "integrity": "sha1-MKWGTrPrsKZvLr5tcnrwagnYbgo=" }, "mute-stream": { "version": "0.0.7", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/mute-stream/-/mute-stream-0.0.7.tgz", "integrity": "sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=", "dev": true }, "natural-compare": { "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/natural-compare/-/natural-compare-1.4.0.tgz", "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", "dev": true }, @@ -1632,14 +1575,20 @@ "integrity": "sha512-MFh0d/Wa7vkKO3Y3LlacqAEeHK0mckVqzDieUKTT+KGxi+zIpeVsFxymkIiRpbpDziHc290Xr9A1O4Om7otoRA==", "dev": true }, + "nice-try": { + "version": "1.0.5", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha1-ozeKdpbOfSI+iPybdkvX7xCJ42Y=", + "dev": true + }, "nock": { - "version": "9.6.1", - "resolved": "https://registry.npmjs.org/nock/-/nock-9.6.1.tgz", - "integrity": "sha512-EDgl/WgNQ0C1BZZlASOQkQdE6tAWXJi8QQlugqzN64JJkvZ7ILijZuG24r4vCC7yOfnm6HKpne5AGExLGCeBWg==", + "version": "10.0.6", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/nock/-/nock-10.0.6.tgz", + "integrity": "sha1-5tkO56aLjPwqt/YSfn2Zqn0T0RE=", "dev": true, "requires": { "chai": "^4.1.2", - "debug": "^3.1.0", + "debug": "^4.1.0", "deep-equal": "^1.0.0", "json-stringify-safe": "^5.0.1", "lodash": "^4.17.5", @@ -1647,17 +1596,6 @@ "propagate": "^1.0.0", "qs": "^6.5.1", "semver": "^5.5.0" - }, - "dependencies": { - "debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - } } }, "nopt": { @@ -1670,15 +1608,26 @@ } }, "normalize-package-data": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz", - "integrity": "sha512-9jjUFbTPfEy3R/ad/2oNbKtW9Hgovl5O1FvFWKkKblNXoN/Oou6+9+KKohPK13Yc3/TyunyWhJp6gvRNR/PPAw==", + "version": "2.5.0", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha1-5m2xg4sgDB38IzIl0SyzZSDiNKg=", "dev": true, "requires": { "hosted-git-info": "^2.1.4", - "is-builtin-module": "^1.0.0", + "resolve": "^1.10.0", "semver": "2 || 3 || 4 || 5", "validate-npm-package-license": "^3.0.1" + }, + "dependencies": { + "resolve": { + "version": "1.10.1", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/resolve/-/resolve-1.10.1.tgz", + "integrity": "sha1-ZkhCrJYHlbvnWCIc3M2mH7ZLXxg=", + "dev": true, + "requires": { + "path-parse": "^1.0.6" + } + } } }, "oauth-sign": { @@ -1688,20 +1637,20 @@ }, "object-assign": { "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/object-assign/-/object-assign-4.1.1.tgz", "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", "dev": true }, "object-inspect": { "version": "1.6.0", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.6.0.tgz", - "integrity": "sha512-GJzfBZ6DgDAmnuaM3104jR4s1Myxr3Y3zfIyN4z3UdqN69oSRacNK8UhnobDdC+7J2AHCjGwxQubNJfE70SXXQ==", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/object-inspect/-/object-inspect-1.6.0.tgz", + "integrity": "sha1-xwtsv3LydKq0w0wMgvUWe/gs8Vs=", "dev": true }, "object-keys": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.0.12.tgz", - "integrity": "sha512-FTMyFUm2wBcGHnH2eXmz7tC6IwlqQZ6mVZ+6dm6vZ4IQIHjs6FdNsQBuKGPuUUUY6NfJw2PshC08Tn6LzLDOag==", + "version": "1.1.1", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha1-HEfyct8nfzsdrwYWd9nILiMixg4=", "dev": true }, "once": { @@ -1715,7 +1664,7 @@ }, "onetime": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/onetime/-/onetime-2.0.1.tgz", "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=", "dev": true, "requires": { @@ -1756,14 +1705,14 @@ }, "os-tmpdir": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/os-tmpdir/-/os-tmpdir-1.0.2.tgz", "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", "dev": true }, "p-limit": { "version": "1.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", - "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha1-uGvV8MJWkJEcdZD8v8IBDVSzzLg=", "dev": true, "requires": { "p-try": "^1.0.0" @@ -1771,7 +1720,7 @@ }, "p-locate": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/p-locate/-/p-locate-2.0.0.tgz", "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", "dev": true, "requires": { @@ -1780,13 +1729,13 @@ }, "p-try": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/p-try/-/p-try-1.0.0.tgz", "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", "dev": true }, "parse-json": { "version": "2.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/parse-json/-/parse-json-2.2.0.tgz", "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", "dev": true, "requires": { @@ -1794,13 +1743,10 @@ } }, "path-exists": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", - "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", - "dev": true, - "requires": { - "pinkie-promise": "^2.0.0" - } + "version": "3.0.0", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true }, "path-is-absolute": { "version": "1.0.1", @@ -1810,19 +1756,25 @@ }, "path-is-inside": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/path-is-inside/-/path-is-inside-1.0.2.tgz", "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=", "dev": true }, + "path-key": { + "version": "2.0.1", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "dev": true + }, "path-parse": { "version": "1.0.6", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", - "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/path-parse/-/path-parse-1.0.6.tgz", + "integrity": "sha1-1i27VnlAXXLEc37FhgDp3c8G0kw=", "dev": true }, "path-type": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/path-type/-/path-type-2.0.0.tgz", "integrity": "sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=", "dev": true, "requires": { @@ -1831,7 +1783,7 @@ }, "pathval": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/pathval/-/pathval-1.1.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/pathval/-/pathval-1.1.0.tgz", "integrity": "sha1-uULm1L3mUwBe9rcTYd74cn0GReA=", "dev": true }, @@ -1842,28 +1794,13 @@ }, "pify": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/pify/-/pify-2.3.0.tgz", "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", "dev": true }, - "pinkie": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", - "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", - "dev": true - }, - "pinkie-promise": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", - "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", - "dev": true, - "requires": { - "pinkie": "^2.0.0" - } - }, "pkg-conf": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-2.1.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/pkg-conf/-/pkg-conf-2.1.0.tgz", "integrity": "sha1-ISZRTKbyq/69FoWW3xi6V4Z/AFg=", "dev": true, "requires": { @@ -1871,18 +1808,9 @@ "load-json-file": "^4.0.0" }, "dependencies": { - "find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", - "dev": true, - "requires": { - "locate-path": "^2.0.0" - } - }, "load-json-file": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/load-json-file/-/load-json-file-4.0.0.tgz", "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", "dev": true, "requires": { @@ -1894,7 +1822,7 @@ }, "parse-json": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/parse-json/-/parse-json-4.0.0.tgz", "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", "dev": true, "requires": { @@ -1904,7 +1832,7 @@ }, "pify": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/pify/-/pify-3.0.0.tgz", "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", "dev": true } @@ -1912,7 +1840,7 @@ }, "pkg-config": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/pkg-config/-/pkg-config-1.1.1.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/pkg-config/-/pkg-config-1.1.1.tgz", "integrity": "sha1-VX7yLXPaPIg3EHdmxS6tq94pj+Q=", "dev": true, "requires": { @@ -1922,18 +1850,18 @@ } }, "pkg-dir": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-1.0.0.tgz", - "integrity": "sha1-ektQio1bstYp1EcFb/TpyTFM89Q=", + "version": "2.0.0", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/pkg-dir/-/pkg-dir-2.0.0.tgz", + "integrity": "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=", "dev": true, "requires": { - "find-up": "^1.0.0" + "find-up": "^2.1.0" } }, "pluralize": { "version": "7.0.0", - "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-7.0.0.tgz", - "integrity": "sha512-ARhBOdzS3e41FbkW/XWrTEtukqqLoK5+Z/4UeDaLuSW+39JPeFgs4gCGqsrJHVZX0fUrx//4OF0K1CUGwlIFow==", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/pluralize/-/pluralize-7.0.0.tgz", + "integrity": "sha1-KYuJ34uTsCIdv0Ia0rGx6iP8Z3c=", "dev": true }, "prelude-ls": { @@ -1942,40 +1870,29 @@ "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", "dev": true }, - "process-nextick-args": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", - "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==", - "dev": true - }, "progress": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.0.tgz", - "integrity": "sha1-ihvjZr+Pwj2yvSPxDG/pILQ4nR8=", + "version": "2.0.3", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/progress/-/progress-2.0.3.tgz", + "integrity": "sha1-foz42PW48jnBvGi+tOt4Vn1XLvg=", "dev": true }, "prop-types": { - "version": "15.6.2", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.6.2.tgz", - "integrity": "sha512-3pboPvLiWD7dkI3qf3KbUe6hKFKa52w+AE0VCqECtf+QHAKgOL37tTaNCnuX1nAAQ4ZhyP+kYVKf8rLmJ/feDQ==", + "version": "15.7.2", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/prop-types/-/prop-types-15.7.2.tgz", + "integrity": "sha1-UsQedbjIfnK52TYOAga5ncv/psU=", "dev": true, "requires": { - "loose-envify": "^1.3.1", - "object-assign": "^4.1.1" + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.8.1" } }, "propagate": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/propagate/-/propagate-1.0.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/propagate/-/propagate-1.0.0.tgz", "integrity": "sha1-AMLa7t2iDofjeCs0Stuhzd1q1wk=", "dev": true }, - "pseudomap": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", - "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=", - "dev": true - }, "psl": { "version": "1.1.29", "resolved": "https://registry.npmjs.org/psl/-/psl-1.1.29.tgz", @@ -1991,9 +1908,15 @@ "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==" }, + "react-is": { + "version": "16.8.6", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/react-is/-/react-is-16.8.6.tgz", + "integrity": "sha1-W7weLSkUHJ+9/tRWND/ivEMKahY=", + "dev": true + }, "read-pkg": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/read-pkg/-/read-pkg-2.0.0.tgz", "integrity": "sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=", "dev": true, "requires": { @@ -2004,39 +1927,19 @@ }, "read-pkg-up": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/read-pkg-up/-/read-pkg-up-2.0.0.tgz", "integrity": "sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=", "dev": true, "requires": { "find-up": "^2.0.0", "read-pkg": "^2.0.0" - }, - "dependencies": { - "find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", - "dev": true, - "requires": { - "locate-path": "^2.0.0" - } - } } }, - "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } + "regexpp": { + "version": "2.0.1", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/regexpp/-/regexpp-2.0.1.tgz", + "integrity": "sha1-jRnTHPYySCtYkEn4KB+T28uk0H8=", + "dev": true }, "request": { "version": "2.88.0", @@ -2067,7 +1970,7 @@ }, "require-uncached": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/require-uncached/-/require-uncached-1.0.3.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/require-uncached/-/require-uncached-1.0.3.tgz", "integrity": "sha1-Tg1W1slmL9MeQwEcS5WqSZVUIdM=", "dev": true, "requires": { @@ -2083,13 +1986,13 @@ }, "resolve-from": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-1.0.1.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/resolve-from/-/resolve-from-1.0.1.tgz", "integrity": "sha1-Jsv+k10a7uq7Kbw/5a6wHpPUQiY=", "dev": true }, "restore-cursor": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/restore-cursor/-/restore-cursor-2.0.0.tgz", "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=", "dev": true, "requires": { @@ -2099,7 +2002,7 @@ }, "resumer": { "version": "0.0.0", - "resolved": "https://registry.npmjs.org/resumer/-/resumer-0.0.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/resumer/-/resumer-0.0.0.tgz", "integrity": "sha1-8ej0YeQGS6Oegq883CqMiT0HZ1k=", "dev": true, "requires": { @@ -2107,18 +2010,18 @@ } }, "rimraf": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz", - "integrity": "sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==", + "version": "2.6.3", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/rimraf/-/rimraf-2.6.3.tgz", + "integrity": "sha1-stEE/g2Psnz54KHNqCYt04M8bKs=", "dev": true, "requires": { - "glob": "^7.0.5" + "glob": "^7.1.3" }, "dependencies": { "glob": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", - "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", + "version": "7.1.3", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/glob/-/glob-7.1.3.tgz", + "integrity": "sha1-OWCDLT8VdBCDQtr9OmezMsCWnfE=", "dev": true, "requires": { "fs.realpath": "^1.0.0", @@ -2133,7 +2036,7 @@ }, "run-async": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.3.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/run-async/-/run-async-2.3.0.tgz", "integrity": "sha1-A3GrSuC91yDUFm19/aZP96RFpsA=", "dev": true, "requires": { @@ -2142,23 +2045,17 @@ }, "run-parallel": { "version": "1.1.9", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.9.tgz", - "integrity": "sha512-DEqnSRTDw/Tc3FXf49zedI638Z9onwUotBMiUFKmrO2sdFKIbXamXGQ3Axd4qgphxKB4kw/qP1w5kTxnfU1B9Q==", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/run-parallel/-/run-parallel-1.1.9.tgz", + "integrity": "sha1-yd06fPn0ssS2JE4XOm7YZuYd1nk=", "dev": true }, - "rx-lite": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/rx-lite/-/rx-lite-4.0.8.tgz", - "integrity": "sha1-Cx4Rr4vESDbwSmQH6S2kJGe3lEQ=", - "dev": true - }, - "rx-lite-aggregates": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz", - "integrity": "sha1-dTuHqJoRyVRnxKwWJsTvxOBcZ74=", + "rxjs": { + "version": "5.5.12", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/rxjs/-/rxjs-5.5.12.tgz", + "integrity": "sha1-b6YbinfD15PbrycL7i9D9lLXQcw=", "dev": true, "requires": { - "rx-lite": "*" + "symbol-observable": "1.0.1" } }, "safe-buffer": { @@ -2172,14 +2069,14 @@ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" }, "semver": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz", - "integrity": "sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==", + "version": "5.7.0", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/semver/-/semver-5.7.0.tgz", + "integrity": "sha1-eQp89v6lRZuslhELKbYEEtyP+Ws=", "dev": true }, "shebang-command": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/shebang-command/-/shebang-command-1.2.0.tgz", "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", "dev": true, "requires": { @@ -2188,20 +2085,20 @@ }, "shebang-regex": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/shebang-regex/-/shebang-regex-1.0.0.tgz", "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", "dev": true }, "signal-exit": { "version": "3.0.2", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/signal-exit/-/signal-exit-3.0.2.tgz", "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=", "dev": true }, "slice-ansi": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-1.0.0.tgz", - "integrity": "sha512-POqxBK6Lb3q6s047D/XsDVNPnF9Dl8JSaqe9h9lURl0OdNqy/ujDrOiIHtsqXMGbWWTIomRzAMaTyawAU//Reg==", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/slice-ansi/-/slice-ansi-1.0.0.tgz", + "integrity": "sha1-BE8aSdiEL/MHqta1Be0Xi9lQE00=", "dev": true, "requires": { "is-fullwidth-code-point": "^2.0.0" @@ -2218,9 +2115,9 @@ } }, "spdx-correct": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.0.0.tgz", - "integrity": "sha512-N19o9z5cEyc8yQQPukRCZ9EUmb4HUpnrmaL/fxS2pBo2jbfcFRVuFZ/oFC+vZz0MNNk0h80iMn5/S6qGZOL5+g==", + "version": "3.1.0", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/spdx-correct/-/spdx-correct-3.1.0.tgz", + "integrity": "sha1-+4PlBERSaPFUsHTiGMh8ADzTHfQ=", "dev": true, "requires": { "spdx-expression-parse": "^3.0.0", @@ -2228,15 +2125,15 @@ } }, "spdx-exceptions": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.1.0.tgz", - "integrity": "sha512-4K1NsmrlCU1JJgUrtgEeTVyfx8VaYea9J9LvARxhbHtVtohPs/gFGG5yy49beySjlIMhhXZ4QqujIZEfS4l6Cg==", + "version": "2.2.0", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz", + "integrity": "sha1-LqRQrudPKom/uUUZwH/Nb0EyKXc=", "dev": true }, "spdx-expression-parse": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz", - "integrity": "sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz", + "integrity": "sha1-meEZt6XaAOBUkcn6M4t5BII7QdA=", "dev": true, "requires": { "spdx-exceptions": "^2.1.0", @@ -2244,9 +2141,9 @@ } }, "spdx-license-ids": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.0.tgz", - "integrity": "sha512-2+EPwgbnmOIl8HjGBXXMd9NAu02vLjOO1nWw4kmeRDFyHn+M/ETfHxQUK0oXg8ctgVnl9t3rosNVsZ1jG61nDA==", + "version": "3.0.4", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/spdx-license-ids/-/spdx-license-ids-3.0.4.tgz", + "integrity": "sha1-dezRqI3owYTvAV6vtRtbSL/RG7E=", "dev": true }, "sprintf-js": { @@ -2272,26 +2169,26 @@ } }, "standard": { - "version": "11.0.1", - "resolved": "https://registry.npmjs.org/standard/-/standard-11.0.1.tgz", - "integrity": "sha512-nu0jAcHiSc8H+gJCXeiziMVZNDYi8MuqrYJKxTgjP4xKXZMKm311boqQIzDrYI/ktosltxt2CbDjYQs9ANC8IA==", + "version": "12.0.1", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/standard/-/standard-12.0.1.tgz", + "integrity": "sha1-D8Woqmw0xUbFViquZEJCsk2uLmE=", "dev": true, "requires": { - "eslint": "~4.18.0", - "eslint-config-standard": "11.0.0", - "eslint-config-standard-jsx": "5.0.0", - "eslint-plugin-import": "~2.9.0", - "eslint-plugin-node": "~6.0.0", - "eslint-plugin-promise": "~3.7.0", - "eslint-plugin-react": "~7.7.0", - "eslint-plugin-standard": "~3.0.1", - "standard-engine": "~8.0.0" + "eslint": "~5.4.0", + "eslint-config-standard": "12.0.0", + "eslint-config-standard-jsx": "6.0.2", + "eslint-plugin-import": "~2.14.0", + "eslint-plugin-node": "~7.0.1", + "eslint-plugin-promise": "~4.0.0", + "eslint-plugin-react": "~7.11.1", + "eslint-plugin-standard": "~4.0.0", + "standard-engine": "~9.0.0" } }, "standard-engine": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/standard-engine/-/standard-engine-8.0.1.tgz", - "integrity": "sha512-LA531C3+nljom/XRvdW/hGPXwmilRkaRkENhO3FAGF1Vtq/WtCXzgmnc5S6vUHHsgv534MRy02C1ikMwZXC+tw==", + "version": "9.0.0", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/standard-engine/-/standard-engine-9.0.0.tgz", + "integrity": "sha1-06PXTEwbkfUaHmY2JGUmHKdhAxY=", "dev": true, "requires": { "deglob": "^2.1.0", @@ -2302,7 +2199,7 @@ "dependencies": { "minimist": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/minimist/-/minimist-1.2.0.tgz", "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", "dev": true } @@ -2310,8 +2207,8 @@ }, "string-width": { "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha1-q5Pyeo3BPSjKyBXEYhQ6bZASrp4=", "dev": true, "requires": { "is-fullwidth-code-point": "^2.0.0", @@ -2320,7 +2217,7 @@ }, "string.prototype.trim": { "version": "1.1.2", - "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.1.2.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/string.prototype.trim/-/string.prototype.trim-1.1.2.tgz", "integrity": "sha1-0E3iyJ4Tf019IG8Ia17S+ua+jOo=", "dev": true, "requires": { @@ -2329,18 +2226,9 @@ "function-bind": "^1.0.2" } }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - }, "strip-ansi": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/strip-ansi/-/strip-ansi-4.0.0.tgz", "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", "dev": true, "requires": { @@ -2349,7 +2237,7 @@ "dependencies": { "ansi-regex": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/ansi-regex/-/ansi-regex-3.0.0.tgz", "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", "dev": true } @@ -2357,13 +2245,13 @@ }, "strip-bom": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/strip-bom/-/strip-bom-3.0.0.tgz", "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", "dev": true }, "strip-json-comments": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/strip-json-comments/-/strip-json-comments-2.0.1.tgz", "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", "dev": true }, @@ -2376,45 +2264,77 @@ "has-flag": "^1.0.0" } }, + "symbol-observable": { + "version": "1.0.1", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/symbol-observable/-/symbol-observable-1.0.1.tgz", + "integrity": "sha1-g0D8RwLDEi310iKI+IKD9RPT/dQ=", + "dev": true + }, "table": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/table/-/table-4.0.2.tgz", - "integrity": "sha512-UUkEAPdSGxtRpiV9ozJ5cMTtYiqz7Ni1OGqLXRCynrvzdtR1p+cfOWe2RJLwvUG8hNanaSRjecIqwOjqeatDsA==", + "version": "4.0.3", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/table/-/table-4.0.3.tgz", + "integrity": "sha1-ALXitgLxeUuayvnKkIp2OGp4E7w=", "dev": true, "requires": { - "ajv": "^5.2.3", - "ajv-keywords": "^2.1.0", + "ajv": "^6.0.1", + "ajv-keywords": "^3.0.0", "chalk": "^2.1.0", "lodash": "^4.17.4", "slice-ansi": "1.0.0", "string-width": "^2.1.1" + }, + "dependencies": { + "ajv": { + "version": "6.10.0", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/ajv/-/ajv-6.10.0.tgz", + "integrity": "sha1-kNDVRDnaWHzX6EO/twRfUL0ivfE=", + "dev": true, + "requires": { + "fast-deep-equal": "^2.0.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "fast-deep-equal": { + "version": "2.0.1", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz", + "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=", + "dev": true + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha1-afaofZUTq4u4/mO9sJecRI5oRmA=", + "dev": true + } } }, "tape": { - "version": "4.9.1", - "resolved": "https://registry.npmjs.org/tape/-/tape-4.9.1.tgz", - "integrity": "sha512-6fKIXknLpoe/Jp4rzHKFPpJUHDHDqn8jus99IfPnHIjyz78HYlefTGD3b5EkbQzuLfaEvmfPK3IolLgq2xT3kw==", + "version": "4.10.1", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/tape/-/tape-4.10.1.tgz", + "integrity": "sha1-9zvmCIjcsSDwi1f5R69lqClQal8=", "dev": true, "requires": { "deep-equal": "~1.0.1", "defined": "~1.0.0", "for-each": "~0.3.3", "function-bind": "~1.1.1", - "glob": "~7.1.2", + "glob": "~7.1.3", "has": "~1.0.3", "inherits": "~2.0.3", "minimist": "~1.2.0", "object-inspect": "~1.6.0", - "resolve": "~1.7.1", + "resolve": "~1.10.0", "resumer": "~0.0.0", "string.prototype.trim": "~1.1.2", "through": "~2.3.8" }, "dependencies": { "glob": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", - "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", + "version": "7.1.3", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/glob/-/glob-7.1.3.tgz", + "integrity": "sha1-OWCDLT8VdBCDQtr9OmezMsCWnfE=", "dev": true, "requires": { "fs.realpath": "^1.0.0", @@ -2427,37 +2347,37 @@ }, "minimist": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/minimist/-/minimist-1.2.0.tgz", "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", "dev": true }, "resolve": { - "version": "1.7.1", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.7.1.tgz", - "integrity": "sha512-c7rwLofp8g1U+h1KNyHL/jicrKg1Ek4q+Lr33AL65uZTinUZHe30D5HlyN5V9NW0JX1D5dXQ4jqW5l7Sy/kGfw==", + "version": "1.10.1", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/resolve/-/resolve-1.10.1.tgz", + "integrity": "sha1-ZkhCrJYHlbvnWCIc3M2mH7ZLXxg=", "dev": true, "requires": { - "path-parse": "^1.0.5" + "path-parse": "^1.0.6" } } } }, "text-table": { "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/text-table/-/text-table-0.2.0.tgz", "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", "dev": true }, "through": { "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/through/-/through-2.3.8.tgz", "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", "dev": true }, "tmp": { "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha1-bTQzWIl2jSGyvNoKonfO07G/rfk=", "dev": true, "requires": { "os-tmpdir": "~1.0.2" @@ -2497,14 +2417,8 @@ }, "type-detect": { "version": "4.0.8", - "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", - "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", - "dev": true - }, - "typedarray": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha1-dkb7XxiHHPu3dJ5pvTmmOI63RQw=", "dev": true }, "uglify-js": { @@ -2529,15 +2443,26 @@ }, "uniq": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/uniq/-/uniq-1.0.1.tgz", "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=", "dev": true }, - "util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", - "dev": true + "uri-js": { + "version": "4.2.2", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/uri-js/-/uri-js-4.2.2.tgz", + "integrity": "sha1-lMVA4f93KVbiKZUHwBCupsiDjrA=", + "dev": true, + "requires": { + "punycode": "^2.1.0" + }, + "dependencies": { + "punycode": { + "version": "2.1.1", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha1-tYsBCsQMIsVldhbI0sLALHv0eew=", + "dev": true + } + } }, "uuid": { "version": "3.3.2", @@ -2546,8 +2471,8 @@ }, "validate-npm-package-license": { "version": "3.0.4", - "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", - "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha1-/JH2uce6FchX9MssXe/uw51PQQo=", "dev": true, "requires": { "spdx-correct": "^3.0.0", @@ -2587,7 +2512,7 @@ }, "write": { "version": "0.2.1", - "resolved": "https://registry.npmjs.org/write/-/write-0.2.1.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/write/-/write-0.2.1.tgz", "integrity": "sha1-X8A4KOJkzqP+kUVUdvejxWbLB1c=", "dev": true, "requires": { @@ -2596,15 +2521,9 @@ }, "xtend": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", + "resolved": "https://na.artifactory.swg-devops.com:443/artifactory/api/npm/wcp-wdp-npm-virtual/xtend/-/xtend-4.0.1.tgz", "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=", "dev": true - }, - "yallist": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=", - "dev": true } } } diff --git a/package.json b/package.json index 668df6c..ba02fd9 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "license": "Apache-2.0", "homepage": "http://github.com/apache/couchdb-nano", "repository": "http://github.com/apache/couchdb-nano", - "version": "8.0.1", + "version": "8.1.0", "author": "Apache CouchDB (http://couchdb.apache.org)", "keywords": [ "couchdb", @@ -18,17 +18,17 @@ ], "dependencies": { "@types/request": "^2.47.1", - "cloudant-follow": "^0.18.0", - "debug": "^2.2.0", + "cloudant-follow": "^0.18.1", + "debug": "^4.1.1", "errs": "^0.3.2", - "request": "^2.85.0" + "request": "^2.88.0" }, "devDependencies": { - "async": "^2.1.2", + "async": "^2.6.2", "istanbul": "^0.4.5", - "nock": "^9.6.1", - "standard": "^11.0.1", - "tape": "^4.6.2" + "nock": "^10.0.6", + "standard": "^12.0.1", + "tape": "^4.10.1" }, "scripts": { "standard": "standard --fix", diff --git a/tests/helpers/harness.js b/tests/helpers/harness.js index 1e7e127..d0febd7 100644 --- a/tests/helpers/harness.js +++ b/tests/helpers/harness.js @@ -47,7 +47,7 @@ module.exports = function (opts) { } harness.it = function (name, next) { - harness.tests.push({name: name, next: next}) + harness.tests.push({ name: name, next: next }) if (!invoked) { invoked = true nextTick(function () { diff --git a/tests/helpers/integration.js b/tests/helpers/integration.js index c9432e0..e862baf 100644 --- a/tests/helpers/integration.js +++ b/tests/helpers/integration.js @@ -97,7 +97,7 @@ helpers.nock = function helpersNock (url, fixture, log) { } n.method = n.method || 'get' - n.options = {log: log} + n.options = { log: log } n.scope = url n.headers = headers n.response = response @@ -166,7 +166,7 @@ helpers.viewDerek = function viewDerek (db, assert, opts, next, method) { helpers.insertOne = function (assert) { const db = this.db - db.insert({'foo': 'baz'}, 'foobaz', function (err) { + db.insert({ 'foo': 'baz' }, 'foobaz', function (err) { assert.equal(err, null, 'should store docs') assert.end() }) @@ -175,9 +175,9 @@ helpers.insertOne = function (assert) { helpers.insertThree = function (assert) { const db = this.db async.parallel([ - function (cb) { db.insert({'foo': 'bar'}, 'foobar', cb) }, - function (cb) { db.insert({'bar': 'foo'}, 'barfoo', cb) }, - function (cb) { db.insert({'foo': 'baz'}, 'foobaz', cb) } + function (cb) { db.insert({ 'foo': 'bar' }, 'foobar', cb) }, + function (cb) { db.insert({ 'bar': 'foo' }, 'barfoo', cb) }, + function (cb) { db.insert({ 'foo': 'baz' }, 'foobaz', cb) } ], function (error) { assert.equal(error, null, 'should store docs') assert.end() diff --git a/tests/helpers/unit.js b/tests/helpers/unit.js index 4114fd0..a2f45e7 100644 --- a/tests/helpers/unit.js +++ b/tests/helpers/unit.js @@ -136,7 +136,7 @@ function mockClientUnparsedError () { url: helpers.couch, log: debug, request: function (_, cb) { - return cb(null, {statusCode: 500}, body || ' Error happened ') + return cb(null, { statusCode: 500 }, body || ' Error happened ') } }) } @@ -152,7 +152,7 @@ function mockClientFollow () { return cb(error) } - return cb(null, qs, {statusCode: 200}) + return cb(null, qs, { statusCode: 200 }) } }) } @@ -163,5 +163,5 @@ helpers.mockClientUnparsedError = mockClientUnparsedError() helpers.mockClientDb = mockClient(200, '') helpers.mockClientOk = mockClient(200, '/mock') helpers.mockClientFail = mockClient(500, '') -helpers.mockClientJar = mockClient(300, '', {jar: 'is set'}) +helpers.mockClientJar = mockClient(300, '', { jar: 'is set' }) module.exports = helpers diff --git a/tests/integration/attachment/destroy.js b/tests/integration/attachment/destroy.js index d607da5..5eceb87 100644 --- a/tests/integration/attachment/destroy.js +++ b/tests/integration/attachment/destroy.js @@ -23,7 +23,7 @@ it('should be able to insert a new plain text attachment', function (assert) { p.then(function (response) { assert.equal(response.ok, true, 'response ok') assert.ok(response.rev, 'have a revision number') - return db.attachment.destroy('new', 'att', {rev: response.rev}) + return db.attachment.destroy('new', 'att', { rev: response.rev }) }).then(function (response) { assert.equal(response.ok, true, 'response ok') assert.equal(response.id, 'new', '`id` should be `new`') diff --git a/tests/integration/attachment/pipe.js b/tests/integration/attachment/pipe.js index d861718..f0cb326 100644 --- a/tests/integration/attachment/pipe.js +++ b/tests/integration/attachment/pipe.js @@ -33,7 +33,7 @@ it('should be able to pipe to a writeStream', function (assert) { fs.unlinkSync(filename) assert.end() }) - db.attachment.getAsStream('new', 'att', {rev: bmp.rev}).pipe(ws) + db.attachment.getAsStream('new', 'att', { rev: bmp.rev }).pipe(ws) }) }) diff --git a/tests/integration/attachment/update.js b/tests/integration/attachment/update.js index f6e30ab..1af111a 100644 --- a/tests/integration/attachment/update.js +++ b/tests/integration/attachment/update.js @@ -25,7 +25,7 @@ it('should be able to insert and update attachments', function (assert) { p.then(function (hello) { assert.equal(hello.ok, true, 'response ok') assert.ok(hello.rev, 'should have a revision') - return db.attachment.insert('new', 'att', buffer, 'image/bmp', {rev: hello.rev}) + return db.attachment.insert('new', 'att', buffer, 'image/bmp', { rev: hello.rev }) }).then(function (bmp) { assert.ok(bmp.rev, 'should store a revision') assert.end() diff --git a/tests/integration/database/changes.js b/tests/integration/database/changes.js index 953fd36..c8571c9 100644 --- a/tests/integration/database/changes.js +++ b/tests/integration/database/changes.js @@ -20,7 +20,7 @@ const it = harness.it it('should be able to insert three documents', helpers.insertThree) it('should be able to receive changes since seq:0', function (assert) { - const p = db.changes({since: 0}) + const p = db.changes({ since: 0 }) assert.ok(helpers.isPromise(p), 'returns Promise') p.then(function (response) { assert.equal(response.results.length, 3, 'gets three results') @@ -32,7 +32,7 @@ it('should be able to receive changes since seq:0', function (assert) { it('should be able to receive changes since seq:0 as stream', function (assert) { const resp = [] - const p = db.changesAsStream({since: 0}) + const p = db.changesAsStream({ since: 0 }) .on('data', function (part) { resp.push(part) }) diff --git a/tests/integration/database/compact.js b/tests/integration/database/compact.js index 88d3211..4a08b65 100644 --- a/tests/integration/database/compact.js +++ b/tests/integration/database/compact.js @@ -18,7 +18,7 @@ const it = harness.it const db = harness.locals.db it('should store and delete `goofy`', function (assert) { - let p = db.insert({'foo': 'baz'}, 'goofy') + let p = db.insert({ 'foo': 'baz' }, 'goofy') assert.ok(helpers.isPromise(p), 'returns Promise') p.then(function (foo) { assert.equal(foo.ok, true, 'response should be ok') diff --git a/tests/integration/database/follow.js b/tests/integration/database/follow.js index 79bde16..613699d 100644 --- a/tests/integration/database/follow.js +++ b/tests/integration/database/follow.js @@ -25,7 +25,7 @@ if (helpers.unmocked) { it('should be able to get the changes feed', function (assert) { let i = 3 - feed1 = db.follow({since: '0'}) + feed1 = db.follow({ since: '0' }) feed1.on('change', function (change) { assert.ok(change, 'change existed') @@ -39,7 +39,7 @@ if (helpers.unmocked) { feed1.follow() setTimeout(function () { - db.insert({'bar': 'baz'}, 'barbaz') + db.insert({ 'bar': 'baz' }, 'barbaz') }, 100) }) diff --git a/tests/integration/database/replicator.js b/tests/integration/database/replicator.js index ccc186b..b22aa8b 100644 --- a/tests/integration/database/replicator.js +++ b/tests/integration/database/replicator.js @@ -16,12 +16,12 @@ const async = require('async') const helpers = require('../../helpers/integration') const harness = helpers.harness(__filename) const it = harness.it -const db = harness.locals.db +// const db = harness.locals.db const nano = harness.locals.nano -let replica -let replica2 -let replica3 +// let replica +// let replica2 +// let replica3 it('should insert a bunch of items', helpers.insertThree) @@ -32,7 +32,7 @@ it('creates a bunch of database replicas', function (assert) { assert.end() }) }) - +/* it('should be able to replicate (replicator) three docs', function (assert) { assert.timeoutAfter(10000) replica = nano.use('database_replica') @@ -64,7 +64,8 @@ it('should be able to replicate (replicator) three docs', function (assert) { waitForReplication() }) }) - +*/ +/* it('should be able to replicate (replicator) to a `nano` object', function (assert) { replica2 = nano.use('database_replica2') nano.db.replication.enable(db, 'database_replica2', function (error, data) { @@ -95,7 +96,8 @@ it('should be able to replicate (replicator) to a `nano` object', function (asse waitForReplication() }) }) - +*/ +/* it('should be able to replicate (replicator) with params', function (assert) { assert.timeoutAfter(10000) replica3 = nano.use('database_replica3') @@ -122,11 +124,12 @@ it('should be able to replicate (replicator) with params', function (assert) { }) }) }, - 4500) + 8500) } waitForReplication() }) }) +*/ it('should destroy the extra databases', function (assert) { async.forEach(['database_replica', 'database_replica2', 'database_replica3'], diff --git a/tests/integration/design/atomic.js b/tests/integration/design/atomic.js index b6666b5..77fdf34 100644 --- a/tests/integration/design/atomic.js +++ b/tests/integration/design/atomic.js @@ -33,7 +33,7 @@ it('should be able to insert an atomic design doc', function (assert) { }, '_design/update') assert.ok(helpers.isPromise(p), 'returns Promise') p.then(function () { - return db.insert({'foo': 'baz'}, 'foobar') + return db.insert({ 'foo': 'baz' }, 'foobar') }).then(function (foo) { assert.equal(foo.ok, true, 'does not have an attitude') assert.ok(foo.rev, 'got the revisions') @@ -65,11 +65,11 @@ it('should be able to update atomically without a body', function (assert) { }) it('should be able to update with slashes on the id', function (assert) { - const p = db.insert({'wat': 'wat'}, 'wat/wat') + const p = db.insert({ 'wat': 'wat' }, 'wat/wat') assert.ok(helpers.isPromise(p), 'returns Promise') p.then(function (foo) { assert.equal(foo.ok, true, 'response ok') - return db.atomic('update', 'inplace', 'wat/wat', {field: 'wat', value: 'dawg'}) + return db.atomic('update', 'inplace', 'wat/wat', { field: 'wat', value: 'dawg' }) }).then(function (response) { assert.equal(response.wat, 'dawg', 'with the right copy') assert.end() diff --git a/tests/integration/design/compact.js b/tests/integration/design/compact.js index 9f5415d..9d83c0d 100644 --- a/tests/integration/design/compact.js +++ b/tests/integration/design/compact.js @@ -30,7 +30,7 @@ it('should insert `alice` the design doc', function (assert) { }, '_design/alice', next) }, function (data, _, next) { - db.insert({'foo': 'baz'}, 'foobaz', next) + db.insert({ 'foo': 'baz' }, 'foobaz', next) }, function (foo, _, next) { db.destroy('foobaz', foo.rev, next) diff --git a/tests/integration/design/query.js b/tests/integration/design/query.js index 2ead03b..790e9ba 100644 --- a/tests/integration/design/query.js +++ b/tests/integration/design/query.js @@ -19,7 +19,7 @@ const it = harness.it const db = harness.locals.db const viewDerek = helpers.viewDerek -const opts = {key: ['Derek', 'San Francisco']} +const opts = { key: ['Derek', 'San Francisco'] } it('should create a ddoc and insert some docs', helpers.prepareAView) @@ -57,8 +57,8 @@ var multipleQueryOpts = { var expectedResults = [ - {total_rows: 3, offset: 0, rows: [{id: 'p_derek', key: ['Derek', 'San Francisco'], value: 'p_derek'}, {id: 'p_nuno', key: ['Nuno', 'London'], value: 'p_nuno'}]}, - {total_rows: 3, offset: 2, rows: [{id: 'p_randall', key: ['Randall', 'San Francisco'], value: 'p_randall'}]} + { total_rows: 3, offset: 0, rows: [{ id: 'p_derek', key: ['Derek', 'San Francisco'], value: 'p_derek' }, { id: 'p_nuno', key: ['Nuno', 'London'], value: 'p_nuno' }] }, + { total_rows: 3, offset: 2, rows: [{ id: 'p_randall', key: ['Randall', 'San Francisco'], value: 'p_randall' }] } ] it('should support multiple view queries', function (assert) { diff --git a/tests/integration/design/search.js b/tests/integration/design/search.js index f6b1114..e406657 100644 --- a/tests/integration/design/search.js +++ b/tests/integration/design/search.js @@ -24,7 +24,7 @@ const viewDerek = helpers.viewDerek // tests do no run without mocks // if (helpers.mocked) { - const opts = {key: ['Derek', 'San Francisco']} + const opts = { key: ['Derek', 'San Francisco'] } it('should create a ddoc and insert some docs', function (assert) { helpers.prepareAView(assert, '/_search', db) diff --git a/tests/integration/design/show.js b/tests/integration/design/show.js index 7e4e2ef..8d7c33e 100644 --- a/tests/integration/design/show.js +++ b/tests/integration/design/show.js @@ -87,7 +87,7 @@ it('should show the amazing clemens in json', function (assert) { }) it('should show the amazing clemens in html', function (assert) { - db.show('people', 'singleDoc', 'p_clemens', {format: 'html'}, + db.show('people', 'singleDoc', 'p_clemens', { format: 'html' }, function (error, doc, rh) { assert.equal(error, null, 'should work') if (helpers.unmocked) { diff --git a/tests/integration/document/bulk.js b/tests/integration/document/bulk.js index a855c14..5ee9f57 100644 --- a/tests/integration/document/bulk.js +++ b/tests/integration/document/bulk.js @@ -20,8 +20,8 @@ const db = harness.locals.db it('should be able to bulk insert two docs', function (assert) { const p = db.bulk({ 'docs': [ - {'key': 'baz', 'name': 'bazzel'}, - {'key': 'bar', 'name': 'barry'} + { 'key': 'baz', 'name': 'bazzel' }, + { 'key': 'bar', 'name': 'barry' } ] }) assert.ok(helpers.isPromise(p), 'returns Promise') diff --git a/tests/integration/document/copy.js b/tests/integration/document/copy.js index 59fff27..935e314 100644 --- a/tests/integration/document/copy.js +++ b/tests/integration/document/copy.js @@ -18,11 +18,11 @@ const it = harness.it const db = harness.locals.db it('must insert two docs before the tests start', function (assert) { - db.insert({'foo': 'baz'}, 'foo_src', function (error, src) { + db.insert({ 'foo': 'baz' }, 'foo_src', function (error, src) { assert.equal(error, null, 'stores src') assert.equal(src.ok, true, 'response ok') assert.ok(src.rev, 'haz rev') - db.insert({'bar': 'qux'}, 'foo_dest', function (error, dest) { + db.insert({ 'bar': 'qux' }, 'foo_dest', function (error, dest) { assert.equal(error, null, 'stores dest') assert.equal(dest.ok, true, 'oki doki') assert.ok(dest.rev, 'response has rev') @@ -32,7 +32,7 @@ it('must insert two docs before the tests start', function (assert) { }) it('should be able to copy and overwrite a document', function (assert) { - const p = db.copy('foo_src', 'foo_dest', {overwrite: true}) + const p = db.copy('foo_src', 'foo_dest', { overwrite: true }) assert.ok(helpers.isPromise(p), 'returns Promise') p.then(function () { assert.ok(true, 'Promise is resolved') diff --git a/tests/integration/document/destroy.js b/tests/integration/document/destroy.js index 9b3eda8..7e29bb3 100644 --- a/tests/integration/document/destroy.js +++ b/tests/integration/document/destroy.js @@ -20,7 +20,7 @@ const db = harness.locals.db let rev it('should insert a document', function (assert) { - db.insert({'foo': 'baz'}, 'foobaz', function (error, foo) { + db.insert({ 'foo': 'baz' }, 'foobaz', function (error, foo) { assert.equal(error, null, 'stores foo') assert.equal(foo.ok, true, 'ok response') assert.ok(foo.rev, 'response with rev') diff --git a/tests/integration/document/fetch.js b/tests/integration/document/fetch.js index 7bd3868..8e5963f 100644 --- a/tests/integration/document/fetch.js +++ b/tests/integration/document/fetch.js @@ -20,7 +20,7 @@ const it = harness.it it('should insert a bunch of items', helpers.insertThree) it('should be able to fetch with one key', function (assert) { - const p = db.fetch({keys: ['foobar']}) + const p = db.fetch({ keys: ['foobar'] }) assert.ok(helpers.isPromise(p), 'returns Promise') p.then(function (docs) { assert.ok(true, 'Promise is resolved') @@ -33,7 +33,7 @@ it('should be able to fetch with one key', function (assert) { }) it('should be able to fetch with multiple keys', function (assert) { - const p = db.fetch({keys: ['foobar', 'barfoo']}) + const p = db.fetch({ keys: ['foobar', 'barfoo'] }) assert.ok(helpers.isPromise(p), 'returns Promise') p.then(function (docs) { assert.ok(true, 'Promise is resolved') @@ -46,7 +46,7 @@ it('should be able to fetch with multiple keys', function (assert) { }) it('should be able to fetch with params', function (assert) { - const p = db.fetch({keys: ['foobar']}, {not: 'important'}) + const p = db.fetch({ keys: ['foobar'] }, { not: 'important' }) assert.ok(helpers.isPromise(p), 'returns Promise') p.then(function (docs) { assert.ok(true, 'Promise is resolved') diff --git a/tests/integration/document/fetch_revs.js b/tests/integration/document/fetch_revs.js index 5862306..992f3f6 100644 --- a/tests/integration/document/fetch_revs.js +++ b/tests/integration/document/fetch_revs.js @@ -20,7 +20,7 @@ const it = harness.it it('should insert a bunch of items', helpers.insertThree) it('should be able to fetch with one key', function (assert) { - const p = db.fetchRevs({keys: ['foobar']}) + const p = db.fetchRevs({ keys: ['foobar'] }) assert.ok(helpers.isPromise(p), 'returns Promise') p.then(function (docs) { assert.ok(true, 'Promise is resolved') @@ -34,7 +34,7 @@ it('should be able to fetch with one key', function (assert) { }) it('should be able to fetch with multiple keys', function (assert) { - const p = db.fetchRevs({keys: ['foobar', 'barfoo']}) + const p = db.fetchRevs({ keys: ['foobar', 'barfoo'] }) assert.ok(helpers.isPromise(p), 'returns Promise') p.then(function (docs) { assert.ok(true, 'Promise is resolved') @@ -49,7 +49,7 @@ it('should be able to fetch with multiple keys', function (assert) { }) it('should be able to fetch with params', function (assert) { - const p = db.fetchRevs({keys: ['foobar']}, {still: 'no'}) + const p = db.fetchRevs({ keys: ['foobar'] }, { still: 'no' }) assert.ok(helpers.isPromise(p), 'returns Promise') p.then(function (docs) { assert.ok(true, 'Promise is resolved') diff --git a/tests/integration/document/find.js b/tests/integration/document/find.js index 0dedc9e..0d07c50 100644 --- a/tests/integration/document/find.js +++ b/tests/integration/document/find.js @@ -20,7 +20,7 @@ const it = harness.it it('should insert a bunch of items', helpers.insertThree) it('should be to do a mango query', function (assert) { - const p = db.find({selector: {foo: 'baz'}}) + const p = db.find({ selector: { foo: 'baz' } }) assert.ok(helpers.isPromise(p), 'returns Promise') p.then(function (response) { assert.ok(true, 'Promise is resolved') @@ -33,7 +33,7 @@ it('should be to do a mango query', function (assert) { it('should be to do a mango query with streams', function (assert) { const resp = [] - const p = db.findAsStream({selector: {foo: 'baz'}}) + const p = db.findAsStream({ selector: { foo: 'baz' } }) .on('data', function (part) { resp.push(part) }) diff --git a/tests/integration/document/get.js b/tests/integration/document/get.js index daa8f4e..5886e07 100644 --- a/tests/integration/document/get.js +++ b/tests/integration/document/get.js @@ -20,7 +20,7 @@ const it = harness.it it('should insert a one item', helpers.insertOne) it('should get the document', function (assert) { - const p = db.get('foobaz', {'revs_info': true}) + const p = db.get('foobaz', { 'revs_info': true }) assert.ok(helpers.isPromise(p), 'returns Promise') p.then(function (foobaz) { assert.ok(true, 'Promise is resolved') diff --git a/tests/integration/document/insert.js b/tests/integration/document/insert.js index 0f2139c..ff6272c 100644 --- a/tests/integration/document/insert.js +++ b/tests/integration/document/insert.js @@ -20,7 +20,7 @@ const it = harness.it let rev it('should insert one simple document', function (assert) { - const p = db.insert({'foo': 'baz'}, 'foobaz') + const p = db.insert({ 'foo': 'baz' }, 'foobaz') assert.ok(helpers.isPromise(p), 'returns Promise') p.then(function (foo) { assert.ok(true, 'Promise is resolved') diff --git a/tests/integration/document/list.js b/tests/integration/document/list.js index 7be6624..0ebc8f5 100644 --- a/tests/integration/document/list.js +++ b/tests/integration/document/list.js @@ -38,7 +38,7 @@ it('should be able to list using the `relax` function', function (assert) { db: 'document_list', doc: '_all_docs', method: 'GET', - qs: {limit: 1} + qs: { limit: 1 } }, function (error, docs) { assert.equal(error, null, 'not relaxed') assert.ok(docs.rows, 'got meh rows') @@ -49,7 +49,7 @@ it('should be able to list using the `relax` function', function (assert) { }) it('should be able to list with a start_key', function (assert) { - const p = db.list({start_key: 'c'}) + const p = db.list({ start_key: 'c' }) assert.ok(helpers.isPromise(p), 'returns Promise') p.then(function (docs) { assert.ok(true, 'Promise is resolved') @@ -64,7 +64,7 @@ it('should be able to list with a start_key', function (assert) { }) it('should be able to list with a startkey', function (assert) { - const p = db.list({startkey: 'c'}) + const p = db.list({ startkey: 'c' }) assert.ok(helpers.isPromise(p), 'returns Promise') p.then(function (docs) { assert.ok(true, 'Promise is resolved') @@ -78,7 +78,7 @@ it('should be able to list with a startkey', function (assert) { }) it('should be able to list with a endkey', function (assert) { - const p = db.list({endkey: 's'}) + const p = db.list({ endkey: 's' }) assert.ok(helpers.isPromise(p), 'returns Promise') p.then(function (docs) { assert.ok(true, 'Promise is resolved') @@ -92,7 +92,7 @@ it('should be able to list with a endkey', function (assert) { }) it('should be able to list with a end_key', function (assert) { - const p = db.list({end_key: 's'}) + const p = db.list({ end_key: 's' }) assert.ok(helpers.isPromise(p), 'returns Promise') p.then(function (docs) { assert.ok(true, 'Promise is resolved') @@ -118,7 +118,7 @@ it('should be able to list as a stream', function (assert) { }) it('should be able to list with params as a stream', function (assert) { - const p = db.listAsStream({end_key: 's'}) + const p = db.listAsStream({ end_key: 's' }) .on('error', function (error) { assert.ifError(error) }) diff --git a/tests/integration/document/update.js b/tests/integration/document/update.js index 69b3ffa..b0573a4 100644 --- a/tests/integration/document/update.js +++ b/tests/integration/document/update.js @@ -20,7 +20,7 @@ const it = harness.it let rev it('should insert one doc', function (assert) { - const p = db.insert({'foo': 'baz'}, 'foobar') + const p = db.insert({ 'foo': 'baz' }, 'foobar') assert.ok(helpers.isPromise(p), 'returns Promise') p.then(function (foo) { assert.ok(true, 'Promise is resolved') @@ -34,7 +34,7 @@ it('should insert one doc', function (assert) { }) it('should update the document', function (assert) { - const p = db.insert({foo: 'bar', '_rev': rev}, 'foobar') + const p = db.insert({ foo: 'bar', '_rev': rev }, 'foobar') assert.ok(helpers.isPromise(p), 'returns Promise') p.then(function (response) { assert.ok(true, 'Promise is resolved') diff --git a/tests/integration/multipart/get.js b/tests/integration/multipart/get.js index 96ed83b..5e7783d 100644 --- a/tests/integration/multipart/get.js +++ b/tests/integration/multipart/get.js @@ -23,7 +23,7 @@ it('should be able to insert a doc with att', function (assert) { data: 'Hello World!', 'content_type': 'text/plain' } - const p = db.multipart.insert({'foo': 'baz'}, [att], 'foobaz') + const p = db.multipart.insert({ 'foo': 'baz' }, [att], 'foobaz') assert.ok(helpers.isPromise(p), 'returns Promise') p.then(function (foo) { assert.ok(true, 'Promise is resolved') diff --git a/tests/integration/multipart/insert.js b/tests/integration/multipart/insert.js index 0d7e87e..a1a23bf 100644 --- a/tests/integration/multipart/insert.js +++ b/tests/integration/multipart/insert.js @@ -23,7 +23,7 @@ it('should handle crazy encodings', function (assert) { data: 'काचं शक्नोम्यत्तुम् । नोपहिनस्ति माम् ॥', 'content_type': 'text/plain' } - const p = db.multipart.insert({'foo': 'bar'}, [att], 'foobar') + const p = db.multipart.insert({ 'foo': 'bar' }, [att], 'foobar') assert.ok(helpers.isPromise(p), 'returns Promise') p.then(function (foo) { assert.ok(true, 'Promise is resolved') @@ -64,7 +64,7 @@ it('should work with attachment as a buffer', function (assert) { data: Buffer.from('foo'), 'content_type': 'text/plain' } - const p = db.multipart.insert({'foo': 'bar'}, [att], 'otherdoc') + const p = db.multipart.insert({ 'foo': 'bar' }, [att], 'otherdoc') assert.ok(helpers.isPromise(p), 'returns Promise') p.then(function (foo) { assert.ok(true, 'Promise is resolved') diff --git a/tests/integration/shared/cookie.js b/tests/integration/shared/cookie.js index cc29156..85c2c4c 100644 --- a/tests/integration/shared/cookie.js +++ b/tests/integration/shared/cookie.js @@ -14,7 +14,7 @@ const helpers = require('../../helpers/integration') const harness = helpers.harness(__filename) -const nano = require('../../../lib/nano.js')({url: 'http://localhost:5984', requestDefaults: {jar: true}}) +const nano = require('../../../lib/nano.js')({ url: 'http://localhost:5984', requestDefaults: { jar: true } }) const it = harness.it it('should be able to create a user', function (assert) { @@ -40,7 +40,7 @@ it('should be able to create a user', function (assert) { it('should be able to insert with a cookie', function (assert) { const db = nano.db.use('shared_cookie') - const p = db.insert({'foo': 'baz'}) + const p = db.insert({ 'foo': 'baz' }) assert.ok(helpers.isPromise(p), 'returns Promise') p.then(function (response) { assert.equal(response.ok, true, 'response should be ok') diff --git a/tests/integration/shared/error.js b/tests/integration/shared/error.js index 9207ba2..f058bc9 100644 --- a/tests/integration/shared/error.js +++ b/tests/integration/shared/error.js @@ -35,7 +35,7 @@ it('should throw when initialize fails', function (assert) { }) it('should be able to stream the simplest request', function (assert) { - const root = nano.request({stream: true}) + const root = nano.request({ stream: true }) root.on('end', function () { assert.pass('request worked') assert.end() diff --git a/tests/integration/shared/headers.js b/tests/integration/shared/headers.js index 2fc1392..ddb0538 100644 --- a/tests/integration/shared/headers.js +++ b/tests/integration/shared/headers.js @@ -28,7 +28,7 @@ it('should get headers', function (assert) { nano.request({ db: 'shared_headers', doc: 'new', - headers: {'If-None-Match': JSON.stringify(hello.rev)} + headers: { 'If-None-Match': JSON.stringify(hello.rev) } }, function (error, helloWorld, rh) { assert.equal(error, null, 'should get the hello') assert.equal(rh['statusCode'], 304, 'status is not modified') diff --git a/tests/intercept/design/search.js b/tests/intercept/design/search.js index 8de79a9..129525d 100644 --- a/tests/intercept/design/search.js +++ b/tests/intercept/design/search.js @@ -26,7 +26,7 @@ const fakeRequest = function (r, callback) { } // by passing in a fake Request object, we can intercept the request // and see how Nano is pre-processing the parameters -const n = nano({url: 'http://localhost:5984', request: fakeRequest}) +const n = nano({ url: 'http://localhost:5984', request: fakeRequest }) const db = n.db.use('fake') it('should allow custom request object to be supplied', function (assert) { diff --git a/tests/unit/attachment/destroy.js b/tests/unit/attachment/destroy.js index 43f8535..d59e7fd 100644 --- a/tests/unit/attachment/destroy.js +++ b/tests/unit/attachment/destroy.js @@ -17,12 +17,12 @@ const destroyAttachment = require('../../helpers/unit').unit([ 'destroy' ]) -destroyAttachment('airplane-design', 'wings.pdf', {rev: '3'}, { +destroyAttachment('airplane-design', 'wings.pdf', { rev: '3' }, { headers: { accept: 'application/json', 'content-type': 'application/json' }, method: 'DELETE', - qs: {rev: '3'}, + qs: { rev: '3' }, uri: '/mock/airplane-design/wings.pdf' }) diff --git a/tests/unit/attachment/get.js b/tests/unit/attachment/get.js index 52eb997..90277d2 100644 --- a/tests/unit/attachment/get.js +++ b/tests/unit/attachment/get.js @@ -17,11 +17,11 @@ const getAttachment = require('../../helpers/unit').unit([ 'get' ]) -getAttachment('airplane-design', 'wings.pdf', {rev: 'rev-3'}, { +getAttachment('airplane-design', 'wings.pdf', { rev: 'rev-3' }, { encoding: null, headers: {}, method: 'GET', - qs: {rev: 'rev-3'}, + qs: { rev: 'rev-3' }, uri: '/mock/airplane-design/wings.pdf' }) diff --git a/tests/unit/attachment/insert.js b/tests/unit/attachment/insert.js index 88f26cc..3986de1 100644 --- a/tests/unit/attachment/insert.js +++ b/tests/unit/attachment/insert.js @@ -35,12 +35,12 @@ insertAttachment('pixels', 'meta.txt', 'brown', 'text/plain', { uri: '/mock/pixels/meta.txt' }) -insertAttachment('pixels', 'meta.txt', 'white', 'text/plain', {rev: '2'}, { +insertAttachment('pixels', 'meta.txt', 'white', 'text/plain', { rev: '2' }, { body: 'white', headers: { 'content-type': 'text/plain' }, method: 'PUT', uri: '/mock/pixels/meta.txt', - qs: {rev: '2'} + qs: { rev: '2' } }) diff --git a/tests/unit/database/changes.js b/tests/unit/database/changes.js index 7cbed00..c7d866a 100644 --- a/tests/unit/database/changes.js +++ b/tests/unit/database/changes.js @@ -17,13 +17,13 @@ const changesDatabase = require('../../helpers/unit').unit([ 'changes' ]) -changesDatabase('mock', {since: '10'}, { +changesDatabase('mock', { since: '10' }, { headers: { accept: 'application/json', 'content-type': 'application/json' }, method: 'GET', - qs: {since: '10'}, + qs: { since: '10' }, uri: '/mock/_changes' }) diff --git a/tests/unit/database/follow.js b/tests/unit/database/follow.js index 48fd74e..ed16472 100644 --- a/tests/unit/database/follow.js +++ b/tests/unit/database/follow.js @@ -17,4 +17,4 @@ const followDatabase = require('../../helpers/unit').unit([ 'follow' ]) -followDatabase('space', {db: '/space'}) +followDatabase('space', { db: '/space' }) diff --git a/tests/unit/database/replicate.js b/tests/unit/database/replicate.js index 5547fbf..c07e844 100644 --- a/tests/unit/database/replicate.js +++ b/tests/unit/database/replicate.js @@ -27,7 +27,7 @@ replicateDatabase('baa', 'baashep', { uri: '/_replicate' }) -replicateDatabase('molly', 'anne', {some: 'params'}, { +replicateDatabase('molly', 'anne', { some: 'params' }, { body: '{"some":"params","source":"http://localhost:5984/molly","target":"http://localhost:5984/anne"}', headers: { accept: 'application/json', diff --git a/tests/unit/database/replicator.js b/tests/unit/database/replicator.js index 881e755..7eea693 100644 --- a/tests/unit/database/replicator.js +++ b/tests/unit/database/replicator.js @@ -27,7 +27,7 @@ replicator('baa', 'baashep', { uri: '/_replicator' }) -replicator('molly', 'anne', {some: 'params'}, { +replicator('molly', 'anne', { some: 'params' }, { body: '{"some":"params","source":"http://localhost:5984/molly","target":"http://localhost:5984/anne"}', headers: { accept: 'application/json', diff --git a/tests/unit/database/updates.js b/tests/unit/database/updates.js index 43eb5d8..d5455de 100644 --- a/tests/unit/database/updates.js +++ b/tests/unit/database/updates.js @@ -26,12 +26,12 @@ updatesDatabase({ uri: '/_db_updates' }) -updatesDatabase({since: 1}, { +updatesDatabase({ since: 1 }, { headers: { accept: 'application/json', 'content-type': 'application/json' }, method: 'GET', - qs: {since: 1}, + qs: { since: 1 }, uri: '/_db_updates' }) diff --git a/tests/unit/design/view.js b/tests/unit/design/view.js index 4b2d382..907a080 100644 --- a/tests/unit/design/view.js +++ b/tests/unit/design/view.js @@ -34,7 +34,7 @@ viewDesign('alice', 'by_id', { }) viewDesign('alice', 'by_id', { - queries: [{keys: ['foobar', 'barfoo']}, {limit: 3, skip: 2}], + queries: [{ keys: ['foobar', 'barfoo'] }, { limit: 3, skip: 2 }], include_docs: true }, { body: '{"queries":[{"keys":["foobar","barfoo"]},{"limit":3,"skip":2}]}', diff --git a/tests/unit/document/bulk.js b/tests/unit/document/bulk.js index ae6f8e3..b90a102 100644 --- a/tests/unit/document/bulk.js +++ b/tests/unit/document/bulk.js @@ -19,8 +19,8 @@ const bulkDocument = require('../../helpers/unit').unit([ bulkDocument({ docs: [ - {key: 'baz', name: 'bazzel'}, - {key: 'bar', name: 'barry'} + { key: 'baz', name: 'bazzel' }, + { key: 'bar', name: 'barry' } ] }, { body: '{"docs":[{"key":"baz","name":"bazzel"},{"key":"bar","name":"barry"}]}', @@ -34,13 +34,13 @@ bulkDocument({ bulkDocument({ docs: [] -}, {wat: 'izlove'}, { +}, { wat: 'izlove' }, { body: '{"docs":[]}', headers: { accept: 'application/json', 'content-type': 'application/json' }, method: 'POST', - qs: {wat: 'izlove'}, + qs: { wat: 'izlove' }, uri: '/mock/_bulk_docs' }) diff --git a/tests/unit/document/copy.js b/tests/unit/document/copy.js index b23732f..bf252be 100644 --- a/tests/unit/document/copy.js +++ b/tests/unit/document/copy.js @@ -32,6 +32,6 @@ copyDocument('excel', 'numbers', { uri: '/mock/excel' }) -copyDocumentFail('excel', 'numbers', {overwrite: 'yes'}, { +copyDocumentFail('excel', 'numbers', { overwrite: 'yes' }, { }) diff --git a/tests/unit/multipart/get.js b/tests/unit/multipart/get.js index a23fad9..d43e99c 100644 --- a/tests/unit/multipart/get.js +++ b/tests/unit/multipart/get.js @@ -17,10 +17,10 @@ const getMultipart = require('../../helpers/unit').unit([ 'get' ]) -getMultipart('space', {extra: 'stuff'}, { +getMultipart('space', { extra: 'stuff' }, { encoding: null, - headers: {'accept': 'multipart/related'}, + headers: { 'accept': 'multipart/related' }, method: 'GET', - qs: {attachments: true, extra: 'stuff'}, + qs: { attachments: true, extra: 'stuff' }, uri: '/mock/space' }) diff --git a/tests/unit/multipart/insert.js b/tests/unit/multipart/insert.js index e7c3ed6..f019f10 100644 --- a/tests/unit/multipart/insert.js +++ b/tests/unit/multipart/insert.js @@ -17,11 +17,11 @@ const insertMultipart = require('../../helpers/unit').unit([ 'insert' ]) -insertMultipart({hey: 1}, [{ +insertMultipart({ hey: 1 }, [{ name: 'att', data: 'some', 'content_type': 'text/plain' -}], {extra: 'stuff'}, { +}], { extra: 'stuff' }, { headers: { 'content-type': 'multipart/related' }, @@ -34,8 +34,8 @@ insertMultipart({hey: 1}, [{ ',"hey":1}', 'content-type': 'application/json' }, - {body: 'some'} + { body: 'some' } ], - qs: {extra: 'stuff'}, + qs: { extra: 'stuff' }, uri: '/mock' }) diff --git a/tests/unit/shared/follow-updates.js b/tests/unit/shared/follow-updates.js index be10afa..86655a9 100644 --- a/tests/unit/shared/follow-updates.js +++ b/tests/unit/shared/follow-updates.js @@ -17,5 +17,5 @@ const followUpdates = require('../../helpers/unit').unit([ 'followUpdates' ]) -followUpdates({db: '/_db_updates'}) -followUpdates({since: 1}, {db: '/_db_updates', since: 1}) +followUpdates({ db: '/_db_updates' }) +followUpdates({ since: 1 }, { db: '/_db_updates', since: 1 }) diff --git a/tests/unit/shared/jar.js b/tests/unit/shared/jar.js index 29ff8fc..9072883 100644 --- a/tests/unit/shared/jar.js +++ b/tests/unit/shared/jar.js @@ -22,7 +22,7 @@ test('it should be able to set a jar box', function (assert) { assert.equal(cli.config.jar, 'is set') cli.relax({}, function (_, req) { assert.equal(req.jar, 'is set') - cli.relax({jar: 'changed'}, function (_, req) { + cli.relax({ jar: 'changed' }, function (_, req) { assert.equal(req.jar, 'changed') assert.end() })